* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4fff6;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --nav-bg:           #1a1a2e;
  --nav-bg-2:         #2d1b4e;
  --nav-border:       #c8a45a;
  --nav-text:         #f5e6c8;
  --nav-sub:          #c8a45a;
  --nav-height:       70px;
  --menu-bg:          #ffffff;
  --menu-brand-bg:    #fdf8f0;
  --menu-border:      #eee;
  --menu-hover-bg:    #fdf4e3;
  --menu-hover-text:  #1a1a2e;
  --menu-accent:      #c8a45a;
  --menu-text:        #333333;
  --menu-sub-text:    #888888;
  --menu-width:       270px;
  --overlay-bg:       rgba(10, 8, 20, 0.55);
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'DM Sans', sans-serif;
  --transition:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --green-dark:       #0d3b0e;
  --green-mid:        #1a6b1c;
  --green-bright:     #2eb82e;
  --green-light:      #7dda58;
  --green-pale:       #c8f5a0;
  --sun-gold:         #ffd54f;
  --sun-glow:         #ff8f00;
  --white:            #ffffff;
  --cream:            #fffde7;
  --coral:            #ff6b6b;
  --teal:             #00bfa5;
}

/* ── Base navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  background: linear-gradient(135deg, var(--nav-bg) 0%, var(--nav-bg-2) 100%);
  border-bottom: 3px solid var(--nav-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(200, 164, 90, 0.15) inset;
  gap: 12px;
  padding: 0 20px 0 66px; /* left pad accounts for hamburger */
}

/* ── Hamburger ── */
.hamburger {
  position: absolute; left: 20px;
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; z-index: 1300;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(200, 164, 90, 0.12); }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--nav-text); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 18px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); width: 26px; }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); width: 26px; }

/* ── Center marquee heading ── */
.nav-heading {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.nav-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* soft fade on both edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.nav-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: navScroll 28s linear infinite;
}

.nav-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes navScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav-title {
  /* font-family: var(--font-display); */
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-text);
  letter-spacing: 0.04em;
}

.nav-sub {
  /* font-family: var(--font-body); */
  font-size: 13px;
  color: var(--nav-border);
  letter-spacing: 0.10em;
}

.nav-dot {
  font-size: 11px;
  color: var(--nav-border);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Enroll button (desktop) ── */
/* ── Enroll button (desktop) ── */
/* ================================
   ENROLL BUTTON (NAVBAR)
   ================================ */
.enroll-btn-nm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;

  /* ✅ Move button DOWN properly */
  margin-top: 6px;   /* adjust: 4px / 6px / 8px as needed */

  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;

  padding: 9px 20px;
  border-radius: 999px;

  background: transparent;
  border: 1.5px solid var(--nav-border);
  color: var(--nav-border);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;

  text-decoration: none;
  cursor: pointer;

  transition: 
    background var(--transition),
    color var(--transition),
    transform 0.15s ease,
    box-shadow var(--transition);
}

/* Hover */
.enroll-btn-nm:hover {
  background: var(--nav-border);
  color: var(--nav-bg);
  transform: scale(1.04);
  box-shadow: 0 0 14px rgba(200, 164, 90, 0.35);
}

/* Click */
.enroll-btn-nm:active {
  transform: scale(0.98);
}

/* ── Mobile brand ── */
.mobile-brand {
  display: none;
  color: var(--nav-text);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-display);
}

