/*--------- COLORS /*---------*/

/*-------UNIVERSAL------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* margin-left: 30px;
    margin-right: 30px; */


}

/*-------GLOBAL-------*/

body {
    font-family: 'poppins', sans-serif;
    width: 100%;
    /* background-color: rgb(241, 241, 241); */
    background-color: #ffffff;
    overflow-x: hidden;

}

html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%;    
    -ms-text-size-adjust: 100%;     
     text-size-adjust: 100%;        
    }




/* Preloader full screen */
/* Preloader wrapper */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Inner container */
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Logo */
.preloader-logo {
  width: 150px;
  animation: logoPulse 1.8s ease-in-out infinite;
  margin-left: 20px;
}


/* .preloader-logo img {
  width: 250px !important;

} */

/* Subtle modern pulse */
@keyframes logoPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}


.loader-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #3FB8EA; 
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}


@media (max-width: 480px) {
  .preloader-logo {
    width: 130px;
  }
}




/*--------------TRANSITIONS--------------*/


.fade-in-section {
  opacity: 1;
  transform: translateY(100px);
  visibility: hidden;
  transition: opacity 2s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}



.fade-scale {
  opacity: 0;
  transform: scale(0.2);
  visibility: hidden;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-scale.is-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}




/* --- Fade from left / right  --- */
.fade-left,
.fade-right {
  opacity: 0;                 
  visibility: hidden;       
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}

.fade-left  { transform: translateX(-200px); }  
.fade-right { transform: translateX( 200px); }

.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}




/*--------------Bact to Top Button--------------*/
#backToTop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #3FB8EA;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px; 
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 3000;
}


.chevron-up {
  width: 12px;
  height: 12px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  transform: rotate(45deg);
  display: inline-block;
}


#backToTop:hover {
    background-color: #003484;
}


@media (max-width: 992px) {

  #backToTop:hover {
    background-color: #3FB8EA;
}


}


/*--------------NAVIGATION--------------*/



/*----------- Circle on hover version----------- */


/*--------------NAVIGATION--------------*/
.nav-buttons a {
    text-decoration: none;
    color: #202823;
    transition: 0.2s ease;
    position: relative;
}

/* Hidden dot (initial state) */
.nav-buttons a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 9px;
    height: 9px;
    background-color: #3FB8EA ;
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Dot pops in on hover */
 .nav-buttons a:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.dropdown a:hover::after {
    display: none;
} 



/*----------- Underline on hover version----------- */

/* 
.nav-buttons a {
    text-decoration: none;
    color: #0b1e3f;
    transition: 0.2s ease;
    position: relative;
    display: flex;
}



.nav-buttons a::after {
    content: '';
    background-color: #fb4d46;
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: -5px;
    display: block;
    transition: 0.3s ease-in-out;
}




.nav-buttons a:hover::after {
    height: 2px;
    background-color: #fb4d46;
    width: 100%;
}


.dropdown a:hover::after {
    display: none;
} */


.nav-bar p {
    color: #202823;
    text-align: center;

}



.nav-buttons {
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 30px;
    padding: 20px;
    color: #0b1e3f;
    font-size: 18px;
    position: relative;

}


.nav-buttons li {
    position: relative;
}


nav ul li a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}


.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    font-size: 14px;
    font-weight: 0;
    font-family: Arial, Helvetica, sans-serif;
}


.dropdown-arrow {
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: 2px;

}




.dropdown:hover .dropdown-menu {
    display: block;

}


.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #0b1e3f;
    display: block;
}

.dropdown-menu li a:hover {
    color: #fb4d46;



}



/* --------------Desktop Navbar-------------- */
.nav-bar {
  background-color: #fff;
  height: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  padding: 0 150px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Logo centered */
.nav-center {
  display: flex;
  justify-content: center;
}

.nav-center img {
  max-height: 90px;
  width: auto;
}

/* Left & right sections */
.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}



/* Links */
.nav-buttons li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #003484;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-buttons li a:hover {
  color: #3FB8EA;
}

.cart-link {
  position: relative;
  display: inline-block;
}




/* ----------- Mobile Nav ----------- */
.mobile-nav { display: none; }

@media screen and (max-width: 1024px) {
  .mobile-nav { display: block; }
  .nav-bar { display: none; }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Logo centered */
  .navbar .logo {
    flex: 1;
    text-align: center;
  }

  .navbar .logo img {
    width: 80px;
    height: auto;
  }

  /* Account & Cart (right) */
  .account-cart-mobile {
    display: flex;
    gap: 15px;
  }

  .account-cart-mobile img {
    width: 26px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .account-cart-mobile img:hover {
    transform: scale(1.1);
  }

  /* Hamburger (left) */
    .hamburger {
  cursor: pointer;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bar {
  height: 3px;
  width: 100%;
  background: #003484;
  border-radius: 2px;
  transition: all 0.3s ease;
  border-radius: 2px;
  }

  /* Slide menu */
 .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: flex-start;
  width: 100%;
  background-color: #003484;
  position: fixed;   
  top: 60px;
  left: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0;           
  margin: 0;
  transition: max-height 0.4s ease-in-out;
  z-index: 3000;   
  list-style: none;
  margin-top: 41px;
}


/* When menu is open */
.nav-links.active {
  max-height: 600px;     
  padding: 20px 0;       
}

.nav-links li {
  margin: 15px 0;
  width: 100%;
  text-align: left;   
  padding-left: 20px;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}



/* Animate to X */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cart-count {
  top: -5px;
  right: -5px;
}


}







/*--------------FOOTER--------------*/

/* Modern Footer */
.main-footer {
  background: #003484;
  color: #003484;
  font-family: 'Poppins', sans-serif;
  padding: 60px 40px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 40px;
}



.footer-brand {
  flex: 1;
  min-width: 280px;
  display: flex;              
  flex-direction: column;     
  align-items: center;        
  text-align: center;         
}

.footer-brand img {
  width: 80px;
  margin-bottom: 15px;
  margin-left: 0;             
}

.footer-brand p {
  font-size: 12px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 200px;
  text-align: center;          
}

.footer-links {
  display: flex;
  gap: 90px;
  flex: 2;
  flex-wrap: wrap;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #003484;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #003484;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  /* color: #067f3f; */
}

.footer-bottom {
  text-align: center;
  padding: 5px;
  border-top: 1px solid #3FB8EA;
  background-color: #003484;
}

.footer-bottom p {
  font-size: 12px;
  margin-top: 10px;
  color: #e0e0e0;
}




.social-icons a img {
  width: 22px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}



/*-------------- RESPONSIVE --------------*/

/* Tablets and below */
@media (max-width: 992px) {
    .footer {
        gap: 30px;
        text-align: center;
    }
    .footer-column {
        flex: 1 1 45%;
    }
}

/* Mobile devices */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }
    .footer-column h4 {
        font-size: 18px;
    }
    .footer-column a {
        justify-content: center;
    }
    .footer-bottom p {
        font-size: 12px;
        text-align: center;
       
    }
    .footer-bottom .social-icons img {
        margin: 5px;
    }
    .footer-column a:hover {
    color: #ffffff; 
   }
   .footer-links {
    display: flex;
    gap: 60px;
    flex: 2;
    /* flex-wrap:wrap; */
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
   }

   .footer-brand {
    max-width: 400px;
    justify-items: center;
   }

 
}



