
    /* ===== RESET & VARIABLES (preserved & enhanced) ===== */
    :root {
      --primary-color: #125228;
      --font-color-blue: #4D65F9;
      --sec-font-color: #393d72;
      --footer-color: #393d72;
      --border-radius: 0.375rem;
      --border-radius-lg: 0.5rem;
      --border-radius-xl: 1rem;
      --spacing-xs: 0.25rem;
      --spacing-sm: 0.3rem;
      --spacing-md: 0.75rem;
      --spacing-lg: 1.5rem;
      --spacing-xl: 1.4rem;
      --font-color: #262626;
      --header-font-color: #151515;
      --black-background: #333333;
      --white-font: #ffffff;
      --grey-color: #494949;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8fafc;
      color: #334155;
      line-height: 1.6;
    }

    h1, h2, h3, .h1, .h2, .h3 {
      font-weight: 200;
      font-family: Poppins, 'Montserrat', sans-serif;
    }

    h4, h5, h6, .h4, .h5, .h6 {
      font-weight: 600;
      font-family: Poppins, 'Montserrat', sans-serif;
    }

    .text-secondary {
      color: var(--font-color-blue);
    }

    
    

    /* ============================================ */
    /* ========== HEADER ========== */
    /* ============================================ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(26, 104, 50, 0.06);
      transition: all 0.4s ease;
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 4px 30px rgba(15, 40, 20, 0.1);
    }

    .header-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      padding: 0 4rem;
    }

    .logo {
    
    }

    .logo-icon {
      
    }
.logo-icon img{
width: 60px;


}
    .logo:hover .logo-icon {
      border-radius: 5px 18px 5px 18px;
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.3px;
    }

    .logo-text span {
      color: #1a6832;
    }

    .desktop-nav { display: none; }
    .nav-cta { display: none; }
    .hamburger-wrap { display: block; z-index: 1001; }

    .hamburger-btn {
      width: 48px;
      height: 48px;
      border-radius: 16px 5px 16px 5px;
      background: linear-gradient(135deg, #0f381e 0%, #1a5e32 100%);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(26, 104, 50, 0.3);
      transition: all 0.3s ease;
    }

    .hamburger-btn.active {
      border-radius: 5px 16px 5px 16px;
      background: #0a2815;
    }

    .burger-lines {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .burger-line {
      display: block;
      height: 2.5px;
      background: #f4ffe8;
      border-radius: 3px;
      transition: all 0.35s ease;
    }

    .line-1 { width: 22px; }
    .line-2 { width: 16px; margin-left: -6px; }
    .line-3 { width: 10px; margin-left: -12px; }

    .hamburger-btn.active .line-1 {
      width: 20px;
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-btn.active .line-2 {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger-btn.active .line-3 {
      width: 20px;
      margin-left: 0;
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      background: rgba(10, 30, 18, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      overflow-y: auto;
      padding: 2rem;
    }

    .mobile-menu.open { opacity: 1; visibility: visible; }

    .mobile-nav-links {
      list-style: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin: 0;
      padding: 0;
    }

    .mobile-nav-links a,
    .mobile-nav-links .mobile-products-toggle {
      color: #e0f0d8;
      text-decoration: none;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links .mobile-products-toggle:hover {
      color: #82e0a0;
    }

    .mobile-products-toggle i {
      font-size: 0.7rem;
      transition: transform 0.3s ease;
    }
    .mobile-products-toggle.open i { transform: rotate(180deg); }

    .mobile-products-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.3rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, margin 0.4s ease;
      margin-top: 0;
      list-style: none;
      padding: 0;
    }
    .mobile-products-list.open { max-height: 350px; margin-top: 0.4rem; }
    .mobile-products-list a {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.4rem 0.6rem;
      color: #c5e6ba;
      background: rgba(255,255,255,0.05);
      border-radius: 0.4rem;
      text-align: center;
      display: block;
      text-decoration: none;
    }
    .mobile-products-list a:hover { background: rgba(255,255,255,0.1); color: #ffffff; }

    .mobile-cta {
      margin-top: 2rem;
      background: #ffffff;
      color: #0f381e;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .mobile-cta:hover { background: #e0f0d8; }

    @media (min-width: 1025px) {
      .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .desktop-nav > li { position: relative; }
      .desktop-nav a,
      .desktop-nav .dropdown-toggle {
        text-decoration: none;
        color: #2b3d2b;
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: -0.2px;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.35rem;
        transition: color 0.3s ease;
      }
      .desktop-nav a:hover,
      .desktop-nav .dropdown-toggle:hover { color: #1a6832; }
      .dropdown-toggle i { font-size: 0.6rem; color: #6b8b65; transition: transform 0.3s ease; }
      .dropdown-wrapper.open > .dropdown-toggle i { transform: rotate(180deg); }
      .dropdown-menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: -1rem;
        background: #ffffff;
        border-radius: 1rem;
        box-shadow: 0 20px 50px -15px rgba(15, 40, 20, 0.18);
        border: 1px solid #e8f2e4;
        padding: 0.7rem;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: all 0.25s ease;
        list-style: none;
      }
      .dropdown-wrapper.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu li { list-style: none; }
      .dropdown-menu a {
        display: block;
        padding: 0.5rem 0.8rem;
        border-radius: 0.5rem;
        font-size: 0.84rem;
        font-weight: 500;
        color: #3a4d3a;
        text-decoration: none;
        transition: all 0.15s ease;
      }
      .dropdown-menu a:hover { background: #f4faf2; color: #1a6832; }
      .dropdown-divider { border-top: 1px solid #e8f2e4; margin: 0.3rem 0; }
      .dropdown-menu .view-all { font-weight: 600; color: #1a6832; }
      .nav-cta {
        display: inline-block;
        background: #1a6832;
        color: #ffffff;
        padding: 0.75rem 1.6rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.88rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 6px 18px rgba(26, 104, 50, 0.25);
        white-space: nowrap;
        flex-shrink: 0;
      }
      .nav-cta:hover { background: #0f4d22; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26, 104, 50, 0.4); }
      .hamburger-wrap { display: none; }
    }

    @media (max-width: 1024px) {
      .header-inner { height: 85px; padding: 0 2rem; }
    }
    @media (max-width: 600px) {
      .header-inner { height: 75px; padding: 0 1.2rem; }
      .logo-text { font-size: 1.2rem; }
      .logo-icon { width: 40px; height: 40px; font-size: 1.1rem; }
      .hamburger-btn { width: 44px; height: 44px; border-radius: 14px 4px 14px 4px; }
      .mobile-nav-links a,
      .mobile-nav-links .mobile-products-toggle { font-size: 1.5rem; }
    }
    @media (max-width: 380px) {
      .header-inner { height: 70px; padding: 0 1rem; }
      .logo-text { font-size: 1rem; }
      .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
      .hamburger-btn { width: 40px; height: 40px; }
      .mobile-nav-links a,
      .mobile-nav-links .mobile-products-toggle { font-size: 1.3rem; }
    }

    /* ============================================ */
    /* ========== PREMIUM CENTERED HERO ========== */
    /* ============================================ */
    .hero-section {
      width: 100%;
      height: 100vh;
      min-height: 700px;
      max-height: 1080px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ----- Background Layers ----- */
    .hero-bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: scale(1);
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform, opacity;
      z-index: 0;
    }

    .hero-bg-layer.active {
      opacity: 1;
      z-index: 1;
      animation: heroZoomIn 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    }

    .hero-bg-layer.fading-out {
      opacity: 0;
      z-index: 2;
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
      animation: none;
    }

    @keyframes heroZoomIn {
      0% { transform: scale(1); }
      100% { transform: scale(1.18); }
    }

    /* ----- Dark Overlay ----- */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(3, 15, 8, 0.78) 0%,
        rgba(8, 25, 15, 0.55) 35%,
        rgba(12, 30, 18, 0.4) 65%,
        rgba(5, 18, 10, 0.65) 100%
      );
      z-index: 3;
      pointer-events: none;
    }

    /* ----- Grain Texture ----- */
    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.035"/></svg>');
      z-index: 4;
      pointer-events: none;
    }

    /* ----- Centered Content ----- */
    .hero-content {
      position: relative;
      z-index: 5;
      text-align: center;
      width: 100%;
      max-width: 1300px;
      padding: 0 2rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #c8f0b8;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      padding: 0.55rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 1.4rem;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .hero-content h1 .italic-highlight {
      font-style: italic;
      color: #b5f0a0;
      position: relative;
    }

    .hero-content h1 .italic-highlight::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 100%;
      height: 10px;
      background: rgba(26, 104, 50, 0.45);
      z-index: -1;
      border-radius: 3px;
    }

    .hero-content p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 2.5rem;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
    }

    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeInUp 1s ease 0.6s forwards;
      opacity: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ffffff;
      color: #0a1f12;
      font-weight: 700;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 1rem 2.4rem;
      border-radius: 50px;
      transition: all 0.35s ease;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    }

    .btn-primary:hover {
      background: #e6fce0;
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 1rem 2.4rem;
      border-radius: 50px;
      border: 2px solid rgba(255, 255, 255, 0.45);
      transition: all 0.35s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #ffffff;
      transform: translateY(-4px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ----- Scroll Indicator ----- */
    .hero-scroll-indicator {
      position: absolute;
      bottom: 0.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.68rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      animation: fadeInUp 1s ease 1s forwards;
      opacity: 0;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      animation: scrollDot 2s ease-in-out infinite;
    }

    @keyframes scrollDot {
      0% { top: -100%; }
      50% { top: 100%; }
      100% { top: 100%; }
    }

    /* ----- Slide Dots ----- */
    .hero-slide-dots {
      position: absolute;
      bottom: 2.5rem;
      right: 4rem;
      z-index: 5;
      display: flex;
      gap: 0.8rem;
    }

    .slide-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      padding: 0;
    }

    .slide-dot.active {
      background: #ffffff;
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
      width: 30px;
      border-radius: 20px;
    }

    .slide-dot:hover {
      background: rgba(255, 255, 255, 0.65);
    }

    /* ========== HERO RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero-section {
        min-height: 650px;
      }
      .hero-content {
        padding: 0 1.5rem;
      }
      .hero-slide-dots {
        right: 2rem;
        bottom: 2rem;
      }
      .hero-scroll-indicator {
        bottom: 1.1rem;
      }
    }

    @media (max-width: 600px) {
      .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 5rem 0;
      }
      .hero-content {
        padding: 0 1.2rem;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero-content p {
        font-size: 0.92rem;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      .btn-primary,
      .btn-outline {
        justify-content: center;
        width: 100%;
      }
      .hero-slide-dots {
        right: 1.2rem;
        bottom: 1.8rem;
        gap: 0.6rem;
      }
      .slide-dot { width: 8px; height: 8px; }
      .slide-dot.active { width: 24px; }
      .hero-scroll-indicator {
        bottom: 0.5rem;
      }
    }
      



   
   

    /* fallback for smooth scroll */
    html {
      scroll-behavior: smooth;
    }

.group-list{
  padding-top: 0;
  margin-top: 0;
}

      /*Abt-Section*/

    /* ========== FULL-WIDTH ABOUT SECTION ========== */
    .about-fullwidth {
      width: 100%;
      display: flex;
      flex-direction: row;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }

    /* ---------- LEFT PANEL: VISUAL / IMAGE ---------- */
    .about-visual {
      flex: 0 0 48%;
      background: linear-gradient(160deg, #0a3319 0%, #14522d 40%, #1a5e32 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      min-height: 400px;
    }

    /* organic abstract shapes */
    .organic-shape {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }
    .shape-1 {
      width: 500px;
      height: 500px;
      top: -15%;
      right: -20%;
      border-radius: 63% 37% 54% 46% / 43% 55% 45% 57%;
    }
    .shape-2 {
      width: 350px;
      height: 350px;
      bottom: -10%;
      left: -15%;
      border-radius: 41% 59% 62% 38% / 53% 46% 54% 47%;
      background: rgba(255, 255, 255, 0.06);
    }
    .shape-3 {
      width: 200px;
      height: 200px;
      top: 55%;
      right: 15%;
      border-radius: 58% 42% 43% 57% / 49% 55% 45% 51%;
      background: rgba(255, 255, 255, 0.03);
    }

    /* center emblem */
    .visual-emblem {
      position: relative;
      z-index: 3;
      text-align: center;
      color: #ffffff;
      padding: 2rem;
    }

    .emblem-icon {
      font-size: 5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 47% 53% 51% 49% / 44% 48% 52% 56%;
      margin: 0 auto 2rem auto;
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      transition: border-radius 0.6s ease;
    }

    .emblem-icon:hover {
      border-radius: 55% 45% 48% 52% / 51% 55% 45% 49%;
    }

    .visual-emblem h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #f4ffe8;
      margin-bottom: 0.4rem;
      line-height: 1.2;
    }

    .visual-emblem .tagline {
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: #b0dfa0;
      opacity: 0.85;
    }

    /* ---------- RIGHT PANEL: TEXT CONTENT ---------- */
    .about-content {
      flex: 0 0 52%;
      background: #ffffff;
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
      align-items: start;
    }

    .about-content .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0.5rem 1.4rem;
      border-radius: 50px;
      width: fit-content;
      margin-bottom: 2rem;
      border: 1px solid #cbe5c3;
    }

    .about-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: #0f2818;
      line-height: 1.3;
      margin-bottom: 1.5rem;
      letter-spacing: -0.3px;
    }

    .about-content h3 .italic-green {
      font-style: italic;
      color: #1a6832;
      position: relative;
    }

    .about-content h3 .italic-green::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 5px;
      width: 100%;
      height: 7px;
      background: #d2ebc8;
      z-index: -1;
      border-radius: 3px;
      opacity: 0.7;
    }

    .about-content .description {
      font-size: 1.08rem;
      line-height: 1.85;
      color: #3d5140;
      margin-bottom: 1rem;
      font-weight: 400;
    }

    /* ---------- MISSION BLOCK ---------- */
    .mission-block {
      background: #f8fcf5;
      border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      padding: 1.8rem 1rem;
      margin-top: 2.5rem;
      margin-bottom: 2.5rem;
      border-left: 5px solid #1a6832;
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      box-shadow: 0 10px 25px -12px rgba(15, 60, 25, 0.2);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .mission-block:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 35px -15px rgba(15, 60, 25, 0.3);
    }

    .mission-icon-circle {
      background: #1a6832;
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      flex-shrink: 0;
      box-shadow: 0 10px 20px -8px rgba(26, 104, 50, 0.5);
    }

    .mission-text h4 {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #1a6832;
      margin-bottom: 0.35rem;
    }

    .mission-text p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.8rem;
      font-weight: 500;
      color: #0b2b16;
      line-height: 1.5;
    }

    /* ========== PROMINENT ANIMATED STATS ========== */
    .stats-heading {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #1a6832;
      margin-bottom: 1rem;
    }

    .stats-row {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      border-top: 1px solid #dfecda;
      padding-top: 0;
      background: #f9fdf7;
      border-radius: 1.2rem;
      overflow: hidden;
      box-shadow: 0 8px 24px -10px rgba(20, 60, 30, 0.15);
    }

    .stat-card {
      flex: 1 1 33.333%;
      min-width: 120px;
      text-align: center;
      padding: 2rem 1rem;
      position: relative;
      background: #ffffff;
      transition: all 0.3s ease;
      cursor: default;
      border-right: 1px solid #eaf2e6;
    }

    .stat-card:last-child {
      border-right: none;
    }

    .stat-card:hover {
      background: #f2f9ef;
      transform: translateY(-4px);
      box-shadow: 0 12px 28px -10px rgba(20, 60, 30, 0.25);
      z-index: 2;
      border-radius: 0.8rem;
    }

    .stat-icon {
      font-size: 1.8rem;
      color: #1a6832;
      margin-bottom: 0.8rem;
      opacity: 0.8;
      transition: transform 0.3s ease;
    }

    .stat-card:hover .stat-icon {
      transform: scale(1.2);
      opacity: 1;
    }

    .stat-number {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2.4rem, 3.5vw, 3.2rem);
      font-weight: 800;
      color: #0f2818;
      line-height: 1;
      margin-bottom: 0.3rem;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #0f2818 0%, #1a5e32 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-suffix {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      color: #1a6832;
    }

    .stat-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #5b6b55;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* subtle divider between stats on desktop */
    .stat-divider {
      width: 1px;
      background: #eaf2e6;
      align-self: stretch;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .about-fullwidth {
        flex-direction: column;
        min-height: auto;
      }

      .about-visual {
        flex: 0 0 auto;
        min-height: 320px;
        width: 100%;
        padding: 2rem 1.5rem;
      }

      .emblem-icon {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
      }

      .visual-emblem h2 {
        font-size: 2rem;
      }

      .about-content {
        flex: 0 0 auto;
        width: 100%;
        padding: 2.5rem 1.8rem;
      }

      .about-content h3 {
        font-size: 1.8rem;
      }

      .description {
        font-size: 0.8rem;
      }

      .mission-block {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.5rem;
      }

      .stats-row {
        flex-direction: column;
        gap: 0;
      }

      .stat-card {
        border-right: none;
        border-bottom: 1px solid #eaf2e6;
        padding: 1.5rem 1rem;
      }

      .stat-card:last-child {
        border-bottom: none;
      }

      .stat-number {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .about-visual {
        min-height: 260px;
      }

      .emblem-icon {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
      }

      .visual-emblem h2 {
        font-size: 1.7rem;
      }

      .about-content {
        padding: 2rem 1.2rem;
      }

      .about-content h3 {
        font-size: 1.6rem;
      }

      .mission-text p {
        font-size: 1.1rem;
      }

      .stat-number {
        font-size: 1.9rem;
      }

      .stat-card {
        padding: 1.2rem 0.8rem;
      }
    }




 

    /* ========== FULL-WIDTH PRODUCTS SECTION ========== */
    .products-fullwidth {
      width: 100%;
      background: #f9fdf7;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* subtle organic background texture */
    .products-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 80% 20%, rgba(26, 104, 50, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 85%, rgba(130, 185, 122, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    .products-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1a6832, #82b97a);
      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.05rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    
    /* ============================================ */
    /* ========== WHY CHOOSE US SECTION ========== */
    /* ============================================ */
    .why-us-fullwidth {
      width: 100%;
      background: #ffffff;
      padding: 6rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* Subtle organic background accents */
    .why-us-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 20% 30%, rgba(26, 104, 50, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(130, 185, 122, 0.035) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(180, 210, 160, 0.015) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .why-us-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 4.5rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1a6832, #82b97a);
      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.08rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== FEATURES GRID ========== */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
    }

    /* ========== FEATURE CARD ========== */
    .feature-card {
      background: #ffffff;
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      padding: 2.8rem 2rem 2.4rem 2rem;
      position: relative;
      transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 10px 30px -10px rgba(15, 40, 20, 0.08);
      border: 1px solid #eef5ea;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
      cursor: default;
    }

    /* Subtle green top accent that appears on hover */
    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #1a6832, #5aad4e, #1a6832);
      opacity: 0;
      transform: scaleX(0.3);
      transform-origin: center;
      transition: all 0.5s ease;
    }

    .feature-card:hover::before {
      opacity: 1;
      transform: scaleX(1);
    }

    /* Background glow */
    .feature-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 30%, rgba(26, 104, 50, 0.035) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 28px 55px -16px rgba(15, 55, 25, 0.22);
      border-color: #d4e8cc;
    }

    /* ========== ICON CONTAINER ========== */
    .feature-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 24px 8px 24px 8px;
      background: linear-gradient(135deg, #0f381e 0%, #1a5e32 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.6rem;
      position: relative;
      z-index: 3;
      box-shadow: 0 14px 30px -10px rgba(26, 104, 50, 0.4);
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .feature-card:hover .feature-icon-wrap {
      border-radius: 8px 26px 8px 26px;
      box-shadow: 0 20px 40px -12px rgba(26, 104, 50, 0.55);
      transform: scale(1.08) rotate(-3deg);
    }

    .feature-icon-wrap i {
      font-size: 2rem;
      color: #f4ffe8;
      transition: transform 0.5s ease;
    }

    .feature-card:hover .feature-icon-wrap i {
      transform: scale(1.15);
    }

    /* ========== FEATURE CONTENT ========== */
    .feature-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.8rem;
      letter-spacing: -0.3px;
      position: relative;
      z-index: 3;
    }

    .feature-card .feature-desc {
      font-size: 0.93rem;
      line-height: 1.75;
      color: #4a5b47;
      margin-bottom: 1.4rem;
      position: relative;
      z-index: 3;
      flex-grow: 1;
    }

    /* ========== FEATURE STAT / HIGHLIGHT ========== */
    .feature-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      font-size: 0.85rem;
      color: #1a6832;
      position: relative;
      z-index: 3;
      padding: 0.35rem 1rem;
      background: #f4faf2;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .feature-card:hover .feature-highlight {
      background: #1a6832;
      color: #ffffff;
    }

    .feature-highlight i {
      font-size: 0.7rem;
    }

    /* ========== BOTTOM TRUST STRIP ========== */
    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      margin-top: 5rem;
      padding: 2.5rem 3rem;
      background: linear-gradient(135deg, #f6fbf4 0%, #edf7e9 100%);
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      border: 1px solid #e0f0d8;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .trust-icon-small {
      width: 44px;
      height: 44px;
      border-radius: 12px 3px 12px 3px;
      background: #1a6832;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(26, 104, 50, 0.25);
    }

    .trust-text strong {
      display: block;
      font-size: 0.9rem;
      color: #0f2818;
      font-weight: 700;
    }

    .trust-text span {
      font-size: 0.8rem;
      color: #5b6b55;
      font-weight: 500;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1000px) {
      .why-us-fullwidth {
        padding: 4.5rem 2.5rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .feature-card {
        padding: 2.2rem 1.5rem 2rem 1.5rem;
      }

      .section-header h2 {
        font-size: 1.9rem;
      }

      .trust-strip {
        gap: 2rem;
        padding: 2rem 1.5rem;
      }
    }

    @media (max-width: 650px) {
      .why-us-fullwidth {
        padding: 3.5rem 1.5rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      }

      .section-header {
        margin-bottom: 3rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .feature-card h3 {
        font-size: 1.25rem;
      }

      .feature-icon-wrap {
        width: 65px;
        height: 65px;
      }

      .feature-icon-wrap i {
        font-size: 1.6rem;
      }

      .trust-strip {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.8rem 1.5rem;
        margin-top: 3rem;
      }
    }

    @media (max-width: 400px) {
      .why-us-fullwidth {
        padding: 3rem 1rem;
      }

      .feature-icon-wrap {
        width: 55px;
        height: 55px;
        border-radius: 18px 6px 18px 6px;
      }

      .feature-icon-wrap i {
        font-size: 1.4rem;
      }

      .trust-strip {
        padding: 1.5rem 1rem;
        border-radius: 1.2rem 0.4rem 1.2rem 0.4rem;
      }
    }





    /* ========== PRODUCT GRID (11 items) ========== */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.6rem;
      width: 100%;
    }

    /* ========== PRODUCT CARD ========== */
    .product-card {
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 1.8rem 0.5rem 1.8rem 0.5rem;
      height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 14px 32px -10px rgba(10, 35, 15, 0.3);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      isolation: isolate;
    }

    /* gradient overlay for text readability */
    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.12) 35%,
        rgba(8, 28, 12, 0.88) 100%
      );
      z-index: 2;
      transition: background 0.4s ease;
    }

    .product-card:hover::before {
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.08) 28%,
        rgba(8, 28, 12, 0.94) 100%
      );
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 48px -14px rgba(10, 50, 20, 0.45);
      border-radius: 2.2rem 0.5rem 2.2rem 0.5rem;
    }

    /* product badge on hover */
    .hover-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(8px);
      color: #ffffff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      letter-spacing: 1.5px;
      z-index: 5;
      opacity: 0;
      transform: translateX(12px);
      transition: all 0.35s ease;
      border: 1px solid rgba(255, 255, 255, 0.3);
      text-transform: uppercase;
    }

    .product-card:hover .hover-badge {
      opacity: 1;
      transform: translateX(0);
    }

    /* card content */
    .card-content {
      position: relative;
      z-index: 4;
      padding: 1.5rem 1.4rem 1.5rem 1.4rem;
      color: #ffffff;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      transform: translateY(8px);
      transition: transform 0.35s ease;
    }

    .product-card:hover .card-content {
      transform: translateY(0);
    }

    .product-icon {
      font-size: 1.6rem;
      margin-bottom: 0.3rem;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
      transition: transform 0.35s ease;
    }

    .product-card:hover .product-icon {
      transform: scale(1.15);
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      line-height: 1.2;
      color: #f7fff2;
    }

    .product-category {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: #b8e2a6;
      margin-top: 0.15rem;
    }

    /* ========== BOTTOM LINK ========== */
    .products-footer {
      text-align: center;
      margin-top: 3rem;
    }

    .view-all-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: #1a6832;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      border: 2px solid #1a6832;
      border-radius: 50px;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
    }

    .view-all-link:hover {
      background: #1a6832;
      color: #ffffff;
    }

    .view-all-link i {
      transition: transform 0.3s ease;
    }

    .view-all-link:hover i {
      transform: translateX(4px);
    }

    /* ========== CATEGORY LEGEND ========== */
    .category-legend {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2.5rem;
      color: #3a523a;
      font-weight: 500;
      font-size: 0.85rem;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 3px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1100px) {
      .products-fullwidth {
        padding: 4rem 2.5rem;
      }

      .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
      }

      .product-card {
        height: 260px;
      }

      .product-name {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 800px) {
      .products-fullwidth {
        padding: 3rem 1.8rem;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
      }

      .product-card {
        height: 250px;
        border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      }

      .section-header h2 {
        font-size: 1.9rem;
      }

      .product-name {
        font-size: 1.4rem;
      }

      .category-legend {
        gap: 1.2rem;
        font-size: 0.78rem;
      }
    }

    @media (max-width: 480px) {
      .products-fullwidth {
        padding: 2.5rem 1rem;
      }

      .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem;
      }

      .product-card {
        height: 220px;
        border-radius: 1.2rem 0.3rem 1.2rem 0.3rem;
      }

      .card-content {
        padding: 1.1rem 1rem;
      }

      .product-name {
        font-size: 1.2rem;
      }

      .product-category {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
      }

      .product-icon {
        font-size: 1.3rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .view-all-link {
        padding: 0.7rem 1.6rem;
        font-size: 0.85rem;
      }

      .category-legend {
        gap: 0.8rem;
        font-size: 0.72rem;
        flex-direction: column;
        align-items: center;
      }
    }



    

    /* ========== FULL-WIDTH SERVICES SECTION ========== */
    .services-fullwidth {
      width: 100%;
      background: #ffffff;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* organic background accents */
    .services-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 15% 10%, rgba(26, 104, 50, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 90%, rgba(130, 185, 122, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(180, 210, 160, 0.02) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .services-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1a6832, #82b97a);
      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.08rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== SERVICES GRID ========== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      width: 100%;
    }

    /* ========== SERVICE CARD ========== */
    .service-card {
      background: #ffffff;
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 10px 30px -10px rgba(15, 40, 20, 0.1);
      border: 1px solid #eef5ea;
      display: flex;
      flex-direction: column;
      cursor: default;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 48px -14px rgba(15, 55, 25, 0.25);
      border-color: #d4e8cc;
    }

    /* ========== SERVICE IMAGE ========== */
    .service-image {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* gradient overlay on image */
    .service-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.02) 50%,
        rgba(10, 28, 15, 0.6) 100%
      );
      transition: background 0.4s ease;
    }

    .service-card:hover .service-image::after {
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.01) 50%,
        rgba(10, 28, 15, 0.7) 100%
      );
    }

    /* icon badge on image */
    .service-icon-badge {
      position: absolute;
      bottom: 1rem;
      left: 1.2rem;
      width: 48px;
      height: 48px;
      border-radius: 14px 4px 14px 4px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon-badge {
      border-radius: 4px 16px 4px 16px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
      transform: scale(1.08);
    }

    .service-icon-badge i {
      font-size: 1.3rem;
      color: #1a5e32;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-icon-badge i {
      transform: rotate(-6deg) scale(1.1);
    }

    /* ========== SERVICE CONTENT (below image) ========== */
    .service-body {
      padding: 1.6rem 1.5rem 1.8rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
    }

    .service-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
      letter-spacing: -0.3px;
    }

    .service-body .service-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: #4a5b47;
      margin-bottom: 1.2rem;
      flex-grow: 1;
    }

    /* ========== SERVICE LINK ========== */
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #1a6832;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.3s ease;
      padding-bottom: 2px;
      border-bottom: 2px solid transparent;
      width: fit-content;
    }

    .service-link i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .service-link:hover {
      border-bottom-color: #1a6832;
      gap: 0.7rem;
    }

    .service-link:hover i {
      transform: translateX(4px);
    }

    /* ========== BOTTOM CTA ========== */
    .services-cta {
      text-align: center;
      margin-top: 4rem;
      padding: 2.5rem;
      background: linear-gradient(135deg, #0a3319 0%, #14522d 50%, #1a5e32 100%);
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .services-cta::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
      pointer-events: none;
    }

    .services-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      font-weight: 700;
      margin-bottom: 0.6rem;
      position: relative;
      z-index: 2;
    }

    .services-cta p {
      font-size: 1rem;
      color: #c5e6ba;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ffffff;
      color: #0f381e;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      background: #f0fde8;
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    }

    .cta-button i {
      transition: transform 0.3s ease;
    }

    .cta-button:hover i {
      transform: translateX(4px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1000px) {
      .services-fullwidth {
        padding: 4rem 2rem;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .service-image {
        height: 180px;
      }

      .section-header h2 {
        font-size: 1.9rem;
      }

      .service-body {
        padding: 1.4rem 1.3rem 1.5rem 1.3rem;
      }
    }

    @media (max-width: 650px) {
      .services-fullwidth {
        padding: 3rem 1rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .service-image {
        height: 200px;
      }

      .section-header {
        margin-bottom: 2.5rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .service-body h3 {
        font-size: 1.2rem;
      }

      .service-body {
        padding: 1.3rem 1.2rem 1.4rem 1.2rem;
      }

      .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
      }

      .services-cta h3 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 400px) {
      .services-fullwidth {
        padding: 2.5rem 0.6rem;
      }

      .service-image {
        height: 170px;
      }

      .service-icon-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px 3px 12px 3px;
        bottom: 0.8rem;
        left: 1rem;
      }

      .service-icon-badge i {
        font-size: 1.1rem;
      }
    }








 /*Our Values*/
.abt-section{
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(/images/wallpaper4\ \(3\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.abt2-section{
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/wallpaper4\ \(3\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.abt-content{
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.abt-title{
    border-bottom: 1px red solid;
    font-size: 1.3rem;
    color: var(--font-color-red);
    padding-bottom: 20px;
                font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      border-color: var(--font-color-red);
}
.abt-content h1{
color: var(--sec-font-color);
font-weight: 800;
font-family: 'Fredoka', sans-serif;
text-align: start;
font-size: 2.2rem;
    padding-bottom: 16px;

}
.abt-content h3{

  color: var(--sec-font-color);
font-weight: 500;
font-family: Poppins,'Fredoka', sans-serif;
text-align: start;
font-size: 1.1rem;
    padding-bottom: 4px;
}
.abt-content p{
color: var(--sec-font-color);
font-weight: 400;
text-align: start;
font-size: 1rem;
font-family: montserrat, Helvetica, sans-serif;
}
.abt-grid{
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 9px;
        margin-bottom: 9px;

}

 @media (max-width: 768px) {
      .abt-grid{
    display: grid;
    grid-template-columns: 1fr;
  
} 
.abt-content h1{
font-size: 1.6rem;

}

    }



       


        /* ── Values Section ── */


        .values-section {
            max-width: 1200px;
            margin: 30px auto;
            padding: 100px 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: sectionFadeIn 0.8s ease-out forwards;
        }

        @keyframes sectionFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── Header ── */
        .values-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .values-heading {
            font-size: clamp(32px, 5vw, 44px);
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #0d0d0d;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .values-heading::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* ── Intro Text (Two Columns) ── */
        .values-intro {
            
            margin-bottom: 10px;
            color: #555555;
            font-size: 17px;
            line-height: 1.8;
        }

        .values-intro p {
            margin: 0;
        }

        /* ── Values Grid (3 columns for 6 cards) ── */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            list-style: none;
            padding: 0;
        }

        /* ── Value Card ── */
        .value-card {
            background: #fafafa;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 40px 24px 36px;
            text-align: center;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        box-shadow 0.35s ease, 
                        border-color 0.35s ease;
            opacity: 0;
            transform: translateY(25px);
            animation: cardRise 0.6s ease-out forwards;
            animation-delay: calc(var(--card-index, 0) * 0.1s);
        }

        @keyframes cardRise {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: rgb(96, 185, 96);
        }

        /* ── Icon Circle ── */
        .value-icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary-color);
            color: #ffffff;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: background 0.3s ease, transform 0.35s ease;
        }

        .value-card:hover .value-icon-circle {
            background: var(--primary-color);
            transform: scale(1.08);
        }

        /* ── Value Title ── */
        .value-title {
            font-size: 20px;
            font-weight: 700;
            color: #0d0d0d;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }

        /* ── Value Description ── */
        .value-desc {
            font-size: 15px;
            color: #777777;
            line-height: 1.6;
            margin: 0;
        }

        /* ── Responsive ── */
        @media (max-width: 1000px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .values-intro {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 500px) {
            .values-section {
                padding: 60px 20px;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
            .value-card {
                padding: 30px 20px;
            }
        }

/*FAQ*/



    /* ========== FULL-WIDTH FAQ SECTION ========== */
    .faq-fullwidth {
      width: 100%;
      background: #f9fdf7;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* organic background accents */
    .faq-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 75% 20%, rgba(26, 104, 50, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(130, 185, 122, 0.04) 0%, transparent 55%);
      pointer-events: none;
      z-index: 1;
    }

    .faq-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1a6832, #82b97a);
      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.05rem;
      max-width: 550px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== FAQ CONTAINER ========== */
    .faq-container {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* ========== FAQ ITEM ========== */
    .faq-item {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid #e8f2e4;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 4px 16px -6px rgba(15, 40, 20, 0.06);
    }

    .faq-item:hover {
      border-color: #cde4c4;
      box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.1);
    }

    .faq-item.active {
      border-color: #b3d9a8;
      box-shadow: 0 12px 32px -10px rgba(15, 55, 25, 0.15);
      background: #fdfefc;
    }

    /* ========== FAQ QUESTION (CLICKABLE) ========== */
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 1.8rem;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      text-align: left;
      gap: 1rem;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #f9fdf7;
    }

    .faq-question:focus {
      outline: none;
      background: #f6fbf4;
    }

    /* question number */
    .faq-number {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #1a6832;
      opacity: 0.5;
      flex-shrink: 0;
      min-width: 36px;
      transition: opacity 0.3s ease;
    }

    .faq-item.active .faq-number {
      opacity: 1;
    }

    /* question text */
    .faq-question-text {
      font-size: 1.05rem;
      font-weight: 600;
      color: #1a2e1a;
      flex-grow: 1;
      line-height: 1.5;
      letter-spacing: -0.2px;
    }

    .faq-item.active .faq-question-text {
      color: #0f2818;
    }

    /* toggle icon */
    .faq-toggle {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f0f7ed;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      color: #1a6832;
      font-size: 0.9rem;
    }

    .faq-item.active .faq-toggle {
      background: #1a6832;
      color: #ffffff;
      transform: rotate(45deg);
      box-shadow: 0 8px 20px -6px rgba(26, 104, 50, 0.45);
    }

    .faq-toggle i {
      transition: transform 0.3s ease;
    }

    /* ========== FAQ ANSWER ========== */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 1.8rem 1.8rem 1.8rem;
      color: #4a5b47;
      font-size: 0.95rem;
      line-height: 1.8;
      padding-left: calc(1.8rem + 36px + 1rem); /* align with question text after number */
    }

    /* ========== BOTTOM CONTACT PROMPT ========== */
    .faq-contact-prompt {
      text-align: center;
      margin-top: 3.5rem;
      padding: 2rem;
      background: #ffffff;
      border-radius: 1.5rem;
      border: 1px solid #e8f2e4;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 16px -6px rgba(15, 40, 20, 0.05);
    }

    .faq-contact-prompt .prompt-icon {
      font-size: 2.2rem;
      color: #1a6832;
      margin-bottom: 0.8rem;
    }

    .faq-contact-prompt h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.4rem;
    }

    .faq-contact-prompt p {
      font-size: 0.93rem;
      color: #5b6b55;
      margin-bottom: 1.2rem;
    }
.read-link{
  display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #1a6832;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 22px -8px rgba(26, 104, 50, 0.4); 
            margin-bottom: 30px;

}
    .prompt-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #1a6832;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 22px -8px rgba(26, 104, 50, 0.4);
    }

    .prompt-link:hover {
      background: #0f4d22;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px -8px rgba(26, 104, 50, 0.55);
    }

    .prompt-link i {
      transition: transform 0.3s ease;
    }

    .prompt-link:hover i {
      transform: translateX(4px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 800px) {
      .faq-fullwidth {
        padding: 3.5rem 2rem;
      }

      .faq-question {
        padding: 1.3rem 1.4rem;
      }

      .faq-question-text {
        font-size: 0.98rem;
      }

      .faq-answer-inner {
        padding: 0 1.4rem 1.5rem 1.4rem;
        padding-left: calc(1.4rem + 36px + 0.8rem);
        font-size: 0.9rem;
      }

      .faq-number {
        font-size: 1.2rem;
        min-width: 30px;
      }

      .faq-toggle {
        width: 34px;
        height: 34px;
      }
    }

    @media (max-width: 550px) {
      .faq-fullwidth {
        padding: 3rem 1.2rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .faq-question {
        padding: 1.1rem 1.1rem;
        gap: 0.6rem;
      }

      .faq-question-text {
        font-size: 0.9rem;
      }

      .faq-number {
        font-size: 1.1rem;
        min-width: 26px;
      }

      .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
      }

      .faq-answer-inner {
        padding: 0 1.1rem 1.3rem 1.1rem;
        padding-left: calc(1.1rem + 26px + 0.6rem);
        font-size: 0.85rem;
        line-height: 1.7;
      }

      .faq-contact-prompt {
        padding: 1.5rem 1.2rem;
        margin-top: 2.5rem;
      }

      .faq-contact-prompt h4 {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 380px) {
      .faq-fullwidth {
        padding: 2.5rem 0.8rem;
      }

      .faq-question {
        padding: 1rem 0.9rem;
      }

      .faq-question-text {
        font-size: 0.82rem;
      }

      .faq-answer-inner {
        padding-left: 1rem;
        font-size: 0.8rem;
      }

      .faq-number {
        display: none;
      }
    }




    






 /*OUR TEAM*/

     

      .leadership-container {
        padding: 40px 20px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h1 {
        font-size: 2.8rem;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 700;
        letter-spacing: -0.5px;
      }

      .section-header p {
        font-size: 1.1rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
      }

      .accent-line {
        height: 4px;
        width: 80px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        margin: 20px auto 0;
        border-radius: 2px;
      }

      /* Leadership Tabs */
      .leadership-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tab-btn {
        padding: 12px 28px;
        background: #e2e8f0;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .tab-btn:hover {
        background: #cbd5e1;
        transform: translateY(-2px);
      }

      .tab-btn.active {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }

      /* Leadership Cards */
      .leadership-content {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .leadership-content.active {
        display: block;
        opacity: 1;
      }

      .leadership-grid {
        display: grid;
        gap: 30px;
      }

      .leader-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
      }

      .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      }

      .leader-img-container {
        height: 180px;
        overflow: hidden;
      }
      .leader-img-container-2 {
        height: 180px;
        overflow: hidden;
      }

      .leader-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .leader-card:hover .leader-img {
        transform: scale(1.05);
      }

      .leader-info {
        padding: 28px;
      }

      .leader-name {
        font-size: 1.5rem;
        color: #1e293b;
        margin-bottom: 5px;
        font-weight: 700;
      }

      .leader-title {
        color: #3b82f6;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.05rem;
      }

      .leader-bio {
        color: #64748b;
        margin-bottom: 20px;
        font-size: 0.95rem;
      }

      .leader-contact {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f1f5f9;
        border-radius: 50%;
        color: #475569;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .contact-link:hover {
        background: #3b82f6;
        color: white;
        transform: scale(1.1);
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .section-header h1 {
          font-size: 2.2rem;
        }

        .leadership-grid {
          grid-template-columns: 1fr;
        }

        .leader-img-container {
          height: 240px;
        }

        .tab-btn {
          padding: 10px 20px;
          font-size: 0.95rem;
        }
      }

      @media (max-width: 480px) {
        .section-header h1 {
          font-size: 1.9rem;
        }

        .leadership-container {
          padding: 20px 0;
        }

        .leader-info {
          padding: 20px;
        }
      }

      /* Animation for tab switching */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .fade-in {
        animation: fadeIn 0.5s ease forwards;
      }

      /* Owner badge styling */
      .owner-badge {
        display: inline-block;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        font-size: 0.75rem;
        padding: 4px 12px;
        border-radius: 20px;
        margin-left: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
      }



      /* OUR CLIENTS */

.Our-clients{
  padding: 50px auto;
}
.Our-clients h3{
font-weight: 800;
font-size: 1rem;
}






      
      .faq-general-heading {
        text-align: center;
        margin-bottom: 40px;
      margin-top: 40px;
      }

      .faq-heading {
        color: var(--primary-color);

        font-size: 2.2rem;
        margin-bottom: 10px;
      }

      .intro {
        color: #64748b;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 20px;
      }

      .search-box {
        max-width: 500px;
        margin: 20px auto;
        position: relative;
      }

      .search-box input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 50px;
        font-size: 1rem;
        transition: all 0.3s;
      }

      .search-box input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(236, 48, 48, 0.2);
      }

      .search-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
      }

      .faq-container {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        margin-bottom: 40px;
      }

      .faq-item {
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.3s;
      }

      .faq-item:last-child {
        border-bottom: none;
      }

      .faq-question {
        padding: 22px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.2s;
        text-align: start;
      }

      .faq-question:hover {
        background-color: #f8fafc;
      }

      .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: black;
        margin-right: 15px;
      }

      .faq-toggle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 0.9rem;
        flex-shrink: 0;
        transition: all 0.3s;
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: all 0.4s ease;
        background-color: #f8fafc;
        text-align: start;
      }

      .faq-answer.active {
        padding: 25px;
        max-height: 1000px;
      }

      .faq-answer p {
        margin-bottom: 15px;
        color: #475569;
        text-align: start;
      }

      /* Numbered List Style for Section 3 */
      .numbered-list {
        padding-left: 0;
        margin-bottom: 15px;
      }

      .numbered-list li {
        margin-bottom: 15px;
        padding-left: 35px;
        position: relative;
        list-style-type: none;
        counter-increment: item;
      }

      .numbered-list li:before {
        content: counter(item);
        position: absolute;
        left: 0;
        top: 0;
        background: #3b82f6;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 600;
      }

      /* Checkmark List Style for Section 6 */
      .checkmark-list {
        padding-left: 0;
        margin-bottom: 15px;
      }

      .checkmark-list li {
        margin-bottom: 15px;
        padding-left: 35px;
        position: relative;
        list-style-type: none;
      }

      .checkmark-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        background: #10b981;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 600;
      }

      /* Regular bullet list for other sections if needed */
      .regular-list {
        padding-left: 20px;
        margin-bottom: 15px;
      }

      .regular-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 10px;
      }

      .regular-list li:before {
        content: "•";
        color: #3b82f6;
        font-weight: bold;
        position: absolute;
        left: -10px;
      }

      .highlight {
        background-color: rgba(255, 255, 0, 0.3);
        padding: 2px 4px;
        border-radius: 3px;
      }

      .statss {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
      }

      .stats-item {
        text-align: center;
        background: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        min-width: 150px;
      }

      .stats-number {
        font-size: 2rem;
        font-weight: 700;
        color: #3b82f6;
        margin-bottom: 5px;
      }

      .stats-label {
        font-size: 0.9rem;
        color: #64748b;
      }

      .no-results {
        text-align: center;
        padding: 40px;
        color: #64748b;
        display: none;
      }

      .no-results i {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #cbd5e1;
      }

      .faq-footer {
        text-align: center;
        margin-top: 40px;
        color: #94a3b8;
        font-size: 0.9rem;
        border-top: 1px solid #e2e8f0;
      }

      .actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-size: 1rem;
      }

      .btn-expand {
        background-color: var(--primary-color);
        color: white;
      }

      .btn-collapse {
        background-color: #f1f5f9;
        color: #475569;
      }

      .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
      }

      @media (max-width: 768px) {
        .faq-heading {
          font-size: 1.7rem;
        }
        .faq-question {
          padding: 18px 10px;
        }

        .faq-question h3 {
          font-size: 1.1rem;
        }

        .faq-answer.active {
          padding-top: 20px;
                    padding-bottom: 20px;

        }

        .stats-item {
          min-width: 120px;
          padding: 12px 15px;
        }
      }



















