/* ============================================================
   Floret Play Centre Nursery
   Custom Stylesheet
   Palette sampled from the logo:
   Pink "f" · Purple "l" · Sunflower "o" · Coral "r" · Sky "e" · Green "t"
   ============================================================ */

:root {
  /* Brand hues — matched to the logo letters */
  --green: #3cb878;        /* the "t" — fresh spring green */
  --green-dark: #2a9461;
  --green-soft: #e8f7ef;
  --coral: #ff6f43;        /* the "r" — warm coral */
  --coral-dark: #ec4f26;
  --yellow: #ffcf33;       /* the sunflower "o" */
  --yellow-soft: #fff4d1;
  --pink: #f45a9e;         /* the "f" — bright bubble-gum pink */
  --pink-dark: #e23d86;
  --purple: #9c7bd0;       /* the "l" — soft grape purple */
  --purple-dark: #7d5cb8;
  --sky: #45b3ea;          /* the "e" + tagline blue */
  --sky-dark: #2796d6;

  /* Neutrals */
  --ink: #2b3340;          /* soft charcoal — readable on all brand colors */
  --muted: #6a7280;
  --cream: #fffdf7;
  --white: #ffffff;

  
  /* Signature gradient (pink → purple → sky → green, like the wordmark) */
  --brand-gradient: linear-gradient(90deg, var(--pink), var(--purple), var(--sky), var(--green));

  --shadow-sm: 0 6px 18px rgba(43, 51, 64, 0.08);
  --shadow-md: 0 16px 40px rgba(43, 51, 64, 0.12);
  --shadow-lg: 0 28px 60px rgba(43, 51, 64, 0.18);
  --radius: 22px;
  --radius-lg: 34px;
  --font-head: "Fredoka", sans-serif;
  --font-body: "Nunito", sans-serif;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

body,html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-head {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--ink);
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}
img {
  max-width: 100%;
}
section {
  position: relative;
}

/* ---------- Utility ---------- */
.text-green {
  color: var(--green) !important;
}
.text-coral {
  color: var(--coral) !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.bg-cream {
  background: var(--cream);
}
.bg-green-soft {
  background: var(--green-soft);
}

.section-pad {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a49eca;
  background: var(--green-soft);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow.coral {
  color: var(--coral-dark);
  background: #ffede4;
}
.eyebrow.yellow {
  color: #9a7400;
  background: #fff6dc;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.section-sub.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 500;
  border-radius: 50px;
  padding: 13px 30px;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.btn-primary-c {
  background: #dd90a6;
  color: #fff;
}
.btn-primary-c:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(31, 164, 99, 0.42);
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 122, 69, 0.32);
}
.btn-coral:hover {
  background: var(--coral-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(255, 122, 69, 0.42);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--green-dark);
}
.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--purple-dark), var(--sky-dark));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}
.topbar a {
  color: #fff;
  opacity: 0.92;
}
.topbar a:hover {
  opacity: 1;
  color: var(--yellow);
}
.topbar .divider {
  opacity: 0.35;
}