/* -------------INDEX PAGE------------- */


/* HERO SECTION - image background version */


.hero-section {
  position: relative;
  height: 130vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  text-align: left;
  font-family: "Poppins", sans-serif;
}


.background-image {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: -1;
}


.image-content {
  max-width: 800px;
  padding: 80px;
  margin-top: 100px;
}


.image-content h1,
.image-content h2,
.image-content button {
  opacity: 0;
  transform: translateY(-150px);
  transition: all 1.3s ease-out;
}



.image-content h2 {
  transform: translateX(-40px);
}


.image-content h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-content h2.visible {
  opacity: 1;
  transform: translateX(0);
}

.image-content button.visible {
  opacity: 1;
  transform: translateY(0);
}


.image-content h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  margin-bottom: 2rem;
  font-weight: 950 !important;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* color: #ffffff;                 */
  /* -webkit-text-stroke: 2px #3FB8EA; */
   
}


.image-content h2 {
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  margin-top: -20px;
  margin-bottom: -30px;
  color: #003484;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.image-content button {
  background-color: transparent;
  border: 1.5px solid #d6d7d7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.image-content button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}


/* ------RESPONSIVE------ */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .image-content {
    padding: 60px 40px;
    margin-top: 80px;
  }

  .image-content h1 {
    font-size: 3.5rem;
  }

  .image-content h2 {
    font-size: 2.5rem;
  }

  .image-content button {
    padding: 10px 25px;
    font-size: 1.5rem;
  }

  .background-image {
    width: 90%;
  }
   .background-image {
  object-fit: cover;
  object-position: 80% 20%; 
}

.hero-section {
  height: 120vh;
}
}


@media (max-width: 992px) {
  .image-content {
    padding: 60px 40px;
    margin-top: 80px;
  }

  .image-content h1 {
    font-size: 2.5rem;
  }

  .image-content h2 {
    font-size: 1.5rem;
  }

  .image-content button {
    padding: 10px 25px;
    font-size: 0.95rem;
    
  }

  .background-image {
    width: 90%;
  }
   .background-image {
  object-fit: cover;
  object-position: 80% 20%; 
}

.hero-section {
  height: 120vh;
}
}


@media (max-width: 540px) {
  .hero-section {
    justify-content: center;
    text-align: center;
  }

  .image-content {
    padding: 40px 20px;
    margin-top: 60px;
  }

  .image-content h1 {
    font-size: 2.5rem;
  }

  .image-content h2 {
    font-size: 1.5rem;
  }

  .image-content button {
    padding: 15px 20px;
    font-size: 0.8rem;
    border: 2px solid #d6d7d7;
  }
    .background-image {
  object-fit: cover;
  object-position: 80% 20%; 
}

.image-overlay {
  background: rgba(0, 0, 0, 0.2);

}
}

/* Mobile devices */
@media (max-width: 480px) {

  .image-content{
    margin-left: -100px;
    text-align: left;
  }


  .image-content {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .image-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: left;
    letter-spacing: -0.025em;
    /* font-weight: 850 !important; */
    
  }

  .image-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: -10px;
    text-align: left;
    font-weight: 600;
    /* font-family: "Satisfy", cursive; */
    /* font-family: "Allura", cursive; */


  }

  .image-content button {
    padding: 8px 14px;
    font-size: 1rem;
    border: 1.5px solid #d6d7d7;
  }

  .background-image {
  object-fit: cover;
  object-position: 80% 20%; 
}

.image-overlay {
  background: rgba(0, 0, 0, 0.3);

}
}







@media (max-width: 378px) {
  .image-content {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .image-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    
  }

  .image-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 30px;

  }

  .image-content button {
    padding: 8px 14px;
    font-size: 1rem;
    border: 1.5px solid #d6d7d7;
  }

}







/* INTRO SECTION */


.brand-statement {
  background: #f5f7fb;
  padding: 1rem 1.5rem;
  overflow: hidden;
  margin-bottom: 50px;

}


.brand-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 4rem; */
  align-items: center;
}



.brand-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .brand-img {
  
  width: 400px;
  height: auto;
 } */


 .brand-img {
  /* width: 100%; */
  width: 350px;
  height: auto;
  

}


.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-height: 420px;
}



.brand-img.throw-in {
  width: 450px;
  height: auto;
  opacity: 0;

  transform: translate3d(
    clamp(-420px, -35vw, -260px),
    -60px,
    0
  ) rotate(-35deg) scale(0.9);

  will-change: transform, opacity;
}


.brand-img.throw-in.animate {
  animation: throwBottle 1s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}

@keyframes throwBottle {
  0% {
    transform: translate3d(-40vw, -60px, 0) rotate(-50deg) scale(1.9);
    opacity: 0;
  }

  60% {
    transform: translate3d(18px, 12px, 0) rotate(6deg) scale(1.05);
    opacity: 1;
  }

  80% {
    transform: translate3d(-6px, -4px, 0) rotate(-3deg) scale(0.98);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}




@media (max-width: 480px) {
  .brand-img.throw-in {
    width: 260px;
    transform: translate3d(-45vw, -50px, 0) rotate(-30deg) scale(0.92);
    -webkit-transform: translate3d(-45vw, -50px, 0) rotate(-30deg) scale(0.92);
  }
}



.water-bottle {
  display: flex;
  justify-content: center;
  position: relative;
}

.water-bottle img {
  width: 100%;
  /* max-width: 420px; */
  transition: transform 0.6s ease;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;

  /* border-radius: 30px; */
}


.water-bottle:hover img {
  transform: translateY(-12px) scale(1.03);
}


.brand-message {
  width: 80%;
 
}


.brand-message h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003484;
  margin-bottom: 1.5rem;
}

