@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
            --color1: #00a69c;
            --color2: #333;
    --color3: #f9f9f9;
     --alt-bg: #d7f8f1; /* subtle alternate wide background */
            --font1:"Open Sans", sans-serif;
            --font2:"Mulish", sans-serif;
            
        }
        html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
/* ::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 4px;
} */
   html {
    scroll-behavior: auto !important;
  }
body {
            font-family: var(--font2); 
            color: #333;
            font-size: 15px;
            
        }
        /* Page hidden initially */
body.preload {
  opacity: 0;
}

/* Page visible */
body.loaded {
  opacity: 1;
  transition: opacity 0.3s ease; /* smooth fade-in */
}
          @media(max-width:769px) {
            body{
    text-align: center;
  }
}

        a{text-decoration: none;}
        img { display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font2); 
  font-weight:600;
 
  margin: 0;
}
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 75%; max-width: 100%; }
@media (max-width: 1401px) {
   .container {
        width: 80%;
    }
}

/* For tablets */
@media (max-width: 1201px) {
    .container {
        width: 95%;
    }
}

/* For mobile */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}


.top-div1 {
  background-color: #000;
  color: #fff;
  font-size: 15px;
  padding: 15px 0;
  font-family: var(--font1);
}

.top-div1 a {
  color: #eaeaea;
  text-decoration: none;
}
.top-info{column-gap: 20px;}

.top-div1 a:hover {
  color: var(--color1);
}
.top-left1 { width: 100%; }
.scrolling-text { overflow: hidden; white-space: nowrap; width: 100%; }
.scroll-track { display: inline-flex; gap: 10px; will-change: transform; }
.scroll-track span {
  font-weight: 500;
  font-size: 15px;
  color: #eaeaea;
  /* border-right: 1px solid #fff; */
  padding-right: 10px;
}




.top-right1{column-gap: 20px;}

.top-right{display: flex; column-gap: 20px;}

.top-right .social-link img {
  width: 30px;
  height:30px;
  margin-left: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  
}

.top-right .social-link img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


/* --------------------------
   RESPONSIVE DESIGN
-------------------------- */

/* Tablet */
@media (max-width: 769px) {
  .top-div1 {
    font-size: 14px;
    padding: 10px 0;
  }
  .top-right .social-link img {
    width: 22px;
    height: 22px;
  }
}

/* Mobile */
@media (max-width: 769px) {
  .top-info {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    row-gap: 10px;
  }
  .top-right {
    justify-content: center;
    column-gap: 15px;
  }
  .top-left {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .top-div1 {
    padding: 8px 0;
  }
  .top-left {
    font-size: 13px;
  }
  .top-right .social-link img {
    width: 20px;
    height: 20px;
  }

}


.top-div2 {
  background-color: #fff;
  padding: 3px 0;
}

/* .top-div2 .logo {
  height: 50px;
} */

/* Menu links */
.navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  padding: 5px 25px !important;
  position: relative;
  transition: color 0.3s ease;
    font-family: var(--font1);
  font-size: clamp(15px, 1vw + 0.2rem, 15px);
   transition: width 0.3s ease;
   margin-left: 2px;
}

/* .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color1);
  transition: width 0.3s ease;

} */

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  background: var(--color1);
  color:#fff;
  border-radius: 5px;
}

/* .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  width: 100%;
} */

@media(max-width:769px)
{
 /* Center logo in mobile view */
  /* Center the logo block */
  .navbar {
    justify-content: center; /* centers items horizontally */
  }
  /* Center logo inside */
  .navbar-brand {
    display: flex;
    justify-content: center;
    flex: 1;
    margin-right: 0;
  }

/* Offcanvas */
.offcanvas {
  background-color: #000;
  color: #fff;
  height: 100vh;
  top: 0; /* start from top */
}

.offcanvas .nav-link {
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link:hover, .offcanvas .nav-link.active {
  color: #fff;
}


/* Toggle button */
.navbar-toggler {
  border: none;
  outline: none !important;
  position: fixed;
  right: 15px;
  top: 7px;
  z-index: 1050;
}

.navbar-toggler-icon {
  background-image: none;
  width: 25px;
  height: 2px;
  background-color: var(--color1);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--color1);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

/* Animation when active (X) */
.navbar-toggler.active .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.navbar-toggler {
  border: 1px solid #000; /* your theme color (replace with #000 or #fff if needed) */
  border-radius: 6px;              /* rounded edges */
  padding: 16px 8px;                /* space inside border */
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

/* When hovered */
.navbar-toggler:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #000; /* you can change this color on hover */
}

/* When active (menu open) */
.navbar-toggler.active {
  border-color: var(--color1); /* for example, make border red when it's X */
}
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active{border-radius: 0;}

}

/* REMOVE HIGHLIGHTED BOX FROM PARENT DROPDOWN */
.navbar .dropdown,
.navbar .dropdown.show,
.navbar .dropdown:focus,
.navbar .dropdown-toggle,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle.show {
   
    box-shadow: none !important;
    /* border: none !important; */
    outline: none !important;
}

/* DROPDOWN ITEM STYLE */
.dropdown-menu .dropdown-item {
    font-family: var(--font1);
    font-size: 15px;
    padding: 10px 18px;
    color: var(--color2);
    border-bottom: 1px solid #e6e6e6;  /* light divider */
    transition: all 0.25s ease;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}


/* HOVER */
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item.active {
    background: var(--alt-bg) !important; /* soft greenish background */
    color: var(--color1) !important;      /* brand color highlight */
}

/* ACTIVE / CURRENT PAGE */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: var(--color1); /* brand color */
    color: #fff;               /* white text */
}


