header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header nav { 
  display: flex;
  align-items: center;
  padding: 0px 30px;
  background-color: #0000;
  justify-content: space-between;
  border-bottom: 1px solid #fff3;
}

header nav .nav-logo {
  height: 90px;
  width: 100px;
}

header .nav-logo a {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

header .nav-logo a img {
  max-width: 100%;
}

header .navbar-links {

}

header .navbar-links ul {
display: flex;
list-style: none;
margin: 0px;
gap: 5vw;
padding: 0px;
align-items: center;
}

header .navbar-links ul li {

}

header .navbar-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: .3s ease-out;
}

header .navbar-links ul li a:hover {
  text-decoration: none;
  color: var(--primary-web-color);
  transition: .3s ease-in;
}

header select.language {
    background: var(--primary-web-color);
    padding: 20px;
    outline: 0;
    border: 0px;
    position: fixed;
    right: 30px;
    transition: .3s ease-out;
}

header .navbar-links {
  margin-right: 164px;
}

header .mobile-toggle {
  display: none;
}

header.scrolled .mobile-toggle button {
  color: #000; /* Change button color when scrolled */
}
header .mobile-toggle button {
  background: transparent;
  color: #fff;
  outline: 0;
  border: 0px;
  font-size: 30px;
}

header select.language:hover {
    background: var(--primary-web-color);
    padding: 20px;
    transition: .3s ease-in;
}

/* Default Styles */
#main-header {
    background-color: rgb(39, 39, 39);
    transition: background-color 0.3s, box-shadow 0.3s;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#main-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-links a {
    color: white;
    transition: color 0.3s;
}

#main-header.scrolled .navbar-links a {
    color: black;
    transition: .3s ease-out;
}

#main-header.scrolled .navbar-links a:hover {
  color: var(--primary-web-color);
  transition: .3s ease-in;
}

.language {
    color: white !important;
    background-color: #007bff;
    padding: 5px 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#main-header.scrolled .language {
  color: #fff;
}

#logo-img {
    transition: filter 0.3s;
}

#main-header.scrolled #logo-img {
    filter: invert(1);
}


footer .news-letter-section {
    background-color: var(--primary-web-color);
    display: flex;
    justify-content: space-between;
    padding: 2.2rem 1rem;
    align-items: center;
}

footer .news-letter-section .content {
    font-family: Poppins-SemiBold;
    color: #fff;
    font-size: 2rem;
}

footer .news-letter-section .input-field {
    background: #fff;
    width: 40%;
    display: flex;
    justify-content: space-between;
}

footer .news-letter-section .input-field input {
    outline: 0;
    border: 0px;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
}

footer .news-letter-section .input-field button {
    outline: 0;
    border: 0px;
    background-color: #000;
    color: #fff;
    padding: 1rem 1.5rem;
    transition: .3s ease-out;
    font-size: 14px;
}

footer .news-letter-section .input-field button:hover {
    background-color: #2f434e;
    transition: .3s ease-in;
}

.footer-distributed {
    background: #000;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px Poppins-Regular_0;
    padding: 55px 50px;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
  }
  
  
  .footer-distributed .footer-left{
    width: 40%;
  }
  
  
  .footer-distributed h3{
    color:  #ffffff;
    font: normal 36px Poppins-Regular_0;
    margin: 0;
  }
  
  .footer-distributed h3 span{
    color:  lightseagreen;
  }

  .footer-distributed img {
    max-width: 100%;
  }
 
  .footer-distributed .logo {
     height: 100px;
     width: 130px;
     display: flex;
     align-items: center;
 }
  
  
  .footer-distributed .footer-links{
    color:  #ffffff;
    margin: 20px 0 12px;
    padding: 0;
  }
  
  .footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    font-weight:400;
    text-decoration: none;
    color:  inherit;
  }
  
  .footer-distributed .footer-company-name{
    color:  #222;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
  }
  

  .footer-distributed .footer-center{
    width: 35%;
  }
  
  .footer-distributed .footer-center i{
    background-color:  #33383b;
    color: #ffffff;
    font-size: 17px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-distributed .footer-contact {
    display: flex;
    align-items: center;
  }
  
  .footer-distributed .footer-center i.fa-envelope{
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    font-weight: 400;
    width: 20rem;
    vertical-align: middle;
    margin: 0;
}
  
  .footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
  }
  
  .footer-distributed .footer-center p a{
    color:  #fff;
    text-decoration: none;;
  }
  
  .footer-distributed .footer-links a:before {
    content: "|";
    font-weight:300;
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
  }
  
  .footer-distributed .footer-links .link-1:before {
    content: none;
  }
  
  
  .footer-distributed .footer-right{
    width: 20%;
  }
  
  .footer-distributed .footer-company-about{
    line-height: 20px;
    color:  #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer-distributed .footer-company-about span{
    display: block;
    color:  #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons{
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 2px;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
    transition: .3s ease-out;
}

