* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --green-main: #009c46;
  --green-dark: #00803a; /* header hover */
  --green-light: #12b35f; /* hero grow */
}



/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* White ellipse overlay */
.hero-ellipse {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  z-index: 2;
}
.simple-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.simple-wave svg {
  display: block;
  width: 100%;
  height: 500px; /* adjust height here */
}

/* ================= NAVBAR ================= */
.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  justify-content: space-between;
  padding: 12px 14px;
  margin-top: 27px !important;
  border: 1px solid #3d5d9a;
  border-radius: 50px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 70px;
  padding-left: 15px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-family: "Space Grotesk";
  font-size: 17px;
  font-weight: 700;
  color: #000;
}

.enquire-btn {
  font-family: "Roboto";
  font-size: 19px;
  font-weight: 300;
  color: #fff;
  background: #009c46;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  margin-left: 24px;
  transition:
    background 0.5s ease,
    transform 0.5s ease;
}
.enquire-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
/* ================= HERO CONTENT ================= */

.hero-content {
  position: relative;
  z-index: 4;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-family: "Space Grotesk";
  font-size: 60px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.hero-content p {
  font-family: "Roboto";
  font-size: 30px;
  font-weight: 400;
  color: #000;
  margin-bottom: 22px;
}

.view-btn {
  background: #0a9a44;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 19px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.view-btn:hover {
  background: var(--green-light);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 156, 70, 0.35);
}
/* ================= WAVE ================= */
.hero-wave {
  position: absolute;
  bottom: -10%;
  width: 100%;
  z-index: 3;
}



/* ================= Pop up box styles that appears after the enquiry form submitted successfully ================= */

    /* Full screen overlay */
.popup-overlay {
    font-family:"roboto";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display:none;
}

/* Central box */
.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: popIn 0.3s ease-out;
}

/* Success Green Circle */
.success-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    margin: 0 auto 20px;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    fill: white;
    width: 35px;
}

.popup-content h2 {
    color: #333;
    margin-bottom: 10px;
    font-family:"Space Grotesk";
}

.description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Close Button Style */
.close-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #45a049;
}

/* Pop-in animation */
@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}




/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  /* .nav-links {
    display: none;
  } */
  .hero-ellipse {
    bottom: 42%;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
  }

  .hero-wave {
    position: absolute;
    bottom: 0%;
    width: 100%;
    z-index: 3;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .logo {
    height: 40px;
  }
}
/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
}

/* ================= NAV MENU ================= */
.nav-menu {
  display: flex;
  align-items: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 690px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: 110%;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }

  .enquire-btn {
    margin-left: 0;
  }
}
/* ================= WELCOME SECTION ================= */
.welcome-section {
  padding: 80px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text h2 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #273653;
  margin-bottom: 10px;
}
.welcome-text p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #233d62;
  margin-bottom: 10px;
}

/* ================= ROTATION ================= */
.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


/* Default (Desktop) */
.circle-rotation {
  position: relative;
  width: 320px;
  height: 320px;
  animation: rotate 18s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ================= CIRCLES ================= */
.circle {
  border: 2px solid #cccccc;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Counter rotate logos */
.circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  animation: counterRotate 18s linear infinite;
}

/* Center */

/* Center circle */
.circle.center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.main-center img{
    width:120px;
    height:146px;
}

/* Orbiting */
/* Orbiting circles */
.circle.item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  margin: -55px;
  cursor: pointer;

  transform:
    rotate(calc(360deg / 7 * var(--i)))
    translate(160px)
    rotate(calc(-360deg / 7 * var(--i)));
}
@media (max-width: 991px) {
  .circle-rotation {
    width: 260px;
    height: 260px;
  }

  .circle.center {
    width: 100px;
    height: 100px;
  }

  .circle.item {
    width: 90px;
    height: 90px;
    margin: -45px;
    transform:
      rotate(calc(360deg / 7 * var(--i)))
      translate(130px)
      rotate(calc(-360deg / 7 * var(--i)));
  }
}
@media (max-width: 576px) {
      .circle-wrapper {
    overflow: hidden;   /* 🔥 KEY FIX */
    padding-bottom:30px;
  }
  .welcome-section{
      padding-bottom:20px;
  }
  .quality-section {
      padding-top:30px !important;
  }
  .circle-rotation {
    max-width: 100%;
    overflow: visible;  /* allow rotation inside wrapper */
  }
  .circle.center {
    width: 90px;
    height: 90px;
  }

  .circle.item {
    width: 80px;
    height: 80px;
    margin: -40px;
    transform:
      rotate(calc(360deg / 7 * var(--i)))
      translate(120px)
      rotate(calc(-360deg / 7 * var(--i)));
  }
}
/*@media (max-width: 345px) {*/
/*  .circle-rotation {*/
/*    width: 200px;*/
/*    height: 200px;*/
    /*display:none;*/
