    /* prevent horizontal scroll */
html, body {
  overflow-x: hidden;   /* hides any horizontal overflow */
}

/* make media and wide elements responsive so they don't force overflow */
* { box-sizing: border-box; }
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
#navbar {
  position: fixed;         /* Keep navbar fixed at the top */
  top: 48px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black with transparency */
  backdrop-filter: blur(8px);     /* Blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  z-index: 9999;           /* Ensures navbar stays above everything */
  transition: background 0.3s ease;
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}
/* Responsive for mobile */
@media (max-width: 768px) {
  #navbar {
    top: 75px;
  }
}


/* Occasionally a large absolute element causes overflow — clamp it */


        #test-body{
        background-color: #e2e8f0;
        color: #1e293b;
        padding: 2rem 1rem;
        }

        .testimonial-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background-color: #4338ca;
            bottom: -10px;
            left: 20%;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #1e293b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            padding: 1rem 0;
            transition: transform 0.5s ease;
            will-change: transform;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6));
            }
        }

        .testimonial-card {
            min-width: 350px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border-bottom: 3px solid #4338ca;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 5rem;
            color: #4338ca;
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #1e293b;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid #4338ca;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            font-size: 1.1rem;
            color: #1e3a8a;
            margin-bottom: 0.25rem;
        }

        .client-details p {
            font-size: 0.9rem;
            color: #64748b;
        }

        .rating {
            margin-top: 0.5rem;
            display: flex;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
            margin-right: 0.2rem;
        }

        .navigation {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .nav-btn {
            background-color: #4338ca;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background-color: #1e3a8a;
            transform: scale(1.1);
        }

        /* Pause animation on hover */
        .testimonial-container:hover .testimonial-track {
            animation-play-state: paused;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .testimonial-card {
                min-width: 300px;
                padding: 1.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .client-image {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                min-width: 280px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* WHY Choose US  */
            :root{
      --brand:#2ebd59;
      --brand-dark:#1a9b45;
      --text:#0f172a;
      --text-on-dark:#f8fafc;
    }

    :root{
      --brand:#2ebd59;
      --brand-dark:#1a9b45;
      --text:#0f172a;
      --text-on-dark:#f8fafc;
    }

    /* Reset */
    *,*::before,*::after{box-sizing:border-box}
    html,body{height:100%;}
    body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;color:var(--text)}
    a{color:inherit;text-decoration:none}
    button{font:inherit}

    /* ===== Hero background video ===== */
    .hero{position:relative;min-height:100vh;display:grid;place-items:center;overflow:hidden}
    .hero::after{ /* dark gradient overlay for legibility */
      content:"";position:absolute;inset:0;pointer-events:none;
      background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.25) 100%);
    }

    .hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

    .hero__content{position:relative;z-index:1;text-align:center;color:var(--text-on-dark);padding:6rem 1rem 4rem;max-width:1000px}
    .hero__content h1{margin:0 0 1rem;font-size:clamp(2rem,6vw,3.6rem);line-height:1.1}
    .hero__content p{margin:0 auto 2rem;max-width:60ch;font-size:clamp(1rem,2.5vw,1.25rem);opacity:.95}

    .cta{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.2rem;border-radius:999px;background:var(--brand);color:#0b2816;font-weight:700;border:0;cursor:pointer}
    .cta:focus-visible{outline:3px solid white;outline-offset:2px}
    .cta:hover{background:var(--brand-dark)}

    /* ===== Navbar ===== */
    .navbar{position:fixed;inset:0 auto auto 0;height:70px;width:100%;display:flex;align-items:center;justify-content:center;padding:0 1rem;z-index:2;transition:background .3s,box-shadow .3s}
    .navbar__inner{width:min(1200px,100%);display:flex;align-items:center;gap:1rem}

    .brand{display:flex;align-items:center;gap:.8rem;font-weight:800;color:var(--text-on-dark)}
    .brand__logo{
      height:60px;
      width:60px;
      border-radius:50%;  /* rounded logo */
      object-fit:cover;
       
    }
    .brand span{font-size:1.5rem;font-weight:900;color: rgb(77, 216, 22);
  -webkit-text-stroke: 1px black; 
  text-shadow: 4px 4px 6px rgba(205, 195, 195, 0.6); }

    .nav{margin-left:auto;display:flex;align-items:center;gap:.5rem}
    .nav a{ padding:.6rem .9rem; border-radius:.5rem; color:var(--text-on-dark); opacity:.9; -webkit-border-radius:.5rem; -moz-border-radius:.5rem; -ms-border-radius:.5rem; -o-border-radius:.5rem; }
    .nav a:hover{background:rgba(255, 255, 255, 0.12);opacity:1}
    
    

    .nav__cta{margin-left:.25rem}

    .hamburger{display:none;margin-left:auto;background:transparent;border:0;padding:.4rem;border-radius:.5rem;color:var(--text-on-dark)}
    .hamburger:focus-visible{outline:3px solid white;outline-offset:2px}

    /* On scroll, give navbar a solid background for readability */
    .navbar.scrolled{background:rgba(10,23,17,.7);backdrop-filter:blur(10px);box-shadow:0 4px 20px rgba(0,0,0,.15)}

    /* ===== Mobile menu ===== */
    @media (max-width: 900px){
      .brand__logo{height:45px;width:45px}
      .brand span{font-size:1.2rem}

      .nav{position:fixed;inset:70px 0 auto 0;display:grid;gap:.5rem;background:rgba(6,12,10,.9);backdrop-filter:blur(10px);padding:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem;transform:translateY(-20px);opacity:0;pointer-events:none;transition:opacity .2s, transform .2s}
      .nav a{font-size:1.05rem}
      .nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
      .hamburger{display:inline-flex}
    }

    /* ===== Footer strip for demo completeness ===== */
    .footer{padding:3rem 1rem;text-align:center}

    /* ===== accessibility: reduce motion ===== */
    @media (prefers-reduced-motion: reduce){
      .hero__video{animation:none;transition:none}
      .nav,.navbar,.subnav{transition:none}
    }

    /* ===== Dropdown menu ===== */
    .dropdown{position:relative}
    .dropdown > button, .dropdown > a{display:inline-flex;align-items:center;gap:.35rem}
    .dropdown > button{background:transparent;border:0;color:var(--text-on-dark);padding:.6rem .9rem;border-radius:.7rem;cursor:pointer}
    .dropdown > button:hover{background:rgba(255,255,255,.12)}
    .submenu{position:absolute;top:calc(100% + 8px);left:0;min-width:220px;background:#0b1a15;color:var(--text-on-dark);border-radius:.8rem;padding:.4rem;box-shadow:0 10px 30px rgba(0,0,0,.25);opacity:0;transform:translateY(-6px);pointer-events:none}
    .submenu a{display:block;padding:.65rem .8rem;border-radius:.6rem}
    .submenu a:hover{background:rgba(255,255,255,.08)}
    .dropdown.open .submenu,.dropdown:focus-within .submenu{opacity:1;transform:translateY(0);pointer-events:auto}

    /* ===== Sub-navbar (persists on all pages) ===== */
    .subnav{position:fixed;top:70px;left:0;right:0;height:44px;display:flex;align-items:center;justify-content:center;padding:0 .75rem;z-index:2;background:rgba(6,12,10,.6);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.08)}
    .subnav__inner{width:min(1200px,100%);display:flex;gap:.5rem;overflow:auto hidden}
    .subnav a{white-space:nowrap;padding:.45rem .8rem;border-radius:999px;color:var(--text-on-dark);opacity:.9}
    .subnav a:hover{background:rgba(255,255,255,.12);opacity:1}

    /* push hero down a bit so it doesn't hide behind subnav on small screens */
    @media (max-width:900px){
      .hero__content{padding-top:7.5rem}
    }
        /* ===== Enquiry modal ===== */

    /* ===== Enquiry modal ===== */
    .modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:50}
    .modal.open{display:flex}
    .modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(2px)}
    .modal__dialog{position:relative;z-index:1;width:min(720px,92vw);background:#ffffff;border-radius:1rem;box-shadow:0 20px 80px rgba(0,0,0,.35);overflow:hidden}
    .modal__header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;background:linear-gradient(90deg,#0f5132,#198754);color:#fff}
    .modal__title{margin:0;font-size:1.1rem}
    .modal__close{background:transparent;border:0;color:#fff;font-size:1.4rem;line-height:1;padding:.25rem .5rem;border-radius:.5rem;cursor:pointer}
    .modal__close:focus-visible{outline:3px solid #fff;outline-offset:2px}
    .modal__body{padding:1.25rem;background:#f8fafc}

    .enquiry-form{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
    .enquiry-form .full{grid-column:1/-1}
    .field{display:flex;flex-direction:column;gap:.35rem}
    .field label{font-weight:600;font-size:.95rem}
    .field input,.field select,.field textarea{padding:.75rem .9rem;border:1px solid #cbd5e1;border-radius:.7rem;font:inherit}
    .field textarea{min-height:110px;resize:vertical}
    .form-actions{display:flex;gap:.6rem;justify-content:flex-end;margin-top:.25rem}
    .btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:.8rem;border:0;cursor:pointer;font-weight:700}
    .btn.primary{background:var(--brand);color:#062814}
    .btn.primary:hover{background:var(--brand-dark)}
    .btn.ghost{background:#145ec0}

    @media (max-width:680px){
      .enquiry-form{grid-template-columns:1fr};
      .modal{margin-top: 5rem;}
    }    /* Target mobile screens */


        /* pill shadow helper for big rounded cards */
    .card-shadow{box-shadow:0 20px 40px rgba(0,0,0,.12)}
        /* Sun spin animation */
    @keyframes sun-spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .sun-rotate {
      animation: sun-spin 8s linear infinite;
      transform-origin: center center;
    }

    .circle-mask {
      border-radius: 9999px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(8, 15, 25, 0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02));
    }

    .sun-glow {
      filter: blur(12px);
      opacity: 0.25;
    }

    /* Responsive sizing + placement helpers for the sun container */
    .sun-wrapper {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    /* Desktop / large */
    .sun-wrapper--lg { top: -80px; right: -72px; }
    .sun-size--lg { width: 144px; height: 144px; }  /* glow */
    .sun-core--lg { width: 96px; height: 96px; }    /* svg */

    /* Medium */
    @media (max-width: 1024px) {
      .sun-wrapper--lg { top: -72px; right: -56px; }
      .sun-size--lg { width: 120px; height: 120px; }
      .sun-core--lg { width: 80px; height: 80px; }
    }

    /* Tablet & small */
    @media (max-width: 768px) {
      .sun-wrapper--lg { top: -48px; right: -26px; left: auto; }
      .sun-size--lg { width: 96px; height: 96px; }
      .sun-core--lg { width: 64px; height: 64px; }
    }

    /* Mobile */
    @media (max-width: 420px) {
      .sun-wrapper--lg { top: -42px; right: 6px; left: auto; }
      .sun-size--lg { width: 80px; height: 80px; }
      .sun-core--lg { width: 56px; height: 56px; }
    }
        .grain::after{
      content: "";
      pointer-events: none;
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.01) 1px, transparent 1px);
      background-size: 3px 3px;
      mix-blend-mode: overlay;
      opacity: 0.5;
    }
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

    /* <!-- section C Start  -->
  #sectionD{
    background-color: #8bb65a;
  }
  #number1 , #number2 {
    color: #8bb65a;
  }

  #mobile-menu{
    background-color: #476ff0;
  }

  /* Section E Start  */
      /* Gradient overlay on hero image */

/* About Page */

.heading-about{
    display: flex;
    color: #b10909;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 200px;
    color: var(--dark);
    padding-top: 40px;
    /* position: relative;
    display: inline-block; */

}

.containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.center-area {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  margin-right: 200px;
  
}

.orbit-border {
  width: 100%;
  height: 100%;
  border: 3px inset #716f6f;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.orbit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 20s linear infinite;
  -webkit-animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circle {
  position: absolute;
  width: 20%;
  height: 20%;
  background: #1e90ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1vw;
  min-width: 70px;
  min-height: 70px;
  max-width: 120px;
  max-height: 120px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.circle-content {
  transform: rotate(0deg);
  animation: counterRotate 20s linear infinite;
  padding: 0 5px;
}

@keyframes counterRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.circle:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.circle:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); }
.circle:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.circle:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); }

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2vw;
  font-weight: bold;
  color: #1d943b;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  background-color: white;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  min-width: 100px;
}

.right-section {
  max-width: 600px;
  flex: 1;
  padding: 0 10px;
}

.right-section h2 {
  font-size: 2.2rem;
  color: #07057ff6;
  font-weight: 400;
  margin-top: 0;
  /* text-decoration: underline rgb(122, 220, 92) 3px; */
}

.right-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 28px;
  background: #3dbb3d;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .containers {
    flex-direction: column;
    padding: 20px 10px;
  }

  .right-section {
    text-align: center;
  }

  .logo-center {
    font-size: 20px;
    padding: 8px 16px;
  }

  .circle {
    font-size: 12px;
  }

  .right-section h2 {
    font-size: 1.6rem;
  }
  .center-area{
    margin-right: 0px;
  }
}

#about-pages{
    background-color: whitesmoke;
}