/* DESKTOP DROPDOWN ON HOVER */
@media (min-width: 769px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-menu {
    border-radius: 0;
    padding: 10px 0;
  }

  .dropdown-item {
    font-size: 15px;
    padding: 10px 20px;
  }


/* DROPDOWN PARENT: hover + open state */
.navbar .dropdown:hover > .nav-link,
.navbar .dropdown.show > .nav-link,
.navbar .dropdown:hover > .dropdown-toggle,
.navbar .dropdown.show > .dropdown-toggle {
    background: var(--color1) !important;
    color: #fff !important;
}


}


@media(max-width:769px){
.navbar{text-align: left;}
  .offcanvas .dropdown-toggle:hover,
  .offcanvas .dropdown.show > .dropdown-toggle,
  .offcanvas .dropdown-toggle:focus {
    background: var(--color1) !important;
    color: #fff !important;
  }

  .offcanvas .dropdown-menu {
    background: #000;
    border: none;
  }

  .offcanvas .dropdown-item {
    color:#fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    font-size: 12px;
  }

  .offcanvas .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }
}


/* When scrolled: becomes fixed + small logo */
.top-div2.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
}

.top-div2.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff; /* or your navbar color */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  width: 100%;
  z-index: 2001;
  animation: navbarSlideDown 0.5s ease forwards;
}
.top-div2.fixed .logo{width: 50%;}
/* Keyframes for smooth slide and fade-in */
@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  max-width: 600px;
}

.carousel-caption h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  border-bottom: 20px solid #fff;
  display: inline-block;
  padding-bottom: 8px;
  text-transform: uppercase;
  animation: slideDown 1s ease forwards;
  opacity: 0;
}
.carousel-item.active .carousel-caption h2 {
  opacity: 1;
}
@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Arrow buttons (individually positioned) */
.custom-arrow {
  position: absolute;
  bottom: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  z-index: 10;
}

.custom-arrow.prev {
  right: 80px; /* prev arrow */
}

.custom-arrow.next {
  right: 20px; /* next arrow */
}

.custom-arrow img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;

}

/* Hover effect */
.custom-arrow:hover img {
  transform: scale(1.1);
  opacity: 0.8;

}
.carousel-wrapper {
  position: relative;
}


/* place arrows inside container width */
.custom-arrow {
  display: none;
  position: absolute;
  bottom: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  z-index: 10;
}

/* Arrow positions relative to container */
/* .custom-arrow.prev {
  right: 75px;
}

.custom-arrow.next {
  right: 15px;
} */

.custom-arrow img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.custom-arrow:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}



/* -------------------------- */
/* RESPONSIVE DESIGN */
/* -------------------------- */

/* Tablet */
@media (max-width: 992px) {
  .carousel-caption h2 {
    font-size: 2.5rem;
    max-width: 500px;
  }
  .custom-arrow img {
    width: 40px;
    height: 40px;
  }
  .custom-arrow.prev {
    right: 70px;
  }
  .custom-arrow.next {
    right: 20px;
  }
}