/*  }*/

/*  .circle.center {*/
/*    width: 90px;*/
/*    height: 90px;*/
/*  }*/

/*  .circle.item {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    margin: -40px;*/
/*    transform:*/
/*      rotate(calc(360deg / 6 * var(--i)))*/
/*      translate(110px)*/
/*      rotate(calc(-360deg / 6 * var(--i)));*/
/*  }*/
/*}*/
/* ================= MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  position: relative;
}

/* Popup – image only (LARGER & RESPONSIVE) */
.modal-content img {
  width: 100%;
  max-width: 700px;      /* 🔥 INCREASED WIDTH */
  max-height: 80vh;      /* 🔥 CONTROL HEIGHT */
  object-fit: contain;  /* no crop */
}

.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .circle-rotation {
    margin-top: 40px;
  }
}
@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* ================= QUALITY SECTION ================= */
.quality-section {
  padding: 80px 0;
  background: #ffffff;
}

.quality-heading {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #273653;
  text-align: center;
  margin-bottom: 50px;
}

/* Grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.quality-card {
  background: #009c46;
  border: 1px solid #0000001a;
  border-radius: 30px;
  padding: 30px 26px;
  color: #ffffff;
  min-height: 220px;
  transition: transform 0.9s ease;
}

/* Icon */
.quality-card img {
  width: 70px;
  margin-bottom: 18px;
}
.quality-card:hover img {
  transform: translateY(-4px);
}
/* Title */
.quality-card h3 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.quality-card p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .quality-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: auto;
  }

  .quality-card {
    text-align: left;
  }
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  background: #2c426c;
  /*background: red;*/
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
/* Wave wrapper */
/* .products-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
} */

.products-wave {
   position: relative ;   
  width: 100%;
  margin-top: -20px; /* ðŸ”¥ removes white gap */
  line-height: 0;
  z-index: 2;
}