/*CTA*/
.CTA{
  margin-top: 10px;
 background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.7)
          ),
          url("/images/Jangsheng/IMG-20260420-WA0062.jpg") center/cover no-repeat;

}

.cta-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 30px; 
  color: white;
}

.CTA h3{
text-align: center;
font-size: 1.1rem;
font-family: Poppins, Arial, Helvetica, sans-serif;
font-weight: 400;
}


/*CONTACT*/

.contact-container{
--max-width: 1110px;
  --padding: 0.85rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2      )   );
margin-inline: auto;

}
.contact-container{
  margin-top: 70px;

}
.row{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-details h2{
  font-size: 1.7rem;
}
.contact-details > div{

  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: grey solid 1px;
  padding: 10px;
}
.contact-details > div > span{
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(37, 15, 15);
  padding-left: 2px;
  display: block;
}


.subscribe{
  padding-top: 10px;
}
.sub-heading{
  text-align: center;
  color: #6495ED;
    margin-bottom: 0;

}
.main-heading{
    font-size: 1.4rem;
  margin-top: 10px;
margin-bottom: 0px;
text-align: center;
}
.subscribe p{
  margin-top: 18px;
  text-align: center;
}
form{
position: relative;
  z-index: 1;

}
.email{
  height: 40px;
  width: 290px;
  border-radius: 8px;
  border: grey 1px solid;
  font-family: Kodchasan;
}



.submit-btn{
  position: absolute;
  color: white;
  background-color: var(--primary-color);
  border: none;
  font-size: 12px;
  top: 3px;
  right: 3px;
    border-radius: 8px;
  font-family: Kodchasan;

}



 /* Subscription form with embedded button */
        .subscriptionForm {
            width: 100%;
            margin-bottom: 25px;
        }
        
        .subscriptionForm__label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #444;
        }
        
        .subscriptionForm__container {
            position: relative;
            width: 100%;
            height: 60px;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .subscriptionForm__container:focus-within {
            border-color: #4a6cf7;
            box-shadow: 0 5px 20px rgba(74, 108, 247, 0.2);
        }
        
        .subscriptionForm__input {
            border: none;
            padding: 0 20px;
            font-size: 1rem;
            outline: none;
            background: #f9f9f9;
            width: 100%;
            min-width: 0;
        }
        
        .subscriptionForm__button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .subscriptionForm__button:hover {
            background: linear-gradient(to right, #3a5ce5, #5a0bbb);
            padding-right: 35px;
        }
        
        .subscriptionForm__button:active {
            transform: scale(0.98);
        }
        
        .subscriptionForm__message {
            margin-top: 10px;
            font-size: 0.9rem;
            padding-left: 5px;
            color: #666;
        }
        
        .subscriptionForm__message--success {
            color: #2ecc71;
        }
        
        .subscriptionForm__message--error {
            color: #e74c3c;
        }
        
        .subscriptionFeatures {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .subscriptionFeatures__item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            font-size: 0.95rem;
        }
        
        .subscriptionFeatures__icon {
            color: #4a6cf7;
            font-size: 1.1rem;
        }
      
        
 @media (max-width: 50rem) {
 .subscriptionForm__button span{
display: none;
        }

          }

.icons{
width: 40px;

}
.footer-office{
  padding-bottom: 1px;
}
.footer-address{
  padding: 0;
  font-weight: 300;
}
.divider{
  height: 0.3px;
  width: 100%;
  background-color: #ffffff;
  margin: 15px;
  margin: 0 auto;
}
.terms-grid{
  display: flex;
  justify-content: space-between;

}

 

/*projects*/

 
        /* ── Slider Section ── */
        .project-slider-section {
            width: 100%;
            margin-top: 70px;
            padding-left: 10px;
            padding-right: 10px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: sliderSectionEntrance 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }

        @keyframes sliderSectionEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-heading {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 36px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* ── Slider Container ── */
        .slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            background: #000; /* fallback for image gaps */
        }

        /* The moving track */
        .slider-track {
            display: flex;
            width: 1000%;  /* 10 slides * 100% each */
            animation: slideLoop 25s infinite linear;
        }

        /* Pause animation on hover */
        .slider-wrapper:hover .slider-track {
            animation-play-state: paused;
        }

        /* Each slide: exactly 10% of track -> fills container width */
        .slider-slide {
            flex: 0 0 10%;
            position: relative;
            overflow: hidden;
        }

        .slider-slide img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        /* Subtle zoom on slide hover */
        .slider-slide:hover img {
            transform: scale(1.06);
        }

        /* Dark gradient overlay for depth */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                rgba(0,0,0,0.1) 0%, 
                rgba(0,0,0,0.4) 60%, 
                rgba(0,0,0,0.7) 100%);
            pointer-events: none;
            z-index: 2;
        }

        /* Optional caption on each slide (hidden/not used but can be added) */
        .slide-caption {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: #fff;
            z-index: 3;
            font-weight: 600;
            font-size: 18px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            display: none; /* keep clean, just images */
        }

        /* ── Button ── */
        .projects-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 16px 40px;
            background: var(--primary-color);
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 0.03em;
            box-shadow: 0 10px 25px rgba(118, 235, 118, 0.4);
            transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .projects-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s ease;
        }

        .projects-btn:hover::after {
            left: 100%;
        }

        .projects-btn:hover {
            background: #c1121f;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 18px 35px rgba(193, 18, 31, 0.5);
        }

        /* ── Animation Keyframes ── */
        @keyframes slideLoop {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Half track (500% of container) is the original 5 slides */
                transform: translateX(-50%);
            }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .slider-slide img {
                height: 280px;
            }
            .projects-btn {
                padding: 14px 35px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .slider-slide img {
                height: 220px;
            }
            .section-heading {
                font-size: 26px;
            }
        }