/* ── Side menu ── */
.side-menu {
  position: fixed;
  top: var(--nav-height);
  left: calc(-1 * var(--menu-width));
  width: var(--menu-width);
  height: calc(100% - var(--nav-height));
  background: var(--menu-bg);
  display: flex; flex-direction: column;
  z-index: 1200; overflow-y: auto; overflow-x: hidden;
  border-right: 0.5px solid var(--menu-border);
  transition: left var(--transition);
  scrollbar-width: thin; scrollbar-color: #e0d5c5 transparent;
}
.side-menu::-webkit-scrollbar { width: 4px; }
.side-menu::-webkit-scrollbar-thumb { background: #e0d5c5; border-radius: 4px; }
.side-menu.active { left: 0; }

.menu-brand {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 16px 20px;
  background: var(--menu-brand-bg);
  border-bottom: 1px solid var(--menu-border); flex-shrink: 0;
}
.menu-logo {
  /* width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid var(--menu-accent); margin-bottom: 12px;
  background: var(--nav-bg); */
  display: flex; align-items: center; justify-content: center;
}
.menu-logo img { width: 100%; height: 100%; object-fit: contain; }
.menu-logo-fallback {
  display: none; align-items: center; justify-content: center;
  font-size: 26px; width: 100%; height: 100%;
}
.menu-brand-name {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--nav-bg); text-align: center;
}
.menu-brand-tagline {
  font-size: 11px; color: var(--menu-sub-text);
  letter-spacing: 0.08em; margin-top: 4px; text-transform: uppercase;
}

.menu-list { list-style: none; flex: 1; }
.menu-list li { border-bottom: 0.5px solid var(--menu-border); position: relative; }
.menu-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; text-decoration: none;
  color: var(--menu-text); font-size: 14px; font-weight: 400;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  position: relative;
}
.menu-link::before {
  content: ""; position: absolute; left: 0; top: 0;
  height: 100%; width: 0; background: var(--menu-accent);
  transition: width var(--transition); border-radius: 0 2px 2px 0;
}
.menu-link:hover::before { width: 3px; }
.menu-link:hover { background: var(--menu-hover-bg); color: var(--menu-hover-text); padding-left: 26px; }
.menu-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }

.menu-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--menu-border);
  background: var(--menu-brand-bg);
  flex-shrink: 0;
}
.menu-footer p {
  font-size: 11px; color: var(--menu-sub-text);
  text-align: center; letter-spacing: 0.04em;
}

/* ── Overlay ── */
.overlay {
  position: fixed; top: var(--nav-height); left: 0;
  width: 100%; height: calc(100% - var(--nav-height));
  background: var(--overlay-bg); opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100; cursor: pointer;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.overlay.active { opacity: 1; visibility: visible; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(10, 8, 20, 0.35); }

.menu-link--active {
  background: var(--menu-hover-bg);
  color: var(--menu-hover-text) !important;
  font-weight: 500;
  padding-left: 26px !important;
}
.menu-link--active::before { width: 3px !important; }

/* Make existing enroll button work inside side menu */
.side-menu .enroll-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  text-align: center;
  justify-content: center;

  top: 0;            /* remove desktop offset */
  position: relative;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-heading  { display: none; }
  .enroll-btn   { display: none; }
  .mobile-brand { display: block; }
  .navbar       { padding: 0 16px; justify-content: center; }

  /* ❌ Hide navbar button on mobile */
  .navbar .enroll-btn-nm {
    display: none;
  }

}



/* ==============================
   ABOUT SECTION - CHELLA MAZHALAIGAL
================================= */


.about-pro {
  padding: 6rem 1.5rem;
}

.about-pro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* IMAGE SECTION */
.about-pro-images {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.img-small {
  position: absolute;
  width: 60%;
  bottom: -30px;
  right: -20px;
  border-radius: 15px;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FLOATING BOX */
.about-floating {
  position: absolute;
  top: 20px;
  left: -20px;
  background: #2eb82e;
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.about-floating h3 {
  font-size: 1.8rem;
  margin: 0;
}

.about-floating span {
  font-size: 12px;
}

/* CONTENT */
.about-pro-content h5 {
  color: #2eb82e;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-pro-content h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about-pro-content h2 span {
  color: #2eb82e;
}

.about-pro-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURES */
.about-pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
  color: #333;
}

/* BUTTON */
.about-pro-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #2eb82e, #7dda58);
  color: #0d3b0e;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-pro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-pro-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .img-small {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .about-floating {
    left: 10px;
  }
}

@media (max-width: 500px) {
  .about-pro-content h2 {
    font-size: 1.8rem;
  }

  .about-pro-features {
    grid-template-columns: 1fr;
  }
}