/* Wave image */
.products-wave img {
  width: 100%;
  height: auto;
  display: block;
}
.products-title {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 47px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

/* Accordion wrapper */
.products-accordion {
  /* max-width: 900px; */
  width: 100%;
  margin: auto;
  padding-bottom: 100px; /* space before wave */
}

/* Item */
.product-item {
  border-bottom: 1px solid rgba(255, 255, 255);
  padding: 20px 0;
}

/* Header */
.product-header {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.product-header h3 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

/* Arrow */
.product-header .arrow {
  width: 14px;
}

/* Body */
.product-body {
  display: grid;
  grid-template-columns: 1.2fr 344px;
  gap: 40px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  justify-content: space-between;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease;

  padding: 0;
}

.product-item.active .product-body {
  max-height: 800px; /* large enough */
  opacity: 1;
  transform: translateY(0);
  padding: 25px 0;
}

/* Text */
.product-content p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 12px;
  padding-left: 28px;
}

/* Image */
.product-image img {
  width: 100%;
  max-width: 415px;
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .product-body {
    grid-template-columns: 1fr;
  }

  .product-image {
    text-align: center;
  }
  .product-item.active .product-body {
    max-height: none; /* ðŸ”¥ allow full height */
    overflow: visible; /* ðŸ”¥ allow image to show */
  }

  .product-body {
    transform: none; /* avoid jumpy animation */
  }

  .product-image img {
    max-width: 100%; /* responsive image */
    margin-top: 20px;
  }
}
/* ================= PROCESS SECTION ================= */
.process-section {
  padding: 90px 0;
  background: #ffffff;
}

.process-title {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 36px;
  color: #273653;
  text-align: center;
  margin-bottom: 50px;
}

/* Flow layout */
.process-flow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Step */
.process-step {
  text-align: center;
  min-width: 120px;
}

/* Number */
.step-number {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 72px;
  color: #e31e25;
  display: block;
  line-height: 1;
  transition: transform 0.4s ease;
}
.process-step:hover .step-number {
  transform: scale(1.15);
}
/* STEP label */
.step-label {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 14px;
  color: #e31e25;
  letter-spacing: 1px;
  display: block;
  margin: 4px 0;
}

/* Text */
.process-step p {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  color: #273653;
  max-width: 140px;
  margin: auto;
}

/* Arrow image */
.process-arrow {
  width: 80px;
  height: auto;
  padding-top: 50px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .process-flow {
    justify-content: center;
    gap: 30px;
  }

  .process-arrow {
    display: none; /* hide arrows on small screens */
  }
}
/* ================= TESTIMONIAL SLIDER ================= */
.testimonials-section {
  background: #009c46;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform 0.6s ease;
}

/* .testimonial-card {
  min-width: 360px;
  padding: 32px;
  border-radius: 10px;
  background: #ffffff;
  color: #273653;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: scale(1);
  transition: all 0.6s ease;
} */

.testimonial-card {
  min-width: 360px;
  height: 320px;
  /* flex-shrink: 0;   */
  padding: 32px;
  border-radius: 10px;
  background: #ffffff;
  color: #273653;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonials-title {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 33px;
  line-height: 50.6px;
  letter-spacing: 2.3px;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 16px;
}
.testimonials-subtitle {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 30px;
}
.testimonials-tag {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  padding: 9px 10px;
  border-radius: 50px;
  background-color: #e31e25;
}

/* LEFT & RIGHT (BIGGER â€“ WHITE) */
/* .testimonial-card.is-left,
.testimonial-card.is-right {
  transform: scale(1.05);
  background: #ffffff; */
/* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16); */
/* z-index: 2;
} */
/* CENTER (SMALLER â€“ GREEN TINT) */
/* .testimonial-card.is-center {
  transform: scale(0.92);
  background: #fff; */
/* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); */
/* z-index: 1;
} */

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}
.testimonial-user h4, .testimonial-user span{
  text-align: left;
}

.testimonial-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit:cover;
  /*border: 2px solid #e31e25;*/
}

.testimonial-user h4 {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  color: #273653;
  margin-bottom: 2px;
}

.testimonial-user span {
font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #8c8c8c;
}
.testimonial-card p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: #506071;
}
/*==*/

.testimonial-viewport {
  width: 1150px; /* (360 * 3) + (32 * 2) */
  margin: 0 auto;
  overflow: hidden;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .testimonial-viewport {
    width: 100%;
    overflow: hidden;
  }

  .testimonial-track {
    display: flex;
    gap: 0;
  }

  .testimonial-card {
    min-width: 100%;
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }
}


/* Maps */
.map-section {
  /* padding: 80px 0; */
  background: #ffffff;
}

/* Full width map */
.map-bleed {
  width: 100vw; /* ðŸ”¥ full viewport width */
  margin-left: calc(50% - 50vw); /* ðŸ”¥ escape container */
  height: 420px;

  /* border-radius: 24px; */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Map iframe */
.map-bleed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .map-bleed {
    height: 300px;
    border-radius: 16px;
  }
}
/* ================= FOOTER ================= */
.site-footer {
  background: #002340;
  color: #ffffff;
  padding: 70px 0 30px;
  font-family: "Roboto", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /*gap: 70px;*/
}