.wel-title{text-transform: uppercase; font-size: clamp(25px, 2.5vw + 0.5rem, 50px); font-weight: 900; color:#2a2a2a;}
.wel-line{color:#000; margin-bottom: 20px; font-weight: 700; font-size: clamp(16px, 1.1vw + 0.2rem, 22px);}

.read-more a {
  display: inline-flex;
  align-items: center;
  color: #1e1e1e;          /* normal text color */
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.4px;
  background: none !important;
  padding: 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Font Awesome icon */
.read-more a::after {
  content: "\f103";       /* fa-arrow-right-long */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 14px;
  background: none !important;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: rotate(-90deg);
}

/* Hover – still NO background */
.read-more a:hover {
  color: var(--color1);
  background: none !important;
}

.read-more a:hover::after {
  transform: translateX(6px) rotate(-90deg);
  color: var(--color1);
}

/* .read-more:hover {
  border-color: var(--color1);
  box-shadow: 0 0 10px rgba(0, 166, 156, 0.6);
  transform: translateY(-2px);
} */
.read-more:hover a{background: var(--color1);}

.wel-div1{padding-top: 15px;}
.wel-content1{display: flex; }
.wel-img1 img{width: 100%;}
.wel-exp1{width: 49%;}
.wel-img1{width: 51%;}

.wel-exp1{ display: flex; flex-direction: column; justify-content: flex-start; font-size: clamp(15px, 1.1vw, 17px);  line-height: 1.6; padding-left: 60px;}
.wel-exp1 .read {
  margin-top: auto;
}
.wel-div2{padding-top: 25px;}
.wel-div2 .wel-exp1{padding-left: 0; padding-right: 60px;}

.wel-div3 {
  background: none; /* no background image or color */
  color: #000; /* you can change to #fff if used on dark section */
  padding-top: 40px;
  
  text-align: center;
}




.wel-div3 .wel-line {
  font-style: italic;
  font-size: 20px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 60px;
}

.wel-div3-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.wel-card {

  background: transparent;
flex: 1 1 30%;
  max-width: 33%;
  padding: 30px 90px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  background: #e6f1f6;
 
}


/* .wel-card:hover {
  border-color: var(--color1);
  transform: translateY(-8px);
  background: rgba(0, 166, 156, 0.05);
} */
 
.wel-card img{margin-left: auto; margin-right: auto; margin-bottom: 10px;}
.wel-card h3 {
  font-size: clamp(19px, 1.8vw + 0.3rem, 22px);
  color:#000000;
   margin-bottom: 20px;
  position: relative;
  font-weight:900;
  min-height: 50px;
}

.wel-card p {
  font-size: 17px;
  line-height: 1.7;
}




.wel-div4{text-align: center; padding-top: 20px;}
.wel-div4 .wel-title{font-size: 29px;}

.wel-power1{display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 0px; gap: 15px;}
.wel-power1 img{transition: transform 0.5s ease; width: 150px;}
.wel-power1 img:last-child{width: 100px;}
.wel-power1 img:hover {
  transform: translateY(-10px) scale(1.05);
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  background: #000;
}

.video-container video {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: 56px;
  border-radius: 20px;
  border: none;
  background: rgba(0,0,0,1);
  color: #fff;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.3s ease, transform 0.2s ease;
}

.play-btn:hover {
  background: var(--color1);
  transform: scale(1.05);
}

.play-btn i {
  font-size: 25px;
  line-height: 1;
}



.progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--color1);
  transition: width 0.1s linear;
  position: relative;
}

.progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.progress-handle:hover {
  background: #000;
}

.footer-div1{background: #1e1e1e; padding-top: 40px; padding-bottom: 60px; color:#e6e6e6;}
.footer-div1 a{color:#bbb}
.footer-div1 a:hover{color:var(--color1)}
.footer-div1 h5{font-weight: 700; font-size: 30px; margin-bottom: 10px; margin-top: 20px; text-align: left; color:#e3e3e3;}
.f-link{font-size: 15px;}
.f-link li {
  list-style: none;
  margin: 13px 0;
  position: relative;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.f-link li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color1);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.f-link li a {
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.f-link li:hover::before {
  transform: scaleY(1);
}

.f-link li:hover a {
  color: var(--color1);
}

@media (max-width: 768px) {
  .f-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 15px; /* spacing between items */
    padding: 0;
    margin: 0;
  }

  .f-link li {
    margin: 0;
    padding-left: 0;
    position: relative;
  }

  /* Remove the vertical hover bar */
  .f-link li::before {
    display: none;
  }

  /* Horizontal hover effect (optional underline) */
  .f-link li a {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
  }

  .f-link li:hover a {
    border-bottom: 2px solid var(--color1);
    color: var(--color1);
  }
}



.f-link1{font-size: 14px; display: flex;}
.f-link1 li {
  list-style: none;
  margin: 8px 0;
  position: relative;
  padding-left: 15px;
  transition: all 0.3s ease;
  padding:0 15px;
}

.f-link1 li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e6e6e6;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.f-link1 li a {
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.f-link1 li:hover::before {
  transform: scaleY(1);
   background: var(--color1);
}

.f-link1 li:hover a {
  color: var(--color1);
}

.f-link1 li:first-child{padding-left: 0;}
.f-link1 li:last-child{padding-right: 0;}
.f-link1 li:last-child::before{content: none;}


.contact-form {
  /* max-width: 400px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 12px;
  border: 1px solid #ccc;
  /* border-radius: 6px; */
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  background: #eaeaea;
}
.contact-form textarea {height: 170px;}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color1);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px; 
}

.contact-form button {
  flex: 1;
  background-color: var(--color1);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 15px;
  /* border-radius: 6px; */
  cursor: pointer;
  transition: background-color 0.3s;
width: 30%;
text-transform: uppercase;

}

.contact-form button:hover {
  background-color: #000000cc; /* optional darker hover tone */
}

/* Responsive Footer */
@media (max-width:768px) {
  .footer-div1 {
    padding-top: 30px;
    padding-bottom: 40px;
    text-align: center;
  }

.footer-mid .footer-content{margin-top: 20px;}

  .footer-div1 h5 {
    font-size: 22px;
    margin-top: 0px;
  }

  .footer-content p,
  .footer-content a {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Center footer columns */
  .footer-content {
    text-align: center;
  }

  

  /* Contact Form full width on mobile */
  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  
}

/* Extra small devices (phones ≤576px) */
@media (max-width: 576px) {
  .footer-div1 h5 {
    font-size: 20px;
  }

 

  /* .form-buttons {
    flex-direction: column;
  } */

  /* .contact-form button {
    width: 100%;
  } */
}



.copy-div{padding: 20px 0; color:#000}
.copy-div a{color:#000}
.copy-div a:hover{color:var(--color1)}


/*Animation */
/* Fade & slide-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease-out;
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}







/*about Page */
.hero-banner{position: relative;}

.banner-content {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
}

.banner-content h2 {
    display: inline-block;         /* Prevent full-width background */
    color:#3b3b3b;
          font-size: 50px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}



.about-div1{padding-top: 15px;}

.about-div1 .wel-exp1 {
  padding-left: 0;
  padding-right: 60px;
}

.about-div1 .wel-content1{align-items: center;}

.about-div1 .wel-img1 img{border-radius: 20px;}


/* ABOUT DIV2 SECTION */
.about-div2 {

    padding-top: 30px;

}

/* FLEX WRAPPER */
.about-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap:10px;
}

/* LEFT + RIGHT BOX */
.about-box {
    flex: 1;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #e6f1f6;
    border-radius: 20px;
}

/* ICON */
.about-icon {
    margin: 0 auto 20px;
}

/* HEADINGS */
.about-box h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
}

/* TEXT */
.about-box p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}


.about-div3 {
    padding: 30px 0;
    padding-bottom: 0;
    background: #fff;
}

.values-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    color:#1e1e1e;
}

.v-card {
    background: #f0f0f0;
    /* border-radius: 12px; */
    padding: 30px 50px;
    text-align: center;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
    transition: 0.3s ease;
}

/*.v-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.12); */
/*}*/

.v-icon{width: auto; margin-left: auto; margin-right: auto; margin-bottom: 5px;}

.v-card h3 {
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.v-card p {
    font-size: 17px;
    line-height: 1.4;
    color: #000000;
}

.values-card {
    margin-bottom: 30px; padding-left: 0px; padding-right: 0px;
}

/* Make the row a flex container */
.about-div3 .row {
    display: flex;
    flex-wrap: wrap;      /* so it wraps on smaller screens */
    gap: 5px;            /* optional spacing between cards */
}

/* Make each card stretch to the same height */
.values-card {
    display: flex;        /* flex container for inner card */
    flex: 1 1 calc(33.333% - 10px); /* 3 cards per row minus gap */
}


.about-div4 {
    padding: 0px 0;
    padding-bottom: 3px;
  
   
}

.team-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color:#1e1e1e;
    text-transform: uppercase;
}

.team-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

/* REMOVE ALL GAPS */
/* .team-row {
    margin: 0 !important;
} */
.team-row {margin-left: 0px;}
.team-row > [class*="col-"] {
    padding: 0px !important;
}

/* IMAGE CARD */
.team-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .5s ease;    
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* TEXT OVERLAY */
.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* padding: 15px 10px; */
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    text-align: center;
    transition: all .5s ease;    
}

.team-info h3 {
    background: rgba(0, 166, 156, 0.4);
    color: #fff;
    padding: 15px 10px;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    
    /* For smooth appearance */
    opacity: 0;               /* initially hidden */
    transform: translateY(10px); /* slightly move down */
    transition: opacity 0.4s ease, transform 0.4s ease; /* smooth transition */
}

.team-card:hover .team-info h3 {
    opacity: 1;               /* fade in */
    transform: translateY(0); /* move to original position */
}

.in-power{padding-top: 30px; padding-bottom: 30px;}

/*Technology page */
.technology-banner .banner-content{top: auto; bottom: 8%;}
.technology-banner .banner-content h2{color:#fff}


.technology-div1{padding-top: 15px; color:#262626}

.technology-div1 .wel-exp1 {
  padding-left: 0;
  padding-right: 60px;
}
.technology-div1 .wel-exp1{display: flex; flex-direction: column; justify-content: space-between;}
.technology-div1 .wel-exp1 h1{margin-top: 30px;}
 .technology-div1 .wel-exp1 h2{margin: 0; font-size: 27px; font-weight: 900; color:#2a2a2a; margin-bottom: 5px; margin-top: 30px;}

 .technology-div1 h3{margin: 0; font-size: 22px; font-weight: 900; color:#101010; margin-bottom: 5px; margin-top: 10px;}
 .tech-ex{display: none;}
 .technology-content1{display: flex; gap: 5px; margin-top: 10px;}
 .tech-box{background: #ececec; padding: 60px 30px; text-align: center; color:#101010; flex: 1; display: flex; flex-direction: column; justify-content: start; font-size: clamp(14px, 1.5vw, 17px);}
 .technology-div1  h4{margin: 0; font-size: 18px; font-weight: 700; color:#101010; margin-bottom: 10px; margin-top: 10px;}
 .tec-high1 {
  text-align: center;
  background: #1c1c1c;
  color: #fff;
  font-size: clamp(14px, 1.5vw, 17px);
  margin-top: 5px;
 padding: 10px 5%;
  font-weight: 600;
  padding-bottom: 5px;
  
}
 .tec-high1 p,  .tec-high2 p{padding: 0;  display: flex;
  flex-direction: column;
  justify-content: center; align-items: center;}

 .tec-high2 {
  text-align: center;
  background: var(--color1);
  color: #fff;
  font-size: clamp(14px, 1.5vw, 17px);
  margin-top: 0px;
  padding: 10px 15%;

  font-weight: 600;
  min-height: 80px;
   padding-bottom: 5px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
  
 
  
}

.tech-box1{background: #ececec; padding: 30px 30px; color:#101010; font-size: clamp(14px, 1.5vw, 17px); margin-top: 10px; margin-right: -50px;}
.tech-box1 ul{list-style-type: disc;}

.tec-list ul{list-style-type: disc; margin-left: 30px;} 

/*Single Lenses Page */
.single-banner .banner-content{margin-left: 7%;}
.single-banner .banner-content h2{color:#fff}

.page-title1{padding-top: 60px;}
.page-title1 .wel-title{color:#181818}
.page-title1 .wel-line{font-size: clamp(22px, 4vw, 32px); color:#1e1e1e; font-weight: 600;}


.sin-div .sin-exp:nth-child(1) .sin-div1{background: url(../images/augenklar-single-vision-aktivklar.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#fff;}
.sin-div .sin-exp:nth-child(1) .sin-div1 .sin-content{width: 28%; margin-left: auto; margin-right: 20%;color:#fff}


/* Black center → fades outward */
.sin-div .sin-exp:nth-child(1) .sin-div1 .sin-content::before {
    content: "";
    position: absolute;
    inset: -45px; /* size of spread */
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.85) 0%,   /* BLACK center */
        rgba(0, 0, 0, 0.55) 40%,  /* dark fade */
        rgba(0, 0, 0, 0.00) 100%  /* full transparent edge */
    );
    filter: blur(40px);          /* smooth spread */
    border-radius: 50%;
    z-index: -1;
    background: #000;
}



.sin-div .sin-exp:nth-child(2) .sin-div1{background: url(../images/augenklar-single-vision-driveklar.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#fff;}
.sin-div .sin-exp:nth-child(2) .sin-div1 .sin-content{width: 28%; margin-right: auto; margin-left: 18%;color:#fff}


/* Black center → fades outward */
.sin-div .sin-exp:nth-child(2) .sin-div1 .sin-content::before {
    content: "";
    position: absolute;
    inset: -45px; /* size of spread */
    background: radial-gradient(
        circle,
        rgba(22, 64, 102, 0.85) 0%,   /* BLACK center */
        rgba(22, 64, 102, 0.55) 40%,  /* dark fade */
        rgba(22, 64, 102, 0.00) 100%  /* full transparent edge */
    );
    filter: blur(40px);          /* smooth spread */
    border-radius: 50%;
    z-index: -1;
    background: #164066;
}


.sin-div .sin-exp:nth-child(3) .sin-div1{background: url(../images/augenklar-single-vision-omniklar-sv.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#fff;}
.sin-div .sin-exp:nth-child(3) .sin-div1 .sin-content{width: 28%; margin-left: auto; margin-right: 20%;color:#fff}








  /* .sin-div .sin-div1:nth-child(1) .sin-content h2,
.sin-div .sin-div1:nth-child(1) .sin-content p {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.6);
} */




.sin-div .sin-exp:nth-child(4) .sin-div1{background: url(../images/augenklar-single-vision-relaxoklar.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#fff;}
.sin-div .sin-exp:nth-child(4) .sin-div1 .sin-content{width: 28%; margin-right: auto; margin-left: 10%;color:#fff}
  

/* Black center → fades outward */
.sin-div .sin-exp:nth-child(4) .sin-div1 .sin-content::before {
    content: "";
    position: absolute;
    inset: -45px; /* size of spread */
    background: radial-gradient(
        circle,
        rgba(144, 141, 112, 0.85) 0%,   /* BLACK center */
        rgba(144, 141, 112, 0.55) 40%,  /* dark fade */
        rgba(144, 141, 112, 0.00) 100%  /* full transparent edge */
    );
    filter: blur(40px);          /* smooth spread */
    border-radius: 50%;
    z-index: -1;
    background: #908d70;
}


.sin-div .sin-exp:nth-child(5) .sin-div1{background: url(../images/augenklar-single-vision-driveklar-sv.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#181818;}
.sin-div .sin-exp:nth-child(5) .sin-div1 .sin-content{width: 22%; margin-right: auto; margin-left: 28%;color:#181818; text-align: right;}


.sin-div .sin-exp:nth-child(6) .sin-div1{background: url(../images/augenklar-single-vision-myoklar.jpg) no-repeat; width: 100%;
  height: 375px; display: flex;
  align-items: center; color:#181818;}
.sin-div .sin-exp:nth-child(6) .sin-div1 .sin-content{width: 28%; margin-left: auto; margin-right: 17%;color:#181818}
/* Black center → fades outward */
.sin-div .sin-exp:nth-child(6) .sin-div1 .sin-content::before {
    content: "";
    position: absolute;
    inset: -45px; /* size of spread */
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.85) 0%,   /* BLACK center */
        rgba(255, 255, 255, 0.55) 40%,  /* dark fade */
        rgba(255, 255, 255, 0.00) 100%  /* full transparent edge */
    );
    filter: blur(40px);          /* smooth spread */
    border-radius: 50%;
    z-index: -1;
    background: #fff;
}



  .sin-content{ position: relative; z-index: 1; }
.sin-content h2{font-size: 28px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px;}
.sin-content p{font-size: 17px;}

.sin-div2{display: flex; column-gap: 10px; margin-top: 10px; margin-bottom: 10px;}
.sin-bi{background: #f1f1f1; color:#000; flex: 1; padding: 40px;}
.sin-bi h3{font-size: 20px; text-transform: uppercase;}

.sin-bi  ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.sin-bi  ul li {
    margin: 4px 0;
    position: relative;
    padding-left: 18px;
    font-size: 16px;
}

/* Dash like your screenshot */
.sin-bi  ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 20px;
}


/* ---------------------------------------
   GLOBAL RESPONSIVE FIXES
---------------------------------------- */
.sin-div1 {
    background-size: cover !important;
    background-position: center !important;
}

/* Content width becomes flexible */
.sin-content {
    width: 40%;
}


/*Progressive Lenses page*/
.prog-row{margin-bottom: 5px;}



.prog-div1 h2{font-size: 28px; font-weight: 900; margin-bottom: 10px; color:#000000;}
.prog-div1 p{font-size: 17px;}

.prog-div1  ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.prog-div1  ul li {
    margin: 4px 0;
    position: relative;
    padding-left: 18px;
    font-size: 17px;
}

/* Dash like your screenshot */
.prog-div1  ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 10%;

    font-size: 20px;
    line-height: 20px;
}

.prog-flex{display: flex; column-gap: 5px; margin-top: 25px;}
.prog-div2{flex: 1;  }
.prog-div2 img{width: 100%;}
.prog-cont2{padding: 20px; text-align: center;}
.prog-div2 h3{font-size: 22px; font-weight: 900; margin-bottom: 5px; color:#000}
.prog-div2 p{font-size: 17px;}


/*Single Lenses Page */
.products-banner .banner-content{right: 0; margin-right: 5%;}
.products-banner .banner-content h2{color:#fff}

.products-section-alt {
    padding: 40px 0;
    padding-bottom: 30px;
    /* background: #f9f9f9; */
}

.products-section-alt .products-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.products-section-alt .products-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

/* Product Card */
.product-card-alt {
  display: flex;

    column-gap:15px;
    flex-wrap: wrap;
}

.p-card-alt {
    /* border-radius: 50px; */
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* cursor: pointer; */
 
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
    text-align: center;
    width: 49%;
}

.p-card-alt img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
}

.p-card-alt .p-content {
    padding: 30px;
    flex: 1;
}

.p-card-alt .p-content h3 {
    font-size: 27px;
    font-weight: 900;
    color: #181818;
    margin-bottom: 12px;
    text-transform: uppercase;
   
}
.p-card-alt .p-content .subcap {
    font-size: 23px;
    color: #1e1e1e;
    margin-top: -5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.p-card-alt .p-content p {
    font-size: 17px;
    line-height: 1.4;
    color: #000;
}
.p-card-alt .read-more{margin-top: 5px;}
.p-card-alt .read-more a {
  color: #fff;
  text-decoration: none;


  border: 2px solid transparent;
  transition: all 0.4s ease;
  background: var(--color1) !important;
  padding: 5px 40px;
  text-transform: uppercase;
}
.p-card-alt .read-more:hover a{background: #1e1e1e !important;}
.p-card-alt .read-more a::after{content: none;}
.rm-arrow {
    position: relative;
    color: #00a69c;
    font-weight: 600;
    padding-right: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.rm-arrow::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.3s;
}

.p-card-alt:hover .rm-arrow {
    padding-right: 28px;
    color: #007a73;
}

.p-card-alt:hover .rm-arrow::after {
    right: -6px;
}

.p-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.products-icon{margin-bottom: 3px;}


.quality-banner .banner-content h2{color:#fff}



.quality-div1 {padding-top: 60px;}
.quality-div .quality-div1:nth-child(even) .wel-content1{flex-direction: row-reverse;}
.quality-div1 .wel-title{text-transform: capitalize; color:#181818; margin-bottom: 20px;}
.quality-div1 .wel-line{text-transform: uppercase; color:#181818; font-size: clamp(22px, 4vw, 28px); font-weight: 900; margin-bottom: 10px;}
.quality-div1 .wel-exp1{justify-content: space-between;}
.quality-div1  .wel-img1{width: 50%;}
.quality-div1 .wel-exp1{width: 50%;}
.quality-div .quality-div1:nth-child(odd) .wel-exp1{ padding-left: 0; padding-right: 60px;}




.quality-div1 .wel-exp1 h2 {
  margin: 0;
    
  font-size: 25px;
  font-weight: 600;
  color: #181818;
  margin-bottom: 15px;
  margin-top: 10px;
}

.quality-list ul {
  list-style-type: disc; margin-left: 20px;  margin-bottom: 10px;
}


/*contact page */
.page-title2{padding-top: 60px;}
.page-title2 .wel-line{text-transform: uppercase; color:#181818; font-weight: 900;}

.page-content2{width: 50%; font-size: 18px;}

.contact-div1 h1{margin: 0; text-transform: uppercase; text-align: center; color:#000; font-weight: 900; font-size: 28px; margin-top: 20px; }


.contact-header{
  background:#2f2f2f;
  color:#fff;
  padding:28px 0;
  text-align:center;
  font-size:30px;
  font-weight:900;
  letter-spacing:.5px;
  position:relative;
  cursor:pointer;
  transition:all .35s ease;
  margin-top: 10px;
}

.contact-header::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:10px;
  width:0;
  height:2px;
  background:var(--color1);
  transform:translateX(-50%);
  transition:all .35s ease;
}

.contact-header:hover{
  letter-spacing:2px;
  text-shadow:0 0 12px rgba(13,110,253,.35);
}

.contact-header:hover::after{
  width:140px;
}

/* Form */
.contact-wrapper{
  background:#eaf4ff;
  padding:45px;
}

.form-control,
.form-select{
  height:46px;
  border-radius:2px;
}

textarea.form-control{
  height:190px;
}

label{
  font-weight:500;
  margin-bottom:6px;
}

.submit-btn{
  background:var(--color1);
  border:none;
  padding:12px 42px;
  font-weight:900;
}
.submit-btn:hover{background: var(--color2);}

.privacy{
  font-size:14px;
}
.privacy a{color:#333; text-decoration: underline;}
.privacy a:hover{color:var(--color1)}
.contact-wrapper h6{margin-top: 40px;}

.contact-map-section {
      padding: 30px 0px;
      text-align: center;
    }

    .contact-map-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #0a4d8c; /* ZEISS-style blue */
    }

    .map-container {
    
      height: 500px;
      margin: 0 auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }


    .page-ex{padding-top: 80px; padding-bottom: 80px;}
    .page-ex p{font-size: 30px;}
@media(max-width:1410px)
{
  .tech-box{padding: 20px 20px;}

}

@media(max-width:1281px)
{
  .f-link1 li{padding: 0 10px;}
  .navbar-nav .nav-link{padding: 5px 17px !important;}
  .banner-content h2{font-size: 40px;}
  .sin-div .sin-exp:nth-child(5) .sin-div1 .sin-content {width: 30%; margin-left: 14%;}
  
}

@media(max-width:1111px)
{
.navbar-nav .nav-link{padding: 10px 15px !important;}
.navbar-brand img{width: 100%;}
.top-div2.fixed .logo {
  width: 60%;
}
.page-content2{width: 100%;}
}

@media(max-width:1025px)
{
  .wel-div1 .wel-exp1{padding-left: 20px;}
    .wel-div2 .wel-exp1, .about-div1 .wel-exp1 {

  padding-right: 20px;
}
}
@media(max-width:992px)
{
.footer-div1 h5{font-size: 22px;}
.wel-power1 img{width: 110px;}
.wel-power1 img:last-child {
  width: 60px;
}
.wel-exp1{padding-left: 20px;}
.wel-div2 .wel-exp1{padding-right: 20px;}
.wel-card{padding: 20px;}
}

@media(max-width:981px)
{
.navbar-nav .nav-link {
    padding: 10px 10px !important;
    font-size: 13px;
  }
  .tec-high2{padding: 10px 5%;}
      /* Reduce height for mobile */
    .sin-div1 {
        height: 260px !important;
        padding: 30px 20px;
        display: flex;
        align-items: center;
    }

    /* Make text full width */
    .sin-content {
        width:40% !important;
        text-align: left;
        margin: 20px auto;
        display: inline-block;
    }
  .prog-div1  h2 {
    font-size: 28px;
  }
   .prog-div1 p,
  .prog-div1 ul li {
    font-size: 18px;
  }
}

@media(max-width:769px)
{
  .navbar-brand img{width: auto;}
  .top-div2.fixed .logo {
  width: 25%;
}
  .wel-content1{text-align: center;}
  .wel-img1 {
  width: 100%;
}
.wel-exp1 {
  width: 100%;
  margin-bottom: 20px;
}
.wel-div1 .wel-content1{flex-direction: column-reverse;}
.wel-div2 .wel-content1, .about-div1 .wel-content1, .technology-div1 .wel-content1{flex-direction: column;}

.wel-card{flex: 1 1 100%;
    max-width: 100%;}
     .f-link1 li {
    padding: 0 5px;
     }
     .wel-power1{justify-content: center;}
     .wel-card h3{min-height: auto; margin-bottom: 10px;}
     .footer-div1 h5{text-align: center;}
     .f-link1{justify-content: center;}
     .copy-div{font-size: 13px;}
     .about-flex{flex-direction: column;}
     .about-div3 .row{flex-direction: column;}
     .values-card {
  margin-bottom: 0px;}
  .banner-content h2{font-size: 30px;}
 
  .technology-content1{flex-direction: column;}
   .tech-box1{margin-right: 0;}
  .tech-box1 ul {
  width: fit-content;   /* or fixed width */
  margin: 0 auto;
  text-align: left;
}
.technology-div1 h3{margin-top: 0;}
.technology-div1 .wel-exp1{margin-bottom: 0;}
 .tech-ex1{display: none;}
  .tech-ex{display: block; margin-top: 20px;}
    .technology-div1 h3.tech-ex{margin-top: 10px;}
    .tec-list ul{ width: fit-content;   /* or fixed width */
  margin: 0 auto;
  text-align: left; margin-bottom: 20px;}
    .tec-high1{padding: 10px 2%;}
    .tec-high2{padding: 10px 2%;}
    .technology-div1 .wel-exp1{padding-right: 0;}


       


    .sin-content h2 {
        font-size: 26px;
    }

    .sin-content p {
        font-size: 16px;
    }

    /* BENEFITS boxes stack */
    .sin-div2 {
        flex-direction: column;
        row-gap: 12px;
    }

    .sin-bi {
        padding: 25px;
    }

    .sin-bi h3 {
        font-size: 20px;
        text-align: center;
    }

    .sin-bi ul li {
        font-size: 16px;
        padding-left: 16px;
    }

    /* glow background size balanced */
    .sin-content::before {
        inset: -20px !important;
        filter: blur(25px) !important;
    }
    .sin-bi ul {
        text-align: left;
        margin: 20px auto;
        display: inline-block;
    }
     .prog-flex {
    flex-direction: column;
    row-gap: 10px;
  }
     .prog-div2 {
    width: 100%;
  }

  .prog-left1 h2 {
    font-size: 24px;
  }

  .prog-div1 p,
  .prog-div1 ul li {
    font-size: 17px;
  }
   .prog-div1 ul {
        text-align: left;
        margin:0 auto;
        display: inline-block;
    }

  .prog-div2 h3 {
    font-size: 22px;
  }

  .prog-div2 p {
    font-size: 17px;
  
  }
.top-left1 { width: 80%; }
    .product-card-alt{display: block;}
 .p-card-alt{width: 100%;}
 .p-card-alt .p-content h3 {
  font-size: 25px;}
  .p-card-alt .p-content .subcap {
  font-size: 19px;}
  .p-card-alt .p-content {
  padding: 20px;}
  .quality-div1 .wel-content1{flex-direction: column;}
   .quality-div .quality-div1:nth-child(even) .wel-content1{flex-direction: column;}
  .quality-div1 .wel-exp1,  .quality-div1 .wel-img1 {
  width: 100%;
}
 .quality-list ul {
        text-align: left;
        margin:0 auto;
        margin-bottom: 20px;
        display: inline-block;
    }
    .team-heading{margin-top: 40px;}

}

@media(max-width:601px)
{
 .banner-content h2{font-size: 20px;}

   /* .sin-div1 {
        height: 150px !important;
    }
 .sin-content {
    width: 80% !important;
  } */

  .sin-div1 {
        height: 180px !important;
    }
.sin-content {
    width: 50% !important;
  }
.sin-div .sin-exp:nth-child(5) .sin-div1 .sin-content::before {
    content: "";
    position: absolute;
    inset: -45px; /* size of spread */
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.85) 0%,   /* BLACK center */
        rgba(255, 255, 255, 0.55) 40%,  /* dark fade */
        rgba(255, 255, 255, 0.00) 100%  /* full transparent edge */
    );
    filter: blur(40px);          /* smooth spread */
    border-radius: 50%;
    z-index: -1;
    background: #fff;
}
.sin-div .sin-exp:nth-child(6) .sin-div1 .sin-content{margin-right: -3%;}
  .sin-div .sin-exp:nth-child(5) .sin-div1 .sin-content {
    margin-left: -5%;
  }



    .sin-content h2 {
        font-size: 22px;
    }

    .sin-content p {
        font-size: 15px;
    }

    .sin-bi ul li {
        font-size: 15px;
    }
      .sin-content {
        width:60% !important;}
        .sin-div .sin-exp:nth-child(1) .sin-div1 .sin-content, .sin-div .sin-exp:nth-child(3) .sin-div1 .sin-content{margin-right: 0;}
.sin-div .sin-exp:nth-child(2) .sin-div1 .sin-content, .sin-div .sin-exp:nth-child(4) .sin-div1 .sin-content{margin-left: 0;}

         .sin-div .sin-exp:nth-child(5) .sin-div1 .sin-content {
  
    margin-left: -3%;
  }
  .sin-content::before {
    inset: -0px !important;}
    

}



.translate-fixed{
  position: fixed;
  bottom: 15px;
  left: 20px;
  z-index: 9999;
}

#google_translate_element{
  white-space: nowrap;
}

#google_translate_element select{
  padding:5px 8px;
  border-radius:4px;
  border:1px solid #ccc;
  font-size:14px;
}


.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {

    display: flex;
}
.goog-te-gadget-simple{display: inline-flex !important;}