/*Hide Texts*/

.text-container {
  width: 300px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.truncated-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.truncated-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.toggle-btn {
  background: none;
  border: none;
  color: #0066cc;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 10px;
  font-size: 14px;
}

/*Maps*/

.map-container {
  position: relative;
  overflow: hidden;
  width: 100%; /* Container takes full width */
  padding-top: 56.25%; /* This creates the aspect ratio (16:9 = 9/16*100%) */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}




/*  Stylish Image*/

      
     

    
      .image-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
      }

      .image-container {
        width: 100%;
        max-width: 500px;
        position: relative;
        transition: transform 0.5s ease;
      }

      .image-container:hover {
        transform: translateY(-10px);
      }

      .image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.5s ease;
      }

      .image-wrapper:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      }

      .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }

      .image-wrapper:hover img {
        transform: scale(1.05);
      }

      .image-1 {
        z-index: 2;
        transform: rotate(-5deg);
      }

      .image-2 {
        z-index: 1;
        transform: rotate(5deg);
        margin-top: 80px;
      }

      .image-overlap {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 450px;
        margin: 50px auto 0px auto;
        max-width: 900px;
      }

      .overlap-image {
        position: absolute;
        width: 65%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.5s ease;
      }
      .gallery-image{
        margin-top: 50px;
width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      }
      .gallery-image img{
 width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;

      }

      .overlap-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }

      .overlap-image:hover img {
        transform: scale(1.08);
      }

      .overlap-1 {
        top: 0;
        left: 5%;
        z-index: 2;
        transform: rotate(-4deg);
      }

      .overlap-2 {
        top: 50px;
        right: 5%;
        z-index: 1;
        transform: rotate(6deg);
      }

      .overlap-image:hover {
        z-index: 3;
      }

      .image-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 25px 20px 15px;
        transform: translateY(5px);
        opacity: 0;
        transition: all 0.4s ease;
      }

      .overlap-image:hover .image-caption {
        transform: translateY(0);
        opacity: 1;
      }

      .caption-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
      }

      .caption-text {
        font-size: 0.95rem;
        color: #cbd5e1;
      }

      .controls {
        background: rgba(30, 41, 59, 0.8);
        border-radius: 15px;
        padding: 25px;
        max-width: 800px;
        margin: 40px auto;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .controls h2 {
        margin-bottom: 20px;
        color: #60a5fa;
        text-align: center;
      }

      .control-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
      }

      .control-btn {
        background: #475569;
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .control-btn:hover {
        background: #60a5fa;
        transform: translateY(-3px);
      }

      .control-btn.active {
        background: #3b82f6;
      }

     

      @media (max-width: 768px) {
        .image-overlap {
          height: 450px;
        }

        .overlap-image {
          height: 300px;
        }

        .overlap-2 {
          top: 30px;
        }

        

        .image-wrapper {
          height: 320px;
        }
      }

      @media (max-width: 576px) {
        .image-overlap {
          height: 400px;
        }

        .overlap-image {
          height: 250px;
          width: 80%;
        }

        .overlap-1 {
          left: 0;
        }

        .overlap-2 {
          right: 0;
        }
      }


  /* ---------- FOOTER – ---------- */
   

   
    .site-footer { 
      margin-top: 60px;
      width: 100%;
      background: linear-gradient(175deg, #0a2415 0%, #0e301c 40%, #0f381e 100%);
      position: relative;
      overflow: hidden;
      color: #d4e8cc;
    }

    /* ----- Subtle organic background shapes ----- */
    .footer-bg-shape {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .footer-shape-1 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
      top: -15%;
      right: -10%;
      border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
    }

    .footer-shape-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.015) 0%, transparent 70%);
      bottom: -10%;
      left: -8%;
      border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
    }

    /* ========== MAIN FOOTER CONTENT ========== */
    .footer-inner {
      position: relative;
      z-index: 2;
      max-width: 1300px;
      margin: 0 auto;
      padding: 5rem 4rem 3rem 4rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 3rem;
    }

    /* ========== BRAND COLUMN ========== */
    .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
      margin-bottom: 1.5rem;
    }

    .footer-logo-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 14px 4px 14px 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b5f0a0;
      font-size: 1.2rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.4s ease;
    }

    .footer-logo:hover .footer-logo-icon {
      border-radius: 4px 16px 4px 16px;
      background: rgba(255, 255, 255, 0.18);
    }

    .footer-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #f4ffe8;
      letter-spacing: -0.3px;
    }

    .footer-logo-text span {
      color: #82e0a0;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: #b0cfa5;
      margin-bottom: 1.8rem;
      max-width: 300px;
    }

    /* ----- Social Icons ----- */
    .footer-socials {
      display: flex;
      gap: 0.8rem;
    }

    .social-link {
      width: 42px;
      height: 42px;
      border-radius: 12px 3px 12px 3px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c5e6ba;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.35s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-link:hover {
      background: #1a6832;
      color: #ffffff;
      border-radius: 3px 14px 3px 14px;
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    }

    /* ========== LINK COLUMNS ========== */
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.4rem;
      letter-spacing: -0.2px;
      position: relative;
      padding-bottom: 0.8rem;
    }

    .footer-col h4::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: #1a6832;
      border-radius: 2px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .footer-links a {
      color: #b0cfa5;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-links a:hover {
      color: #82e0a0;
      transform: translateX(4px);
    }

    .footer-links a i {
      font-size: 0.6rem;
      color: #1a6832;
      transition: transform 0.3s ease;
    }

    .footer-links a:hover i {
      transform: translateX(2px);
    }

    /* ========== CONTACT COLUMN ========== */
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin-bottom: 1.2rem;
    }

    .contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px 3px 10px 3px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #82e0a0;
      font-size: 0.85rem;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-text {
      font-size: 0.88rem;
      color: #b0cfa5;
      line-height: 1.5;
    }

    .contact-text strong {
      color: #d4e8cc;
      display: block;
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.15rem;
    }

    /* ========== NEWSLETTER ========== */
    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1.2rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.75rem 1rem;
      border-radius: 12px 3px 12px 3px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.04);
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .newsletter-input:focus {
      border-color: #1a6832;
      background: rgba(255, 255, 255, 0.08);
    }

    .newsletter-btn {
      padding: 0.75rem 1.2rem;
      border-radius: 3px 12px 3px 12px;
      background: #1a6832;
      border: none;
      color: #ffffff;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.35s ease;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 6px 18px rgba(26, 104, 50, 0.3);
    }

    .newsletter-btn:hover {
      background: #22803f;
      border-radius: 12px 3px 12px 3px;
      box-shadow: 0 10px 24px rgba(26, 104, 50, 0.5);
      transform: translateY(-2px);
    }

    /* ========== BOTTOM BAR ========== */
    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.8rem 4rem;
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: #7a9a72;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: #7a9a72;
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #82e0a0;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1000px) {
      .footer-inner {
        padding: 4rem 2.5rem 2.5rem 2.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        padding: 1.5rem 2.5rem;
      }
    }

    @media (max-width: 650px) {
      .footer-inner {
        padding: 3.5rem 1.5rem 2rem 1.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.5rem;
        justify-content: center;
      }

      .footer-bottom-links {
        justify-content: center;
        width: 100%;
        padding: 0;
      }

      .footer-col h4 {
        font-size: 1.05rem;
      }
    }

    @media (max-width: 400px) {
      .footer-inner {
        padding: 3rem 1rem 1.5rem 1rem;
      }

      .footer-bottom {
        padding: 1.2rem 1rem;
       
      }

      .social-link {
        width: 38px;
        height: 38px;
      }
    }







