.footer-col h4 {
  font-family: "Space Grotesk";
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li,
.footer-col div span {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #b8c6ce;
  text-decoration: none;
}
.footer-col p {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #b8c6ce;
  text-decoration: none;
}
.footer-col ul li a {
  color: #b8c6ce;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* CONTACT ROW */
.footer-contact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 22px;
}

.footer-contact img {
  width: 20px;
  /*height: 20px;*/
  margin-top: 2px;
}

/* ABOUT TEXT */
.footer-about p {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #b8c6ce;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-family: "Roboto";

  font-weight: 400;
  color: #b8c6ce;
}

.footer-bottom a {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #b8c6ce;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
.site-footer a {
  transition: color 0.4s ease;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: none !important;
}

/* Entrance Animations */
/* ================= ENTRANCE ANIMATIONS ================= */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide variants */
.reveal-left {
  transform: translateX(-50px);
}
.reveal-right {
  transform: translateX(50px);
}
.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
  transform: scale(0.92);
}
.reveal-scale.active {
  transform: scale(1);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.active > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger.active > *:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger.active > *:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger.active > *:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger.active > *:nth-child(5) {
  transition-delay: 0.5s;
}

/* Hero intro */
.hero-content h1 {
  animation: heroFade 1.2s ease forwards;
}
.hero-content p {
  animation: heroFade 1.2s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.hero-content .view-btn {
  animation: heroFade 1.2s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quality cards hover polish */
.quality-card {
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.quality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Product image subtle zoom */
.product-image img {
  transition: transform 0.6s ease;
}
.product-item.active .product-image img {
  /*transform: scale(1.05);*/
}

/* Process numbers pulse */
.process-step:hover .step-number {
  transform: scale(1.2);
  color: #c9151b;
}

/* Testimonials smooth lift */
.testimonial-card {
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

/* Enquire now popup */

/* ================= ENQUIRY MODAL ================= */
.enquiry-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.enquiry-modal.active {
  display: block;
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.enquiry-box {
  position: relative;
  background: #ffffff;
  max-width: 720px;
  max-height: 85vh; /* 🔥 KEY */
  margin: 5vh auto;
  padding: 30px 24px;
  border-radius: 20px;
  z-index: 2;
  overflow-y: auto; /* 🔥 SCROLL ENABLE */
  animation: modalIn 0.4s ease;
}
.enquiry-box input, .enquiry-box option {
      font-family: "Roboto";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.enquiry-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.enquiry-box h2 {
  font-family: "Space Grotesk";
  color: #273653;
  margin-bottom: 6px;
}

.enquiry-sub {
  font-family: "Space Grotesk";
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.enquiry-box form label {
      font-family: "Space Grotesk";

}
.enquiry-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-box input,
.enquiry-box textarea,
.enquiry-box select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: "Roboto";
  font-size: 18px;
}

.enquiry-box textarea {
  min-height: 90px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.submit-btn {
  background: #009c46;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #00803a;
}

/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-box {
    margin: 3vh 14px;
  }
}

/*WhatsApp*/
/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.35s ease;


}

/* ONLY the icon */
.whatsapp-float img {
  width: 60px;
  height: 60px;

}

/* subtle hover */
.whatsapp-float:hover {
  transform: scale(1.08);
}


@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}

/* ================= ABOUT PAGE ================= */
.about-page {
  padding: 40px 0 30px;
  background: #ffffff;
}

/* Page Title */
.about-page-title {
  font-family: "Space Grotesk";
  font-size: 48px;
  font-weight: 700;
  color: #273653;
  text-align: center;
  margin-bottom: 10px;
}

.about-page-subtitle {
  font-family: "Roboto";
  font-size: 18px;
  color: #506071;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.g-recaptcha {
  margin: 20px 0;
}

/* Sections */
.about-section {
  margin-bottom: 30px;
}

.about-section h2 {
  font-family: "Space Grotesk";
  font-size: 32px;
  font-weight: 700;
  color: #273653;
  margin-bottom: 20px;
}

.about-section p {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 28px;
  color: #506071;
  margin-bottom: 14px;
}

/* Highlight section (Why Us) */
.about-highlight {
  background: #f5f8fc;
  padding: 30px 0;
}

/* List */
.about-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 40px;
}

.about-list li {
  font-family: "Roboto";
  font-size: 17px;
  color: #273653;
  padding-left: 28px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009c46;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-page-title {
    font-size: 36px;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }
}

/* ================= LICENSES SECTION ================= */

.licenses-section {
  /*padding: 30px 0;*/
  padding-bottom:30px;
  background: #ffffff;
}

.licenses-title {
  font-family: "Space Grotesk";
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #273653;
  margin-bottom: 50px;
}

/* Row */
.licenses-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Item */
.license-item {
  width: 140px;
  text-align: center;
  transition: transform 0.4s ease;
}

.license-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.license-item span {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 500;
  color: #273653;
}

/* Hover effect */
.license-item:hover img {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .license-item {
    width: 120px;
  }

  .license-item img {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .licenses-row {
    gap: 20px;
  }

  .license-item {
    width: 45%;
  }
}