.brand-message p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 1.4rem;
}


.brand-message .pack-sizes {
  padding-left: 1rem;
  border-left: 4px solid #3FB8EA;
  font-weight: 500;
  color: #003484;
}


.brand-message button {
 background-color: transparent ;
  border: 2px solid;
  border-color: #3FB8EA;
  color: #3FB8EA;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition:  0.3s ease;
  margin-top: 30px;
  /* text-transform: uppercase */
}



.brand-message button:hover{
  transition: 0.3s ease-out; 
  transform: translateY(-5px);
  /* color: #3FB8EA;
  border-color: #3FB8EA; */
  cursor: pointer;


}






/* RESPONSIVE */
@media (max-width: 992px) {
  .brand-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .brand-message h2 {
    font-size: 2rem;
  }

  .brand-message .pack-sizes {
  padding-left: 0rem;
  border: none;
  font-weight: 500;
  color: #003484;
}

 /* .brand-message {
  margin-bottom: -70px;
} */


.brand-message p {
    font-size: 0.98rem;
     text-align: center !important;
  }

   .brand-message button {
    font-size: 1.6rem;
    margin-top: 20px;
    
}

}

@media (max-width: 576px) {
  .brand-statement {
    padding: 4rem 1.25rem;
   
  }

  .brand-message {
    width: 100%;
    margin-bottom: -50px;
  }

  .brand img {
    width: 80% !important;
    margin-top: -60px;
  }

  .brand-message p {
    font-size: 0.98rem;
     text-align: left !important;
  }

  .brand-message button {
    font-weight: 600;
    font-size: 1rem;
    transition:  0.3s ease;
    margin-top: 10px;
    margin-bottom: 50px;
}

.brand-message .pack-sizes {
  padding-left: 0rem;
  border: none;
  font-weight: 500;
  color: #003484;
}

}





/* FRESH DROPS BANNER  */
.banner-section img{
  width: 100%;
}




/* ---------------  DROPS FOR ALL VIDEO ----------------- */

.splash-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: "Poppins", system-ui, sans-serif; */
  color: #ffffff;
  margin-bottom: 100px;
  margin-top: 100px;
}

/* Background video */
.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: -2;
}

/* Overlay for readability */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  z-index: -1;
}

/* Content container */
.video-content {
  max-width: 900px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  animation: fadeUp 1.2s ease-out both;
}

/* Eyebrow text */
.video-content .eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #9ddcff;
}

/* Main title */
.video-content .title {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Mission paragraph */
.video-content .mission-text {
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

/* Impact emphasis */
.video-content .impact-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: #bde9ff;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  /* backdrop-filter: blur(6px); */
  transition: all 0.35s ease;
}

/* Button hover */
.hero-btn:hover {
  background: #ffffff;
  color: #003484;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




@media (max-width: 768px) {
  .video-content {
    text-align: center;
  }

  .video-content .impact-text {
    font-size: 0.9rem;
  }
  .hero-btn:hover {
  background: none;
  color: #fff;
  transform: translateY(0px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0);
}
}

@media (max-width: 480px) {
  .video-content {
    padding: 2rem 1.2rem;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}







/* OUT TECHNOLOGY */

/* TECHNOLOGY SECTION */
.technology-section {
  padding: 5rem 1.5rem;
  background: #f5f7fb;
  color: #003484;
}

.technology-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.technology-section .section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
}

/* GRID */
.tech-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(2, auto);
  gap: 2.5rem;
  justify-content: center;
}

/* CARD */
.tech-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 400px;
}

/* IMAGE */
.tech-card .tech-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

/* TITLE */
.tech-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #003484;
}

/* DESCRIPTION */
.tech-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

/* HOVER INTERACTION */
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: #3FB8EA;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .tech-card {
    max-width: 350px;
    padding: 1.8rem;
  }
}

@media (max-width: 768px) {
  .tech-card {
    max-width: 100%;
    padding: 1.5rem;
  }
  .tech-grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .tech-card h3 {
    font-size: 1.2rem;
  }

  .tech-card p {
    font-size: 0.95rem;
  }

  .tech-card .tech-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}





/* -------- WHY FRESH DROPS -------- */




/*  WHY SECTION */
.why-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  padding: 4rem 1.5rem;
}

#why-title {
  font-size: 3rem !important;
  color: #003484;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #003484;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: #5f6f86;
  font-size: 1.05rem;
  line-height: 1.6;
}


/* 
   CARD GRID
 */
.why-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}


/* 
   WHY CARD
 */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 48, 120, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 48, 120, 0.15);
}


/* 
   CARD IMAGE
 */
.why-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover img {
  transform: scale(1.06);
}


/* 
   CARD CONTENT
 */
.why-card-content {
  padding: 1.75rem 1.75rem 2.2rem;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003484;
  margin-bottom: 0.6rem;
}

.why-card-text {
  color: #6a7a90;
  line-height: 1.65;
  font-size: 0.98rem;
}




/* 
   TABLET
 */
@media (min-width: 640px) {
  .why-card-container {
    grid-template-columns: repeat(2, 1fr);
  }

  #why-title {
  font-size: 2rem;
  color: #003484;
}
}


@media (max-width: 480px) {

  #why-title {
  font-size: 2rem !important;
  color: #003484;
}




}





/* 
   DESKTOP
 */
@media (min-width: 1024px) {
  .why-card-container {
    grid-template-columns: repeat(3, 1fr);
  }

  /* .why-card img {
    height: 250px;
  } */
}




/* Disable hover on mobile/tablet */

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 48, 120, 0.15);
  }

  .why-card:hover img {
    transform: scale(1.06);
  }
}

/* <!--------------- ENGINEERING  ------------------> */