/* HERO SECTION */
.cm-about-hero {
  width: 100%;
  height: 5cm;
    margin-top: 70px;   /* adjust as needed */
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("./Assets/About-Us-Page/Hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* CONTENT */
.cm-about-content h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cm-about-content p {
  margin-top: 5px;
  font-size: 14px;
  color: #eee;
}

.cm-about-content a {
  color: #a5d6a7;
  text-decoration: none;
  font-weight: 500;
}

.cm-about-content a:hover {
  text-decoration: underline;
}

.cm-about-content span {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cm-about-content h1 {
    font-size: 22px;
  }

  .cm-about-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cm-about-content h1 {
    font-size: 18px;
  }

  .cm-about-content p {
    font-size: 12px;
  }
}


/* .why-us  */


/* SECTION */
.why-us {
  padding: 80px 20px;
  background: #f6fbf7;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.why-left {
  flex: 1;
}

.section-tag {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  color: #1b5e20;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features {
  list-style: none;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
}

/* BUTTON */
.btn {
  padding: 12px 25px;
  border: 2px solid #2e7d32;
  background: transparent;
  border-radius: 30px;
  color: #2e7d32;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #2e7d32;
  color: #fff;
}

/* RIGHT SIDE */
.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #d0e8d5;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon {
  font-size: 24px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .why-right {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 28px;
  }
}


/*  */

/* ===== SECTION ===== */
.cm-staff {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.cm-header {
  text-align: center;
  margin-bottom: 60px;
}

.cm-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1b5e20;
  position: relative;
  display: inline-block;
}

/* Unique underline animation */
.cm-header h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #00c853, #b2ff59);
  position: absolute;
  left: 20%;
  bottom: -10px;
  border-radius: 10px;
}

.cm-header p {
  margin-top: 20px;
  color: #666;
}

/* STAFF WRAPPER */
.cm-staff-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.cm-card {
  width: 240px;
  text-align: center;
  transition: 0.4s;
  position: relative;
}

/* IMAGE WRAP - UNIQUE SHAPE */
.cm-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}

/* Creative diagonal cut effect */
.cm-img-wrap::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent 60%, rgba(0,200,83,0.2));
  top: 0;
  left: -10%;
  transition: 0.5s;
}

.cm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT */
.cm-content {
  margin-top: 15px;
}

.cm-content h3 {
  font-size: 20px;
  color: #222;
}

.cm-content span {
  font-size: 14px;
  color: #00c853;
  font-weight: 500;
}

/* HOVER EFFECT */
.cm-card:hover img {
  transform: scale(1.1);
}

.cm-card:hover .cm-img-wrap::before {
  left: 100%;
}