#team{
  background-color: #ccc;
}

/* No 1 design start */


.number-large {
  font-family: 'Abril Fatface', cursive;
  font-weight: 600;
  line-height: 1;
}

.brand-text {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw + 1rem, 2.25rem);
  line-height: 1.1;
  white-space: nowrap;
  padding: 9px;
}

.brand-subtext {
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.1em;
  white-space: nowrap;
}

.absolute-top-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111;
  user-select: none;
  white-space: nowrap;
  z-index: 20;
  font-family: 'Playfair Display', serif;
}

/* Overlay container for large #1 */
.number-overlay {
  font-size: clamp(15rem, 35vw, 40rem);
  color: white;
  position: absolute;
  bottom: 5%;
  left: 3%;
  user-select: none;
  text-shadow:
    -2px 0 6px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4),
    2px 0 6px rgba(0, 0, 0, 0.4),
    0 -2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1;
  line-height: 1;
}

/* Container and image stylings */
.hero-section {
  position: relative;
  width: 100vw;
  height: 83vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e9dcd4 0%, #faf4f1 100%);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-image-wrapper img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: left center;
  filter: brightness(0.95);
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: 10vw;
  z-index: 15;
  text-align: right;
  color: #111;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 70%;
    margin-right: 5vw;
  }

  .number-overlay {
    font-size: clamp(8rem, 20vw, 25rem);
    bottom: 10%;
    left: 5%;
  }
}