.footer-distributed .footer-icons a:hover {
    color: var(--primary-web-color);
    transition: .3s ease-in;
}
  
  
  @media (max-width: 880px) {
  
    .footer-distributed{
      font: bold 14px sans-serif;
    }

    .footer-distributed .footer-enclosed {
        width: fit-content;
    }

    .footer-distributed .footer-center p {
        display: inline-block;
        color: #ffffff;
        font-weight: 400;
        text-align: start;
        vertical-align: middle;
        margin: 0;
    }

    .footer-distributed .footer-center {
        display: flex !important;
        justify-content: center;
    }
  
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
        display: flex;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
  
    .footer-distributed .footer-center i{
      margin-left: 0;
    }
  
  }
  
  .powered-by {
    display: flex;
    justify-content: center;
    background-color: #000;
    padding: 1rem;
}

.powered-by span {
    color: #fff;
}

.powered-by a {
    color: var(--primary-web-color);
    text-decoration: none;
}

@media screen and (max-width:1050px) {
  header .navbar-links ul {
    display: flex;
    list-style: none;
    margin: 0px;
    gap: 4vw;
    padding: 0px;
}
header .navbar-links {
  margin-right: 164px;
}



header .navbar-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  width: 12rem;
  vertical-align: middle;
  margin: 0;
}
}

@media screen and (max-width:992px) {

  header .navbar-links {
    margin-right: 0px;
  }

  header .navbar-links ul li a:hover {
    text-decoration: none;
    transition: .3s ease-in;
    background: var(--primary-web-color);
    color: #fff;
  }

#main-header.scrolled .language {
  color: #303030 !important;
}

  .navbar-links.active {
    display: block; /* Makes the menu visible */
    visibility: visible; /* Allows interaction */
    opacity: 1; /* Fully visible */
}

  header .mobile-toggle {
    display: flex;
  }

  header .navbar-links ul li a {
    text-decoration: none;
    color: #000;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    border-bottom: 2px solid lightgrey;
    padding: 1.5rem;
}

header .navbar-links ul li {
  position: relative;
  width: 100%;
}

header .navbar-links ul li a::before {
  content: "";
  border-bottom: 2px solid var(--primary-web-color);
  display: inline-block;
  width: 0%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  transition: .3s ease-out;
}

header .navbar-links ul li a:hover {
text-decoration: none;
color: white;
transition: .3s ease-in;
}

header select.language {
  background: transparent;
  padding: 10px;
  position: fixed;
  font-size: 12px;
  width: fit-content;
  right: 80px;
  top: 25px;
  transition: .3s ease-out;
}

header select.language:hover {
  background: transparent;
  padding: 10px;
  transition: .3s ease-in;
}

header select.language option {
  color: #000;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  width: 18rem;
  vertical-align: middle;
  margin: 0;
}

header.scrolled .mobile-toggle button {
color: #000; /* Change button color when scrolled */
}

header .mobile-toggle button {
background: transparent;
color: #fff;
outline: 0;
border: 0px;
font-size: 30px;
}

header .navbar-links select.language:hover {
  background: var(--primary-web-color);
  padding: 20px;
  transition: .3s ease-in;
}

/* Default Styles */
#main-header {
  background-color: rgb(39, 39, 39);
  transition: background-color 0.3s, box-shadow 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#main-header.scrolled {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-links a {
  color: white;
  transition: color 0.3s;
}

#main-header.scrolled .navbar-links a {
  color: black;
  transition: .3s ease-out;
}

#main-header.scrolled .navbar-links a:hover {
color: #fff;
transition: .3s ease-in;
}

.language {
  color: white !important;
  background-color: #007bff;
  padding: 5px 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

#main-header.scrolled .language {
  color: white; /* Retains the color */
}

#logo-img {
  transition: filter 0.3s;
}

#main-header.scrolled #logo-img {
  filter: invert(1);
}


footer .news-letter-section {
  background-color: var(--primary-web-color);
  display: flex;
  justify-content: space-between;
  padding: 2.2rem 1rem;
  align-items: center;
}

footer .news-letter-section .content {
  font-family: Poppins-SemiBold;
  color: #fff;
  font-size: 2rem;
}

footer .news-letter-section .input-field {
  background: #fff;
  width: 40%;
  display: flex;
  justify-content: space-between;
}

footer .news-letter-section .input-field input {
  outline: 0;
  border: 0px;
  width: 100%;
  padding: 1rem;
  background-color: transparent;
}

footer .news-letter-section .input-field button {
  outline: 0;
  border: 0px;
  background-color: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  transition: .3s ease-out;
  font-size: 14px;
}