.engineering {
  background: linear-gradient(135deg, #003484, #3FB8EA);
  margin-bottom: 50px;
}




.engineering-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* .engineering img {
width: 500px;
} */


.engineering-text {
/* background-color: #3FB8EA; */
color: #e6f0f8 ;
}


.engineering-card {
  border-bottom: 1px solid;
  border-color: #e6f0f8;
  width: 550px;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
  /* padding: 30px; */

}

.engineering-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.engineering-img {
  width: 100%;
  max-width: 500px;
  height: auto;

  /* Initial animation state */
  opacity: 0;
  transform: 
    translateY(40px)
    rotate(-6deg)
    scale(0.92);

  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}


.engineering-img.visible {
  opacity: 1;
  transform:
    translateY(0)
    rotate(0deg)
    scale(1);
}


@keyframes gentleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(0.4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.engineering-img.visible {
  animation: gentleFloat 2s ease-in-out infinite;
}



/* ---------- RESPONSIVE  ---------- */

/* Large monitors */
@media (min-width: 1400px) {
  .engineering-container {
    max-width: 1400px;
  }

  .engineering img {
    max-width: 520px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .engineering-container {
    gap: 10px;
  }

  .engineering-card {
    padding: 25px 0;
  }

   .engineering img {
    max-width: 350px;
  }
}

/* Mobile & small tablets */
@media (max-width: 768px) {
  .engineering-container {
    flex-direction: column;
    text-align: center;
  }

  .engineering img {
    max-width: 380px;
  }

  .engineering-text,
  .engineering-card {
    max-width: 100%;
    text-align: left;
  }

  .engineering-card {
    padding: 20px 0;



  }
  .why-card-1:hover,
.why-card-2:hover,
.why-card-3:hover {
  transform: none;
  border: none;
}

}

/* Small phones */
@media (max-width: 480px) {
  .engineering {
    padding: 60px 20px;
    
  }

  .engineering img {
    max-width: 300px;
  }

  .engineering-card {
    padding: 15px 0;
  }

  .alternate-text h2, p {
    text-align: left;
  }
}




/* ---------- WATER FEATURE SECTION ---------- */
.fresh-drops-water {
  position: relative;
  min-height: 110vh;
  background: url('images/fresh-drops-water-glass.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem 2rem;
  color: #fff;
  overflow: hidden;
  margin-bottom: 50px;
}


.fresh-drops-water .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.0),
    rgba(0,0,0,0.3)
  );
  z-index: 1;
}


.overlay-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: auto;
}


.overlay-content-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}


.water-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}


.water-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  
}


.water-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
}


.water-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}


/* ---------- DROP-IN ANIMATION ---------- */
.water-card.drop-in {
  opacity: 0;
  transform: translateY(-60px);
  transition:
  opacity 1s ease,
  transform 2.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.water-card.drop-in.show {
  opacity: 1;
  transform: translateY(0);
}



/* ------------------- RESPONSIVE------------------- */


/* Tablets */
@media (max-width: 768px) {
  .fresh-drops-water {
    justify-content: center;
    padding: 3rem 1.5rem;
  }

  .overlay-content {
    max-width: 100%;
  }

  .water-card {
    padding: 1.6rem;
  }
  .water-card:hover {
  transform: none;
  background: none;
  box-shadow: none;
  
}
}

/* Phones */
@media (max-width: 480px) {
  .fresh-drops-water {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .overlay-content-card {
    gap: 1.2rem;
  }

  .water-card {
    padding: 1.4rem;
  }

  .water-card h2 {
    font-size: 1.25rem;
  }

  .water-card p {
    font-size: 0.9rem;
  }
}






.parallax-index {
  position: relative;
  height: 80vh;
  background: url('images/water-pouring-hand-morning-ligth-background.jpg') 
  center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden; 
  margin-bottom: 50px;
}

/* Dark overlay */
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); 
  z-index: 1;
}

/* Content above overlay */
.shop-now-content {
  position: relative;
  z-index: 2;
  justify-items: center;
}

.shop-now-content h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #fff; 
  width: 800px;
  
}

.shop-now-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-shop {
  padding: 12px 24px;
  background: #067f3f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background: #045e2d;
  transform: scale(1.05);
}




   /* RESPONSIVE PARALLAX */


/* Tablet and smaller (≤ 1024px) */
@media (max-width: 1024px) {
  .parallax-index {
    height: 80vh;
    background-attachment: scroll; 
    padding: 0 20px;
  }

  .shop-now-content h2 {
    font-size: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 15px;
  }

  .shop-now-content p {
    font-size: 1rem;
  }
}

/* Small tablets & large phones (≤ 768px) */
@media (max-width: 768px) {
  .parallax-index {
    height: 70vh;
    padding: 0 15px;
    background-attachment: scroll; 
  }

  .shop-now-content h2 {
    font-size: 1.6rem;
    max-width: 90%;
  }

  .shop-now-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .btn-shop {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .parallax-index {
    height: 70vh;
    padding: 0 10px;
    background-attachment: scroll; 
  }

  .shop-now-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    max-width: 100%;
  }

  .shop-now-content p {
    font-size: 0.8rem;
  }

  .btn-shop {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
  }
}





/*---------- ABOUT US---------- */

/* ---------- HERO BANNER ---------- */
.page-hero {
  position: relative;
  height: 60vh !important;
  background: url('images/landscape-water-background.png') center/cover no-repeat;
  /* background-position: center -150px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.current-page {
  color: #3FB8EA;
}

/* Overlay */
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  top: 50px;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-hero-content p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #f1f5f3;
}

.page-hero-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-content a:hover {
  color: #3FB8EA;
}





.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.about-sub-head {
  text-align: center;
  color: #003484;
  font-size: 1.5rem;
  margin-bottom: 30px;
}





/* ---------------- MOBILE ---------------- */