@media (max-width: 640px) {
  .hero-content {
    max-width: 90%;
    margin-right: 5vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: white;

  }

  .number-overlay {
    font-size: clamp(6rem, 35vw, 16rem);
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow:
      -1px 0 4px rgba(0, 0, 0, 0.4),
      0 1px 4px rgba(0, 0, 0, 0.4),
      1px 0 4px rgba(0, 0, 0, 0.4),
      0 -1px 4px rgba(0, 0, 0, 0.4);
  }
}
#warmcolor{
  background-color: rgb(223, 204, 181) !important;
}

/* What's App Icons Start  */
    :root {
      --size-desktop: 64px;
      --size-mobile: 72px;
      --right-desktop: 20px;
      --bottom-desktop: 20px;
      --right-mobile: 16px;
      --bottom-mobile: 16px;
      --shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

    }

    /* Floating WhatsApp button */
    .whatsapp-float {
      position: fixed;
      right: var(--right-desktop);
      bottom: var(--bottom-desktop);
      width: var(--size-desktop);
      height: var(--size-desktop);
      z-index: 9999;
      display: inline-grid;
      place-items: center;
      cursor: pointer;
      border-radius: 999px;
      box-shadow: var(--shadow);
      background: #25D366;
      text-decoration: none;
      outline: none;
      opacity: 1;
      -webkit-tap-highlight-color: transparent;
      transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;

      /* 👇 Continuous pop (looping animation) */
      animation: pop 1.3s ease-in-out infinite;
    }

    @media (max-width: 600px) {
      .whatsapp-float {
        right: var(--right-mobile);
        bottom: var(--bottom-mobile);
        width: var(--size-mobile);
        height: var(--size-mobile);
      }
    }

    .whatsapp-float:hover {
      transform: translateY(-6%) scale(1.08);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    }

    .whatsapp-float:active {
      transform: scale(0.95);
    }

    .whatsapp-float i {
      color: white;
      font-size: 2rem;
      text-decoration: none;
    }

    /* Label styling */
    .whatsapp-label {
      position: fixed;
      right: calc(var(--right-desktop) + var(--size-desktop) + 12px);
      bottom: calc(var(--bottom-desktop) + 6px);
      background: rgba(0, 0, 0, 0.76);
      color: white;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      line-height: 1;
      box-shadow: var(--shadow);
      transition: opacity 160ms ease, transform 160ms ease;
      z-index: 9998;
    }

    @media (max-width: 600px) {
      .whatsapp-label {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .whatsapp-float,
      .whatsapp-label {
        transition: none;
        animation: none;
      }
    }

    .hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* 🔥 Continuous "pop" animation */
    @keyframes pop {
      0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow);
      }
      10% {
        transform: scale(1.15);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
      }
      20% {
        transform: scale(0.95);
      }
      30% {
        transform: scale(1.05);
      }
      40% {
        transform: scale(1);
      }
    }


/* What's App Icons End  */
/* MAP section Start  */
/* =========================
   MAP – MOBILE SAFE
   ========================= */

.map-wrapper {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  
}

/* Desktop */
#map {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  background: #ffffff;
  z-index: 1;
}

/* State labels */
.state-label {
  color: #e5e7eb;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  pointer-events: none;
}

/* 📱 Mobile fix */
@media (max-width: 768px) {
  #map {
    display: none;           /* ✅ FIXED height (NO vh) */
    /* max-height: 500px; */
  }
  #Map-heading{
    display: none;
  }

  .state-label {
    font-size: 12px;
  }
}

    /* MAP SECTION END  */