footer .news-letter-section .input-field button:hover {
  background-color: #2f434e;
  transition: .3s ease-in;
}

.footer-distributed {
  background: #000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px Poppins-Regular_0;
  padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}


.footer-distributed .footer-left{
  width: 40%;
}


.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px Poppins-Regular_0;
  margin: 0;
}

.footer-distributed h3 span{
  color:  lightseagreen;
}

.footer-distributed img {
  max-width: 100%;
}

.footer-distributed .logo {
   height: 100px;
   width: 130px;
   display: flex;
   align-items: center;
}


.footer-distributed .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer-distributed .footer-company-name{
  color:  #222;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}


.footer-distributed .footer-center{
  width: 35%;
}

.footer-distributed .footer-center i{
  background-color:  #33383b;
  color: #ffffff;
  font-size: 17px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-distributed .footer-contact {
  display: flex;
  align-items: center;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  width: 20rem;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  #fff;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}


.footer-distributed .footer-right{
  width: 20%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 2px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
  transition: .3s ease-out;
}

.footer-distributed .footer-icons a:hover {
  color: var(--primary-web-color);
  transition: .3s ease-in;
}


@media (max-width: 880px) {

  .footer-distributed{
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-enclosed {
      width: fit-content;
  }

  .footer-distributed .footer-center p {
      display: inline-block;
      color: #ffffff;
      font-weight: 400;
      text-align: start;
      vertical-align: middle;
      margin: 0;
  }

  .footer-distributed .footer-center {
      display: flex !important;
      justify-content: center;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
      display: flex;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
      flex-direction: column;
      align-items: center;
  }

  .footer-distributed .footer-center i{
    margin-left: 0;
  }

}

.powered-by {
  display: flex;
  justify-content: center;
  background-color: #000;
  padding: 1rem;
}

.powered-by span {
  color: #fff;
}

.powered-by a {
  color: var(--primary-web-color);
  text-decoration: none;
}

@media screen and (max-width:1050px) {
header .navbar-links ul {
  display: flex;
  list-style: none;
  margin: 0px;
  gap: 4vw;
  padding: 0px;
}

header .navbar-links ul li a {
text-decoration: none;
color: #fff;
font-size: 14px;
}

.footer-distributed .footer-center p {
display: inline-block;
color: #ffffff;
font-weight: 400;
width: 12rem;
vertical-align: middle;
margin: 0;
}
}

@media screen and (max-width:992px) {

.navbar-links.active {
  display: block; /* Makes the menu visible */
  visibility: visible; /* Allows interaction */
  opacity: 1; /* Fully visible */
}

header .mobile-toggle {
  display: flex;
}

header .navbar-links ul li a {
  text-decoration: none;
  color: #000;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  border-bottom: 2px solid lightgrey;
  padding: 1.5rem;
}

header .navbar-links ul li {
position: relative;
width: 100%;
}

header .navbar-links ul li a::before {
content: "";
border-bottom: 2px solid var(--primary-web-color);
display: inline-block;
width: 0%;
bottom: 0;
left: 0;
right: 0;
position: absolute;
transition: .3s ease-out;
}

header .navbar-links ul li:hover a::before {
content: "";
border-bottom: 2px solid var(--primary-web-color);
display: inline-block;
width: 100%;
bottom: 0;
left: 0;
right: 0;
position: absolute;
transition: .3s ease-in;
}

#main-header nav {
position: relative;
}

header .navbar-links {
position: absolute;
background: #fff;
display: none; /* Initially hidden */
visibility: hidden; /* Prevents interaction when hidden */
opacity: 0; /* Smooth fade effect */
transition: visibility 0s, opacity 0.3s ease-out;
top: 90px;
left: 0;
right: 0;
}

header .navbar-links ul {
display: flex;
list-style: none;
margin: 0px;
gap: 0px;
justify-content: space-between;
flex-direction: column;
}

header .navbar-links select.language {
background: var(--primary-web-color);
padding: 20px;
width: 100%;
transition: .3s ease-out;
}

.footer-distributed .footer-center p {
display: inline-block;
color: #ffffff;
font-weight: 400;
width: 18rem;
vertical-align: middle;
margin: 0;
}

footer .news-letter-section {
background-color: var(--primary-web-color);
display: flex;
justify-content: space-between;
padding: 2.2rem 1rem;
align-items: center;
row-gap: 30px;
flex-direction: column;
}

footer .news-letter-section .input-field {
background: #fff;
width: 90%;
display: flex;
justify-content: space-between;
}

footer .news-letter-section .content {
font-family: Poppins-SemiBold;
color: #fff;
text-align: center;
font-size: 2rem;
}
#languageSwitcher option {
  border-radius: 0px !important;
  font-size: 13px;
}

}