.cm-card:hover {
  transform: translateY(-10px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cm-header h2 {
    font-size: 28px;
  }

  .cm-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .cm-card {
    width: 100%;
  }
}

/* ==============================
   TESTIMONIAL SECTION
============================== */
.testimonial-section {
  background: #0f9d58;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.testimonial-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Slider */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.video-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Video Card */
.video-card {
  min-width: 300px;
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* VIDEO STYLE (UPDATED FROM IFRAME) */
.video-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ==============================
   BUTTONS (FIXED BELOW VIDEOS)
============================== */
.slider-buttons {
  position: static;          /* IMPORTANT FIX */
  margin-top: 20px;          /* space below slider */
  display: flex;
  gap: 10px;
  justify-content: flex-start; /* left align */
}

.slider-buttons button {
  padding: 10px 15px;
  border: none;
  background: #ffffff;
  color: #0f9d58;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.slider-buttons button:hover {
  background: #e6e6e6;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .video-card {
    min-width: 250px;
    flex: 0 0 250px;
  }

  .testimonial-title {
    font-size: 1.6rem;
  }

  .testimonial-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .slider-buttons {
    justify-content: center; /* center on mobile */
  }
}

/* ==============================
   MISSION & VISION SECTION
================================= */

.mission-vision {
  background: #f1f8f4;
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.mv-heading {
  text-align: center;
  margin-bottom: 50px;
}

.mv-heading p {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 10px;
}

.mv-heading h2 {
  color: #1b5e20;
  font-size: 32px;
}

/* Wrapper */
.mv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Card */
.mv-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Text */
.mv-card h3 {
  color: #1b5e20;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 992px) {
  .mv-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mv-heading h2 {
    font-size: 24px;
  }

  .mv-card {
    padding: 20px;
  }
}


/* ==============================
   MISSION & VISION SECTION
================================= */

.mission-vision {
  background: #e8f5e9;
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING - CENTER */
.mv-heading {
  text-align: center;
  margin-bottom: 50px;
}

.mv-subtitle {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 10px;
}

.mv-heading h2 {
  color: #1b5e20;
  font-size: 34px;
}

/* CARDS */
.mv-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD DESIGN */
.mv-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.icon {
  font-size: 45px;
  margin-bottom: 15px;
}

/* TEXT */
.mv-card h3 {
  color: #1b5e20;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 992px) {
  .mv-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mv-heading h2 {
    font-size: 24px;
  }

  .mv-card {
    padding: 20px;
  }
}



/* ============================================================
   FOOTER (old)
   ============================================================ */
.footer { background: #0f172a; color: #e2e8f0; padding: 40px 20px; }
.footer-top h2 { text-align: center; color: #22c55e; margin-bottom: 20px; }
.quick-links { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.quick-links ul { list-style: none; }
.quick-links li { margin: 6px 0; font-size: 14px; cursor: pointer; transition: 0.3s; }
.quick-links li:hover { color: #22c55e; }
.footer-container { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 30px; }
.footer-box img { width: 60px; margin-bottom: 10px; }
.footer-box h3, .footer-box h4 { color: #22c55e; margin-bottom: 10px; }
.footer-box p { font-size: 14px; line-height: 1.6; display: flex; align-items: center; gap: 8px; }
.footer-box ul { list-style: none; }
.footer-box ul li { margin: 8px 0; }
.footer-box ul li a { text-decoration: none; color: #e2e8f0; transition: 0.3s; }
.footer-box ul li a:hover { color: #22c55e; }
.material-symbols-outlined { font-size: 18px; color: #22c55e; }
.social-icons { margin-top: 10px; }
.social-icons span { margin-right: 10px; font-size: 22px; cursor: pointer; transition: 0.3s; }
.social-icons span:hover { color: #22c55e; }
.footer-bottom { text-align: center; margin-top: 20px; font-size: 14px; border-top: 1px solid #334155; padding-top: 10px; }
@media(max-width:900px) { .footer-container { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .footer-container { grid-template-columns: 1fr; text-align: center; } .quick-links { flex-direction: column; align-items: center; } .footer-box p { justify-content: center; } }

/* ============================================================
   CM FOOTER (new)
   ============================================================ */
.cm-footer { font-family: 'Poppins', sans-serif; background: #0a1a0b; color: #d8f0c8; position: relative; overflow: hidden; }
.cm-coconut-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.cm-coconut-bg svg { width: 100%; height: 100%; opacity: 0.055; }
.cm-footer::before { content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(34,100,34,0.28) 0%, transparent 70%); bottom: -200px; left: -150px; }
.cm-footer::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(20,80,20,0.22) 0%, transparent 70%); bottom: -180px; right: -120px; }
.cm-footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; gap: 2.5rem; padding: 4rem 5rem 2.8rem; position: relative; z-index: 1; }
.cm-col h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #7dda58; margin-bottom: 1.3rem; padding-bottom: 0.65rem; position: relative; }
.cm-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: linear-gradient(90deg, #7dda58, transparent); border-radius: 2px; }
.logo-col .cm-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 1.2rem; }
/* Reduce logo container height */
.brand-logo {
  width: 200px;
  height: auto;   /* IMPORTANT */
}

/* Remove extra spacing */
.brand-logo img {
  width: 100%;
  height: auto;
  display: block;   /* removes inline gap */
  object-fit: contain;
}

/* Fix alignment with text */
.cm-brand {
  display: flex;
  align-items: center;   /* center vertically */
  gap: 10px;             /* reduce gap */
}
.brand-text h2 { font-size: 15.5px; font-weight: 700; line-height: 1.35; color: #e8f5e9; letter-spacing: -0.01em; }
.brand-text span { font-size: 11px; color: #5a8a4a; font-weight: 400; letter-spacing: 0.04em; }
.logo-col p.cm-desc { font-size: 13px; color: #7a9e6a; line-height: 1.8; margin-bottom: 1.4rem; }
.badge-row { display: flex; gap: 7px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(125,218,88,0.09); border: 1px solid rgba(125,218,88,0.2); border-radius: 20px; padding: 4px 10px; font-size: 11px; color: #a5d6a7; font-weight: 500; transition: background 0.2s, border-color 0.2s; }
.badge:hover { background: rgba(125,218,88,0.18); border-color: rgba(125,218,88,0.4); }
.badge .material-symbols-rounded { font-size: 13px; font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 20; }
.cm-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cm-col ul li a { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #7a9e6a; text-decoration: none; padding: 5px 0; transition: color 0.2s, transform 0.22s; }
.cm-col ul li a .material-symbols-rounded { font-size: 15px; opacity: 0.55; transition: opacity 0.2s, color 0.2s; font-variation-settings: 'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 20; }
.cm-col ul li a:hover { color: #c5e8a8; transform: translateX(5px); }
.cm-col ul li a:hover .material-symbols-rounded { opacity: 1; color: #7dda58; }
.contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }
.contact-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(125,218,88,0.1); border: 1px solid rgba(125,218,88,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.contact-item:hover .contact-icon { background: rgba(125,218,88,0.2); border-color: rgba(125,218,88,0.35); }
.contact-icon .material-symbols-rounded { font-size: 15px; color: #7dda58; font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 20; }
.contact-text { font-size: 13px; color: #7a9e6a; line-height: 1.55; }
.contact-text strong { display: block; font-size: 10.5px; color: #4d6e42; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 2px; font-weight: 600; }
.social-row { display: flex; gap: 9px; margin-top: 1.5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; text-decoration: none; position: relative; overflow: hidden; border: 1px solid rgba(125,218,88,0.15); background: rgba(255,255,255,0.05); transition: transform 0.22s, border-color 0.22s; }
.social-btn:hover { transform: translateY(-4px); border-color: transparent; }
.social-btn .btn-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.22s; border-radius: 10px; }
.social-btn:hover .btn-bg { opacity: 1; }
.social-btn.fb .btn-bg { background: #1877F2; }
.social-btn.ig .btn-bg { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.yt .btn-bg { background: #FF0000; }
.social-btn.li .btn-bg { background: #0A66C2; }
.social-btn svg { width: 18px; height: 18px; fill: #7a9e6a; position: relative; z-index: 1; transition: fill 0.22s; }
.social-btn:hover svg { fill: #ffffff; }
.cm-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(125,218,88,0.15) 25%, rgba(125,218,88,0.25) 50%, rgba(125,218,88,0.15) 75%, transparent); margin: 0 5rem; position: relative; z-index: 1; }
.cm-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 1.4rem 5rem; position: relative; z-index: 1; }
.footer-copy { font-size: 12.5px; color: #4d6e42; }
.footer-copy span { color: #7dda58; }
.leaf-pulse { display: inline-block; animation: leafPulse 2.8s ease-in-out infinite; }
@keyframes leafPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { font-size: 12px; color: #4d6e42; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #8faf80; }
.footer-links .sep { width: 3px; height: 3px; border-radius: 50%; background: #2a4a22; }
.cm-col { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.cm-col.visible { opacity: 1; transform: translateY(0); }
.cm-col:nth-child(1){transition-delay:0.05s} .cm-col:nth-child(2){transition-delay:0.15s}
.cm-col:nth-child(3){transition-delay:0.25s} .cm-col:nth-child(4){transition-delay:0.35s}
@media (max-width: 1080px) { .cm-footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 3rem 2rem; gap: 2rem; } .logo-col { grid-column: 1 / -1; } .cm-divider { margin: 0 3rem; } .cm-footer-bottom { padding: 1.2rem 3rem; } }
@media (max-width: 640px) { .cm-footer-top { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; gap: 2rem; } .logo-col { grid-column: auto; } .cm-divider { margin: 0 1.5rem; } .cm-footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem; } .footer-links { flex-wrap: wrap; gap: 10px; } }