/* ---------------- SMALL PHONES ---------------- */
@media (max-width: 480px) {
  .page-hero {
    height: 40vh !important;
    padding: 3rem 1rem;
    margin-bottom: -10px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-hero-content p {
    font-size: clamp(0.8rem, 4vw, 0.95rem);
  }

  .about-sub-head {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 1.5rem;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {
  .page-hero {
    height: 60vh;
    padding: 4rem 1.5rem;
  }

  .page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-hero-content p {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .about-sub-head {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .page-hero {
    height: 40vh;
    padding: 5rem 2rem;
    margin-bottom: -10px;
  }

  .page-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }

  .page-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }

  .about-sub-head {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }
}

@media  (min-width: 882px) {
  .page-hero {
    height: 80vh;
    padding: 5rem 2rem;
    margin-bottom: -10px;
  }

}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {
  .page-hero {
    height: 40vh;
    padding: 6rem 2.5rem;
    margin-bottom: 70px;
  }

  .page-hero-content h1 {
    font-size: clamp(3rem, 3vw, 4rem);
  }

  .page-hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
  }

  .about-sub-head {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {
  .page-hero {
    height: 50vh;
    padding: 6rem 3rem;
    margin-bottom: 70px;
  }

  .page-hero-content h1 {
    font-size: clamp(3.5rem, 2.5vw, 5rem);
  }

  .page-hero-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  }

  .about-sub-head {
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  }
}





/*----------HERO---------- */
.about-hero {
  background: linear-gradient(135deg, #003484, #3FB8EA);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #003484;
  font-size: 2.5rem;
}

.section-title span {
  /* display: inline-block;
  position: relative; */
  padding-bottom: 0.1rem;
  /* font-size: 2.5rem; */
  font-weight: 800;
  color: #003484;
  border-bottom: 4px solid #3FB8EA;
  border-radius: 2px;
}





/* ---------------- MOBILE FIRST / SMALL PHONES ---------------- */
@media (max-width: 480px) {

  .about-hero {
    padding: 3rem 1rem;
  }

  .about-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-hero p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
    max-width: 95%;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    text-align: left;
  }

  .section-title span {
    border-bottom-width: 3px;
  }

  .about-sub-head {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    text-align: left;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {

  .about-hero {
    padding: 4rem 1.5rem;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .about-hero p {
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
  }

  .section-title {
    font-size: clamp(2rem, 4.5vw, 2.4rem);
  }

  .section-title span {
    border-bottom-width: 3px;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {

  .about-hero {
    padding: 5rem 2rem;
  }

  .about-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
  }

  .about-hero p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    max-width: 720px;
  }

  .section-title {
    font-size: clamp(2.2rem, 3.5vw, 2.5rem);
  }

  .section-title span {
    border-bottom-width: 4px;
  }
}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {

  .about-hero {
    padding: 6rem 2.5rem;
  }

  .about-hero h1 {
    font-size: clamp(2.8rem, 3vw, 3.2rem);
  }

  .about-hero p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.8;
  }

  .section-title {
    font-size: clamp(2.4rem, 2.5vw, 2.6rem);
  }

  .section-title span {
    border-bottom-width: 4px;
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {

  .about-hero {
    padding: 6rem 3rem;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 2.5vw, 3.2rem);
  }

  .about-hero p {
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
  }

  .section-title {
    font-size: clamp(2.5rem, 2vw, 2.8rem);
  }

  .section-title span {
    border-bottom-width: 4px;
  }
}





/*---------- STORY---------- */
.about-story {
  padding: 3rem 0;
  background: #ffffff;
  margin-top: -80px;
}

.story-text {
  border-left: 4px solid;
  border-color: #3FB8EA;
  /* border-width: 10px; */
  padding-left: 50px;
}

.story-text h2 {
  font-size: 2.2rem;
  color: #003484;
  margin-bottom: 1.2rem;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
}

.launch-note {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: #3FB8EA;
}

.story-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background: #f5f7fb;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}




/* ---------------- SMALL PHONES / MOBILE ---------------- */
@media (max-width: 480px) {

  .about-story {
    padding: 2rem 1rem;
  padding: 3rem 0;
  background: #ffffff;
  margin-top: -10px;

    
  }

  .story-text {
    border-left-width: 3px;
    padding-left: 0px;
    border: none
  }

  .story-text h2 {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 1rem;
  }

  .story-text p {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .launch-note {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  .story-highlight {
    gap: 1rem;
  }

  .highlight-card {
    padding: 1.2rem;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {

  .about-story {
    padding: 2.5rem 1.5rem;
    margin-top: -10px;
  }

  .story-text {
    border-left-width: 4px;
    padding-left: 30px;
  }

  .story-text h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.1rem);
  }

  .story-text p {
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
  }

  .launch-note {
    font-size: clamp(1rem, 3.5vw, 1.05rem);
  }

  .story-highlight {
    gap: 1.5rem;
  }

  .highlight-card {
    padding: 1.5rem;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {

  .about-story {
    padding: 3rem 2rem;
    margin-top: -10px;
  }

  .story-text {
    padding-left: 40px;
  }

  .story-text h2 {
    font-size: clamp(2rem, 3vw, 2.2rem);
  }

  .story-text p {
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    line-height: 1.7;
  }

  .launch-note {
    font-size: 1.05rem;
  }

  .story-highlight {
    gap: 1.8rem;
  }

  .highlight-card {
    padding: 2rem;
  }
}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {

  .about-story {
    padding: 3.5rem 2.5rem;
    margin-top: -10px;
  }

  .story-text {
    padding-left: 50px;
  }

  .story-text h2 {
    font-size: 2.2rem;
  }

  .story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .launch-note {
    font-size: 1.1rem;
  }

  .story-highlight {
    gap: 2rem;
  }

  .highlight-card {
    padding: 2rem;
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {

  .about-story {
    padding: 4rem 3rem;
  }

  .story-text {
    padding-left: 50px;
  }

  .story-text h2 {
    font-size: 2.4rem;
  }

  .story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .launch-note {
    font-size: 1.1rem;
  }

  .story-highlight {
    gap: 2rem;
  }

  .highlight-card {
    padding: 2rem;
  }
}














/*---------- FLYER ----------*/
.fresh-drops-flyer {
  display: flex;
  justify-content: center;   
  align-items: center;       
  /* gap: 20px; */
  margin: 50px auto 100px;
  max-width: 1200px;
}


.flyer-item {
  display: flex;
  justify-content: center;
}


.fresh-drops-flyer img {
  width: 100%;
  max-width: 500px;          
  height: auto;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}





/* ---------------- SMALL PHONES / MOBILE ---------------- */
@media (max-width: 480px) {
  .fresh-drops-flyer {
    flex-direction: column;   
    gap: 25px;
    margin: 30px auto 60px;
  }

  .fresh-drops-flyer img {
    max-width: 320px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {
  .fresh-drops-flyer {
    flex-direction: row;       
    gap: 30px;
    margin: 40px auto 80px;
  }

  .fresh-drops-flyer img {
    max-width: 400px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .fresh-drops-flyer {
    flex-direction: row;
    gap: 35px;
    margin: 50px auto 100px;
  }

  .fresh-drops-flyer img {
    max-width: 450px;
    border-top-right-radius: 90px;
    border-bottom-left-radius: 90px;
  }
}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {
  .fresh-drops-flyer {
    flex-direction: row;
    gap: 40px;
    margin: 60px auto 120px;
  }

  .fresh-drops-flyer img {
    max-width: 480px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {
  .fresh-drops-flyer {
    flex-direction: row;
    gap: 50px;
    margin: 70px auto 150px;
  }

  .fresh-drops-flyer img {
    max-width: 500px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}


/*---------- PILLARS---------- */
.about-pillars {
  background: #f5f7fb;
  padding: 5rem 0;
}

.pillar {
  /* display: flex; */
  gap: 30px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar h3 {
  color: #3FB8EA;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pillar h4 {
  color: #003484;
  margin-bottom: 1rem;
}

.pillar p {
  line-height: 1.7;
  color: #444;
}



.pillar img {
  width: 70px;
  margin-bottom: 20px;
}




/* ---------------- SMALL PHONES / MOBILE ---------------- */
@media (max-width: 480px) {
  .about-pillars {
    padding: 3rem 1rem;
  }

  .pillar {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 20px;
    text-align: center; /* stack content nicely */
  }

  .pillar h3 {
    font-size: clamp(1.5rem, 5vw, 1.5rem);
  }

  .pillar h4 {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  .pillar p {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
    line-height: 1.5;
  }

  .pillar img {
    width: 50px;
    margin-bottom: 15px;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {
  .about-pillars {
    padding: 4rem 1.5rem;
  }

  .pillar {
    padding: 2rem;
    gap: 25px;
    text-align: center;
  }

  .pillar h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  }

  .pillar h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

  .pillar p {
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
  }

  .pillar img {
    width: 60px;
    margin-bottom: 18px;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-pillars {
    padding: 5rem 2rem;
  }

  .pillar {
    padding: 2.5rem;
    gap: 30px;
  }

  .pillar h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }

  .pillar h4 {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
  }

  .pillar p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
  }

  .pillar img {
    width: 65px;
  }
}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {
  .about-pillars {
    padding: 5rem 3rem;
  }

  .pillar {
    padding: 2.5rem;
    gap: 30px;
  }

  .pillar h3 {
    font-size: 1.7rem;
  }

  .pillar h4 {
    font-size: 1.4rem;
  }

  .pillar p {
    font-size: 1.05rem;
  }

  .pillar img {
    width: 70px;
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {
  .about-pillars {
    padding: 6rem 4rem;
  }

  .pillar {
    padding: 2.5rem;
    gap: 30px;
  }

  .pillar h3 {
    font-size: 1.8rem;
  }

  .pillar h4 {
    font-size: 1.5rem;
  }

  .pillar p {
    font-size: 1.1rem;
  }

  .pillar img {
    width: 70px;
  }
}




/*---------- PRODUCTS---------- */
.about-products {
  padding: 5rem 0;
  background: #ffffff;
}

.about-products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #003484;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 3rem;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.product-card {
  background: linear-gradient(135deg, #003484, #3FB8EA);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.product-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.product-card p {
  line-height: 1.6;
  opacity: 0.95;
}





/* ---------------- SMALL PHONES / MOBILE ---------------- */
@media (max-width: 480px) {

  .about-products {
    padding: 3rem 1rem;
  }

  .about-products h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .section-intro {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
    max-width: 95%;
    margin: 0.8rem auto 2rem;
  }

  .product-grid {
    gap: 1rem;
  }

  .product-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .product-card h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    margin-bottom: 0.5rem;
  }

  .product-card p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
  }
}

/* ---------------- TABLETS / MEDIUM SCREENS ---------------- */
@media (min-width: 481px) and (max-width: 767px) {

  .about-products {
    padding: 4rem 1.5rem;
  }

  .about-products h2 {
    font-size: clamp(2rem, 4.5vw, 2.4rem);
  }

  .section-intro {
    font-size: clamp(0.95rem, 3.5vw, 1rem);
    max-width: 90%;
    margin: 1rem auto 2.5rem;
  }

  .product-grid {
    gap: 1.5rem;
  }

  .product-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .product-card h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }

  .product-card p {
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
  }
}

/* ---------------- LAPTOPS / SMALL DESKTOP ---------------- */
@media (min-width: 768px) and (max-width: 1023px) {

  .about-products {
    padding: 5rem 2rem;
  }

  .about-products h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.5rem);
  }

  .section-intro {
    font-size: 1rem;
    max-width: 700px;
    margin: 1rem auto 3rem;
  }

  .product-grid {
    gap: 1.8rem;
  }

  .product-card {
    padding: 2.3rem 2rem;
    border-radius: 20px;
  }

  .product-card h3 {
    font-size: 1.3rem;
  }

  .product-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ---------------- LARGE DESKTOP ---------------- */
@media (min-width: 1024px) and (max-width: 1199px) {

  .about-products {
    padding: 5rem 3rem;
  }

  .about-products h2 {
    font-size: 2.5rem;
  }

  .section-intro {
    font-size: 1rem;
    max-width: 720px;
    margin: 1rem auto 3rem;
  }

  .product-grid {
    gap: 2rem;
  }

  .product-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }

  .product-card h3 {
    font-size: 1.4rem;
  }

  .product-card p {
    font-size: 1.05rem;
  }
}

/* ---------------- EXTRA LARGE / WIDE SCREENS ---------------- */
@media (min-width: 1200px) {

  .about-products {
    padding: 6rem 4rem;
  }

  .about-products h2 {
    font-size: 2.6rem;
  }

  .section-intro {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 1rem auto 3rem;
  }

  .product-grid {
    gap: 2rem;
  }

  .product-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }

  .product-card h3 {
    font-size: 1.4rem;
  }

  .product-card p {
    font-size: 1.05rem;
  }
}





/*------------- PRODUCT -------------*/


.why-title {
  color: #003484;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.bullet-icon {
  color: #3FB8EA;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 4px;
}




.office-image {
  position: relative;
  width: 100%;
  max-width: 750px;      
  margin: 0 auto 40px;   
}





.office-image img {
  width: 100%;
  display: block;
  /* border-radius: 20px; */
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 48, 120, 0.15);
}



.office-text {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 80%;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
  z-index: 2;
}


/* OPTIONAL: subtle gradient for readability */
.office-image::before {
  content: "";
  position: absolute;
  inset: 0;
  /* border-radius: 20px; */
  width: 100%;
  margin: auto;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.155),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}




/* .office-image {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}



.office-image img{
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 48, 120, 0.15);
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
} */


.product-flyer {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}



.product-flyer img{
  max-width: 750px; 
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  /* border-radius: 30px; */
  /* border-bottom-left-radius: 50px;
  border-top-right-radius: 50px; */
  box-shadow: 0 15px 35px rgba(0, 48, 120, 0.15);
}







@media (max-width: 480px) {
 .product-flyer img {
  width: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
 }
 
 .why-title {
 text-align: left;
}
.why-list {
  text-align: left;
}
}

@media (max-width: 769px) {
 .product-flyer img {
  width: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
 }
 
 .why-title {
 text-align: left;
}
.why-list {
  text-align: left;
}
}





@media (max-width: 1024px) {
  .office-image {
    max-width: 480px;
  }

  .office-text {
    left: 40%;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
  }
}

/* 
   MOBILE (≤768px)
= */

@media (max-width: 768px) {
  .office-image {
    max-width: 100%;
    
  }
    .office-image img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .office-text {
    left: 35%;
    text-align: left;
    max-width: 90%;
    font-size: clamp(2.8rem, 5vw, 2.5rem);
  }
}

/* 
   SMALL PHONES (≤480px)
= */

@media (max-width: 480px) {
  .office-text {
    font-size: 1.5rem;
    line-height: 1.2;
  }
    .office-image img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}















/* ---------CHAIRMAN'S MESSAGE------- */


.chairman-message {
  background: #f5f7fb;
  padding: 5.5rem 0;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}

/* Image */
.chairman-image {
  position: relative;
}

.chairman-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.chairman-image img:hover {
  transform: translateY(-6px);
}

/* Text */
.chairman-label {
  color: #3FB8EA;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.chairman-text h2 {
  font-size: 2.4rem;
  color: #003484;
  margin: 0.6rem 0 1.2rem;
}

.chairman-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
}

.chairman-text .emphasis {
  font-weight: 600;
  font-size: 1.1rem;
  color: #003484;
}

/* Signature */
.chairman-signature {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 2px solid #3FB8EA;
  width: fit-content;
}

.chairman-signature strong {
  font-size: 1.1rem;
  color: #003484;
}

.chairman-signature span {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .chairman-grid {
    grid-template-columns: 1fr;
  }

  .chairman-text h2 {
    font-size: 1.8rem;
  }

  .chairman-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .chairman-text span {
    font-size: 1.3rem;
  }
}








/*--------- CONTACT--------- */



/* 
   CONTACTs HERO – BASE
= */
.contact-hero {
  position: relative;
  /* height: 130vh;  */
  background-image: url('images/what-can-i-you-today-shot-young-african-woman-working-her-pc-call-center.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 90px;
  overflow: hidden;
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(30px); 
  padding: 0 1.5rem;
  top: 25%;
  /* left: -35%; */
}

.contact-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.contact-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #f1f5f3;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-hero-content a:hover {
  color: #3FB8EA;
}

.current-page {
  color: #3FB8EA;
}

/*    RESPONSIVE HERO HEIGHT
 */

/* Large screens */
@media (min-width: 1400px) {
  .contact-hero {
    height: 100vh;
    background-position: center -30px;
  }
  .contact-hero-content {
    transform: translateY(40px);
  }
}

/* Laptops */
@media (max-width: 1399px) {
  .contact-hero {
    height: 90vh;
    background-position: center 50px;
  }
  .contact-hero-content {
    transform: translateY(30px);
  }
}

/* Tablets */
@media (max-width: 1023px) {
  .contact-hero {
    height: 135vh;
    background-position: center top;
  }
  .contact-hero-content {
    transform: translateY(20px);
  }
}


@media (max-width: 1025px) {
  .contact-hero {
    height: 140vh;
  }
}

/* Mobile phones */
@media (max-width: 821px) {
  .contact-hero {
    height: 60vh;
    background-position: center top;
    margin-bottom: 50px;
  }
  .contact-hero-content {
    transform: translateY(15px);
    padding: 0 1.2rem;
  }
  .contact-hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
  }
  .contact-hero-content p {
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .contact-hero {
    height: 50vh;
    background-position: center 90px;
  }
  .contact-hero-content {
    transform: translateY(10px);
  }
}


.contact-section {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}





/* .call-center-image img {
  width: 600px;
} */

.contact-item {
  justify-items: center;
  border-bottom: 1.5px solid;
  border-color: #fff;
  text-align: center;
}

.contact-card {
  /* text-align: center; */
  padding: 30px;
  height: auto;
  background-color: #003484;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 700px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}



.contact-card ul li img {
  width: 50px;
}



.contact-card i {
  color: #045e2d;
  font-size: 1.1rem;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}


.social-icons-contact {
  text-align: center;
  margin-top: 10px;
}

.social-icons-contact a img {
  width: 22px;
  margin: 0 8px;
  transition: transform 0.3s ease;
  
}

.social-icons-contact a img:hover {
  transform: scale(1.2);
}


.WhatsApp {
    display: flex;
    background-color: #003484;
    width: 140px; 
    border-radius: 20px;
    margin-top: 50px;
    margin-left: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 5px;
    transition: 0.3s ease-in-out;
    position: fixed;
    z-index: 9998;
    bottom: 20px;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

.WhatsApp:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.WhatsApp a {
    text-decoration: none;
    text-align: center;
    margin-top: 5px;
}

.WhatsApp p {
    align-self: left;
    text-align: left;
    margin-left: 7px;
    color: #ffffff;
    font-size: 12px;
}

.WhatsApp img {
    width: 30px;
    margin-left: 10px;
}




.map iframe {
    display: flex;
    width: 80%;
    border: solid 5px;
    border-color: #7c0e0e;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    justify-self: center;
    margin-bottom: 100px;
    

}



@media (max-width: 992px) {
  .contact-section {
    margin: 0 auto !important;
    margin-bottom: 80px;
  }

  .contact-card {
    padding: 25px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 500px !important;
    margin-top: 70px;
  }

  .map iframe {
    margin-top: 70px;
}
}



/* Tablets */
@media (max-width: 768px) {
  .contact-section {
    margin-bottom: 80px;
  }

  .contact-card {
    padding: 25px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 500px !important;
  }

  .contact-card h3 {
    font-size: 1.6rem;
  }

  .contact-card ul li img {
    width: 38px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .contact-section {
    padding: 0 20px;
    margin: 50px auto 60px;
    display: flex;
    justify-content: center;
  }

  .contact-card {
    width: 100% !important;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }



  .contact-card h3 {
    font-size: 1.4rem;
  }

  .contact-card ul li {
    font-size: 0.95rem;
    gap: 10px;
  }

  .contact-card ul li img {
    width: 32px;
  }

  .social-icons-contact a img {
    width: 20px;
  }

  .product-title {
    text-align: left !important;
    font-size: 1.6rem !important;
  }
}











/* CAREERS */

/*    CAREER HERO – BASE
 */
.career-hero {
  position: relative;
  /* height: 130vh;  */
  background-image: url('images/portrait-water-black-woman-with-business-office-startup-success-with-confidence-career-professional-face-female-person-employee-with-glass-computer-happiness-workplace-fd-bottle.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 90px;
  overflow: hidden;
}

/* Overlay */
.career-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Content */
.career-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(30px); 
  padding: 0 1.5rem;
}

.career-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.career-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #f1f5f3;
  max-width: 600px;
  margin: 0 auto;
}

.career-hero-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.career-hero-content a:hover {
  color: #3FB8EA;
}

.current-page {
  color: #3FB8EA;
}

/*    RESPONSIVE HERO HEIGHT
 */

/* Large screens */
@media (min-width: 1400px) {
  .career-hero {
    height: 130vh;
    background-position: center -30px;
  }
  .career-hero-content {
    transform: translateY(40px);
  }
}

/* Laptops */
@media (max-width: 1399px) {
  .career-hero {
    height: 130vh;
    background-position: center;
  }
  .career-hero-content {
    transform: translateY(30px);
  }
}

/* Tablets */
@media (max-width: 1023px) {
  .career-hero {
    height: 135vh;
    background-position: center top;
  }
  .career-hero-content {
    transform: translateY(20px);
  }
}


@media (max-width: 1025px) {
  .career-hero {
    height: 140vh;
  }
}

/* Mobile phones */
@media (max-width: 821px) {
  .career-hero {
    height: 60vh;
    background-position: center top;
    margin-bottom: 50px;
  }
  .career-hero-content {
    transform: translateY(15px);
    padding: 0 1.2rem;
  }
  .career-hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
  }
  .career-hero-content p {
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .career-hero {
    height: 50vh;
    background-position: center 30px;
  }
  .career-hero-content {
    transform: translateY(10px);
  }
}



/* 
   INTRO SECTION
 */
.careers-intro {
  padding: 4rem 1.5rem;
  background: #ffffff;
  margin-top: -30px;
}

.careers-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.careers-intro h2 {
  color: #003484;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.careers-intro p {
  color: #5f6f86;
  font-size: 1.05rem;
  line-height: 1.75;
}


/* 
   BUSINESS AREAS
 */
.careers-areas {
  background: #f5f9ff;
  padding: 4rem 1.5rem;
}

.career-section-title {
  text-align: center;
  color: #003484;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.career-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 1rem;
}

.career-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 48, 120, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  align-content: center;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 48, 120, 0.15);
}

.career-card h3 {
  color: #003484;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.career-card p {
  color: #6a7a90;
  line-height: 1.6;
}


/* 
   APPLY SECTION
 */
.careers-apply {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.apply-box {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 48, 120, 0.1);
}

.apply-box h2 {
  color: #003484;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.apply-box p {
  color: #5f6f86;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.apply-instructions {
  font-weight: 600;
  color: #003484;
}

.apply-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.apply-contacts a {
  color: #0b5ed7;
  font-weight: 600;
  text-decoration: none;
}

.apply-contacts a:hover {
  text-decoration: underline;
}


/* RESPONSIVE */
@media (min-width: 768px) {
  .career-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .career-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}


@media (max-width: 480px) {
  .career-section-title {
  font-size: 1.5rem;
} }







/* GALLERY */

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 10px;
  z-index: 1010;
  /* background: rgba(0,0,0,0.3); */
  border-radius: 50%;
  transition: background 0.3s;
}

/* .lightbox-arrow:hover {
  background: rgba(0,0,0,0.6);
} */

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}

#lightboxPrev { left: 20px; }
#lightboxNext { right: 20px; }

/* .lightbox-arrow:hover {
  background: rgba(0,0,0,0.6);
} */





.gallery {
  display: flex;
  flex-direction: column; 
  gap: 30px; 
  margin-top: 50px;
}

/* Card container */
.gallery-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Images container */
.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 15px;
}

.image-container img {
  width: 250px; 
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, filter 0.3s;
}

.image-container img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (max-width: 600px) {
  .image-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .image-container img {
    width: 90%;
    height: auto;
  }
}

/* Title & description */
.gallery-item h2 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #003484;
  text-align: center;
}

.gallery-item p {
  font-size: 16px;
  color: #555;
  text-align: center;
  width: 500px;
  margin: 0 auto;
}


.image-container video {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover interaction – matches images */
.image-container video:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* Prevent video from hijacking layout */
.image-container video::-webkit-media-controls {
  border-radius: 8px;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .image-container video {
    width: 90%;
    height: auto;
    max-height: 260px;
  }
}




/* Lightbox styles (unchanged) */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.lightbox-caption {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

  
@media (max-width: 600px) {
  .gallery-item p {
  font-size: 16px;
  width: 90%;
  margin: 0 auto;
}

.gallery-item h2 {
  font-size: 25px;
  margin-bottom: 5px;
  color: #003484;
  text-align: center;
}
}