.navbar {
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(20, 60, 35, 0.06);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 9px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Temporary monogram mark — swap for real logo image later */
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--sky));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 8px 18px rgba(156, 123, 208, 0.32);
  flex-shrink: 0;
}
.brand-text {
  line-height: 1.05;
}
.brand-text .name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand-text .tag {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  margin: 0 4px;
  padding: 8px 14px !important;
  border-radius: 50px;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-dark);
  background: var(--green-soft);
}
.navbar-toggler {
  border: none;
  box-shadow: none !important;
  font-size: 1.4rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 25px 0 120px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 201, 60, 0.2),
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 107, 157, 0.16),
      transparent 36%
    ),
    linear-gradient(180deg, #f2fbf5 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 .hl {
  color: #776ead;
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl svg {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .ic {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.hero-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}
.hero-badge strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}

/* Hero image collage */
.hero-visual {
  position: relative;
}
.hero-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.4;
}
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 4s ease-in-out infinite;
}
.hero-float .ic {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
  color: #fff;
}
.hero-float.f1 {
  top: 24px;
  left: -28px;
}
.hero-float.f2 {
  bottom: 36px;
  right: -26px;
  animation-delay: 1.2s;
}
.hero-float strong {
  font-family: var(--font-head);
  font-size: 0.98rem;
  display: block;
  line-height: 1.1;
}
.hero-float small {
  color: var(--muted);
  font-size: 0.76rem;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.blob {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.blob.b1 {
  top: 8%;
  right: 6%;
  width: 120px;
}
.blob.b2 {
  bottom: 6%;
  left: 4%;
  width: 90px;
}

/* Wave divider */
.wave-divider {
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ============================================================
   MARQUEE strip
   ============================================================ */
.marquee {
  background: var(--brand-gradient);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: scrollx 22s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee .dot {
  color: var(--yellow);
}
@keyframes scrollx {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-exp {
  position: absolute;
  bottom: -26px;
  right: -10px;
  background: var(--coral);
  color: #fff;
  border-radius: 22px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-exp .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
}
.about-exp small {
  font-size: 0.82rem;
  opacity: 0.95;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
.about-list .tick {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(20, 60, 35, 0.05);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-soft);
  opacity: 0;
  transition: all 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 0.96rem;
}

.bg-c-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.bg-c-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}
.bg-c-yellow {
  background: linear-gradient(135deg, var(--yellow), #f5a623);
}
.bg-c-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.bg-c-sky {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
}
.bg-c-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.program-top {
  padding: 32px 28px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.program-top .age {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.22);
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}
.program-top h4 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}
.program-top .emoji {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 3.2rem;
  opacity: 0.35;
}
.program-body {
  padding: 24px 28px 30px;
}
.program-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program-body li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.program-body li i {
  color: var(--green);
}

/* ============================================================
   STATS / COUNTER
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 30px;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(255, 255, 255, 0.12),
    transparent 40%
  );
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item .num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
}
.stat-item .num .text-yellow {
  color: var(--yellow);
}
.stat-item p {
  margin: 8px 0 0;
  opacity: 0.92;
  font-weight: 600;
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(20, 60, 35, 0.08);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 500;
  margin: 0 8px 14px 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.activity-pill:hover {
  transform: translateY(-4px);
}
.activity-pill i {
  font-size: 1.1rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 20, 0.92);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 30px;
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-close,
.lightbox .lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.25s;
  display: grid;
  place-items: center;
}
.lightbox .lb-close {
  top: 24px;
  right: 28px;
}
.lightbox .lb-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .lb-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  border: 1px solid rgba(20, 60, 35, 0.05);
}
.testi-card .quote {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--green-soft);
  line-height: 0.6;
  position: absolute;
  top: 24px;
  right: 26px;
}
.testi-stars {
  color: var(--yellow);
  margin-bottom: 14px;
  font-size: 1rem;
}
.testi-card p {
  color: var(--ink);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
}
.testi-person strong {
  display: block;
  font-family: var(--font-head);
}
.testi-person small {
  color: var(--muted);
}

/* ============================================================
   ADMISSION CTA
   ============================================================ */
.cta-band {
    background: linear-gradient(135deg, #776ead, #a49eca);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative;
  z-index: 1;
}
.cta-band p {
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-row:last-child {
  margin-bottom: 0;
}
.contact-ic {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
}
.contact-row h6 {
  font-family: var(--font-head);
  margin: 0 0 4px;
  font-size: 1rem;
}
.contact-row a,
.contact-row p {
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}
.contact-row a:hover {
  color: var(--green-dark);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 60, 35, 0.08);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact info – horizontal strip */
.contact-strip {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 60, 35, 0.05);
  padding: 30px;
}
.contact-strip .contact-row {
  margin-bottom: 0;
}

.contact-form .form-control {
  border-radius: 14px;
  border: 1.5px solid #e6ece8;
  padding: 13px 18px;
  font-weight: 600;
  background: var(--cream);
}
.contact-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 164, 99, 0.12);
  background: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #16241a;
  color: #cdd8d0;
  padding: 70px 0 0;
}
.footer h5 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.footer a {
  color: #b9c6bd;
}
.footer a:hover {
  color: var(--yellow);
}
.footer .f-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer .f-brand .brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-size: 1.45rem;
}
.footer .f-brand .name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #b9c6bd;
}
.footer-contact i {
  color: var(--yellow);
  margin-top: 4px;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
}
.social-row a:hover {
  background: var(--green);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.9rem;
  color: #9aa89f;
}

.navlogo{
  height: 80px;

}

.footerlogo{
  height: 100px;

}

/* Floating call button */
.float-call {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 14px 30px rgba(31, 164, 99, 0.5);
  animation: pulse 2s infinite;
}
.float-call:hover {
  color: #fff;
  background: var(--green-dark);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 164, 99, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(31, 164, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 164, 99, 0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }
  .hero {
    padding: 58px 0 80px;
    text-align: center;
  }
  .hero p.lead,
  .section-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 50px;
  }
  .navbar {
    background: rgba(255, 255, 255, 0.97);
  }
  .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }
  .navbar-collapse .btn {
    margin-top: 6px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-exp {
    right: 50%;
    transform: translateX(50%);
  }
  .cta-band {
    padding: 44px 28px;
    text-align: center;
  }
  .cta-band .text-lg-end {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-float {
    display: none;
  }
  .hero-badges {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .hero-badge {
    flex: 1 1 0;
    min-width: 0;
  }
  .hero-badge .ic {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .hero-badge strong {
    font-size: 0.95rem;
  }
  .hero-badge small {
    font-size: 0.72rem;
  }
  .topbar .hide-sm {
    display: none;
  }
  .stats {
    padding: 40px 18px;
  }
  .map-wrap {
    height: 340px;
  }

  .navlogo{
    height: 55px;
  }

}
