:root {
  --primary-green: #3c8e42;
  --green-light: #eaf5ef;
  --green-hover: #166a3d;
  --gold: #c9a227;
  --gold-dark: #9c790a;
  --heading-dark: #1a1a1a;
  --text-dark: #3d3d3d;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(30, 123, 75, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);    
  --text-light: #6b6b6b;
  --border-green: rgba(30, 123, 75, 0.25);
  --font-main: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  --card-radius: 12px;
  --logo-width: 180px;
  --logo-height: 150px;
  --gap: 40px;
  --card-radius: 16px;
  --image-size: 150px;
  --Cimage-size: 100px;
  --card-size: 160px;
  --card-size-tablet: 140px;
  --card-size-mobile: 120px;
  --card-size-small: 100px;
  --radius: 16px;
  --radius-sm: 10px;
  --light-bg: #f7faf8;
  --sgrv-form-width: 850px;
  --sgrv-max-width: 1200px;
  
}

/* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      /*min-height: 300vh; /* for scroll demo */
      /*padding-top: 125px; /* header height offset (35+90) */      
    }

    /* ----- HEADER STICKY + WRAPPER ----- */
    .header-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: box-shadow 0.3s ease, background 0.2s;
      background: transparent;
    }

    .header-wrapper.scrolled {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      background: #fff; /* fallback, but top bar & main keep colors */
    }

    .header-wrapper.scrolled .top-bar {
      background: #1c1c1c; /* keep dark */
    }

    .header-wrapper.scrolled .main-header {
      background: #3E8E41; /* keep green */
    }

    /* ----- TOP BAR ----- */
    .top-bar {
      background: #1c1c1c;
      height: 35px;
      display: flex;
      align-items: center;
      color: #ffffff;
      font-size: 0.85rem;
      transition: background 0.2s;
      padding: 0 20px;
    }

    .top-bar .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-left a {
      color: #ffffff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s;
      font-size: 0.8rem;
    }

    .top-left a i {
      font-size: 0.9rem;
      width: 1.1rem;
    }

    .top-left a:hover {
      color: #D9A520;
    }

    .top-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .top-right a {
      color: #ffffff;
      transition: color 0.3s;
      font-size: 1.1rem;
    }

    .top-right a:hover {
      color: #D9A520;
    }

    /* hide top bar on mobile (≤ 992px) */
    @media (max-width: 992px) {
      .top-bar {
        display: none;
      }
      body {
        padding-top: 90px; /* only main header height */
      }
    }

    /* ----- MAIN HEADER (green) ----- */
    .main-header {
      background: #3E8E41;
      height: 100px;
      display: flex;
      align-items: center;
      padding: 0 20px;
      transition: background 0.2s;
    }

    .main-header .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    /* Logo */
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      white-space: nowrap;
    }
    .logo img {
        width: 220px;
    }

    .logo i {
      color: #D9A520;
      font-size: 2rem;
    }

    /* Desktop navigation */
    .nav-desktop {
      display: flex;
      align-items: center;
    }

    .nav-desktop ul {
      display: flex;
      list-style: none;
      gap: 35px;
      align-items: center;
    }

    .nav-desktop ul li {
      position: relative;
    }

    .nav-desktop ul li a {
      color: white;
      text-transform: uppercase;
      font-weight: 600;
      text-decoration: none;
      font-size: 0.9rem;
      padding: 12px 0;
      transition: color 0.3s;
      display: inline-block;
      letter-spacing: 0.3px;
      position: relative;
    }

    /* active menu style */
    .nav-desktop ul li a.active {
      background:var(--gold);
      color: white;
      padding: 12px 22px;
      border-radius: 4px;
      transition: 0.3s;
    }

    .nav-desktop ul li a:not(.active)::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 0;
      height: 2px;
      background: #D9A520;
      transition: width 0.3s ease;
    }

    .nav-desktop ul li a:not(.active):hover::after {
      width: 100%;
    }

    .nav-desktop ul li a:hover {
      color: #D9A520;
    }

    .nav-desktop ul li a.active:hover {
      color: white;
      background: #222;
    }

    /* dropdown */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #2c2c2c;
      min-width: 200px;
      padding: 10px 0;
      border-radius: 6px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: all 0.25s ease;
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
      flex-direction: column;
      gap: 0;
      z-index: 100;
    }

    .nav-desktop ul li:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li {
      width: 100%;
      padding: 0 10px;
    }

    .dropdown-menu li a {
      color: #eee;
      text-transform: none;
      font-weight: 400;
      padding: 8px 14px;
      display: block;
      font-size: 0.85rem;
      border-radius: 4px;
      transition: 0.2s;
    }

    .dropdown-menu li a:hover {
      background: #D9A520;
      color: #222;
    }

    /* CTA Button */
    .cta-btn {
      background: #D9A520;
      color: #1c1c1c;
      padding: 16px 34px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transition: 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .cta-btn:hover {
      background: #222;
      color: white;
    }

    /* ---- HAMBURGER (mobile) ---- */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 2px;
      z-index: 1200;
    }

    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: white;
      border-radius: 4px;
      transition: 0.3s;
    }

    /* Mobile navigation overlay */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 1300;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }

    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      max-width: 80%;
      height: 100vh;
      background: #1c1c1c;
      z-index: 1400;
      padding: 30px 25px;
      transition: right 0.35s ease;
      overflow-y: auto;
      box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    }

    .mobile-nav.open {
      right: 0;
    }

    .mobile-nav .close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      display: flex;
      margin-left: auto;
      padding: 0 0 20px 0;
    }

    .mobile-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-nav ul li a {
      color: #eee;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      padding: 12px 0;
      display: block;
      border-bottom: 1px solid #333;
      transition: 0.2s;
      font-size: 0.95rem;
    }

    .mobile-nav ul li a:hover,
    .mobile-nav ul li a.active-mobile {
      color: #D9A520;
    }

    /* mobile dropdown (collapsible) */
    .mobile-dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #333;
    }

    .mobile-dropdown-toggle a {
      border-bottom: none !important;
    }

    .mobile-dropdown-toggle i {
      color: #D9A520;
      font-size: 1rem;
      cursor: pointer;
      padding: 12px 6px;
    }

    .mobile-submenu {
      padding-left: 18px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .mobile-submenu.open {
      max-height: 300px;
    }

    .mobile-submenu li a {
      text-transform: none;
      font-weight: 400;
      border-bottom: none;
      padding: 8px 0;
      font-size: 0.9rem;
    }

    .mobile-cta {
      margin-top: 25px;
      width: 100%;
      text-align: center;
    }

    .mobile-cta .cta-btn {
      width: 100%;
      text-align: center;
      display: block;
    }

    /* ----- BREAKPOINTS ----- */
    @media (max-width: 992px) {
      .nav-desktop {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .main-header .container {
        flex-wrap: nowrap;
      }
      .cta-btn {
        padding: 12px 20px;
        font-size: 0.75rem;
      }
    }

    @media (max-width: 768px) {
      .main-header {
        height: 90px;
        padding: 0 16px;
      }
      .logo img{
        width: 220px;
      }
      .cta-btn {
        padding: 10px 16px;
        font-size: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .main-header {
        height: 90px;
      }
      .logo img{
        width: 220px;
      }
      .logo i {
        font-size: 1.5rem;
      }
      .cta-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
      }
      .btn-cta {
        display: none !important;
      }
    }

    @media (max-width: 360px) {      
      .logo img{
        width: 220px;
      }
    }
    /* prevent horizontal scroll */
    /* html, body {
      overflow-x: hidden;
    } */

    /* spacer for demo */
    .content-spacer {
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
      color: #222;
    }
    .content-spacer h2 {
      margin-bottom: 20px;
    }

/****==========================
  Why Partner With US
===========================***/


/* ============================================================
               SECTION CONTAINER
============================================================ */
.partner-section {
    /* max-width: 1200px;
    width: 100%; */
    /* background: var(--white); */
    /* border-radius: 24px; */
    padding-top: 60px;
    text-align: center;
    /* ===== ANIMATION: Fade In ===== */
    animation: sectionFadeIn 1s ease forwards;
}
.partner-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  position: relative;
}
@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
        HEADING
    ============================================================ */
.section-header {
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 5vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    /* letter-spacing: 3px; */
    color: var(--heading-dark);
    /* ===== ANIMATION: Fade Down ===== */
    animation: fadeDown 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
        DECORATIVE DIVIDER (Leaf + line)
    ============================================================ */
.divider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0px 0px 20px 0px;
    /* ===== ANIMATION: Zoom In ===== */
    animation: zoomIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.15s;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 4px;
}

.divider-line.left {
    background: linear-gradient(90deg, transparent, var(--primary-green));
}

.divider-line.right {
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

.leaf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.leaf-icon img {
    width: 24px;
    height: 24px;
    fill: var(--primary-green);
}

/* ============================================================
        PARAGRAPH
    ============================================================ */
.section-description {
    max-width: 780px;
    margin: 0 auto 10px;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-dark);
    /* ===== ANIMATION: Fade Up ===== */
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
        FEATURE GRID
    ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

/* ============================================================
        FEATURE CARD
    ============================================================ */
.feature-card {
    padding: 32px 18px 34px;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    /* ===== ANIMATION: Fade Up with stagger ===== */
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}
.feature-card:nth-child(4) {
    animation-delay: 0.8s;
}
.feature-card:nth-child(5) {
    animation-delay: 1.0s;
}

@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Vertical divider (desktop only) ----- */
.feature-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 80%;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(60, 142, 66, 0.5), transparent);
    transition: opacity 0.3s;
}

.feature-card:last-child::after {
    display: none;
}

/* ----- Hover Effects ----- */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--green-light);
}

.feature-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-card:hover .card-title {
    color: var(--primary-green);
}

/* ----- Card inner elements ----- */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform var(--transition);
  color: var(--primary-green);
  /* pulse glow */
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
0%,
100% {
    filter: drop-shadow(0 0 4px rgba(30, 123, 75, 0.15));
}
50% {
    filter: drop-shadow(0 0 14px rgba(30, 123, 75, 0.25));
}
}

.card-icon img {
    width: 60px;
    height: 60px;
    fill: var(--primary-green);
    transition: fill 0.3s;
}

.card-title {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-dark);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.card-desc {
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop: 5 columns, smaller padding */
@media (max-width: 1200px) {
    .partner-section {
        padding: 50px 30px 60px;
    }
    .feature-grid {
        gap: 8px;
    }
    .feature-card {
        padding: 24px 12px 28px;
    }
    .card-icon svg {
        width: 38px;
        height: 38px;
    }
    .divider-line {
        width: 100px;
    }
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .partner-section {
        padding: 20px 24px 0px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .feature-card::after {
        display: none;
    }
    .feature-card {
        padding: 28px 16px 30px;
        border-radius: 16px;
        border: 1px solid rgba(30, 123, 75, 0.06);
    }
    .feature-card:hover {
        border-color: var(--primary-green);
    }
    .section-description {
        margin-bottom: 36px;
    }
    .divider-line {
        width: 60px;
    }
    .leaf-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .partner-section {
        padding: 20px 16px 0px;
        border-radius: 16px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 24px 20px 26px;
        border-radius: 14px;
        border: 1px solid rgba(30, 123, 75, 0.06);
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
    .feature-card::after {
        display: none;
    }
    .feature-card:hover {
        border-color: var(--primary-green);
    }
    .card-desc {
        max-width: 100%;
    }
    .section-description {
        font-size: 0.95rem;
        padding: 0 4px;
    }
    .divider-line {
        width: 60px;
    }
    .leaf-icon svg {
        width: 24px;
        height: 24px;
    }
    .divider-wrap {
        gap: 12px;
    }
    .section-header h2 {
      font-size: 1.6rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .partner-section {
        padding: 20px 12px 0px;
    }
    .feature-card {
        padding: 20px 14px 22px;
    }
    .card-icon svg {
        width: 34px;
        height: 34px;
    }
    .card-title {
        font-size: 0.95rem;
    }
    .card-desc {
        font-size: 0.82rem;
    }
    .divider-line {
        width: 60px;
    }
    .leaf-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
        ACCESSIBILITY: Focus states
    ============================================================ */
.feature-card:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
    transform: translateY(-4px);
}

/* ============================================================
        UTILITY: Gradient underline animation (extra polish)
    ============================================================ */
.section-header h2::after {
    display: none;
    /* kept as optional, not used to match reference */
}

/* Background shimmer on hover (subtle) */
.feature-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shimmer 1.2s ease;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.feature-card:hover .card-icon,
.feature-card:hover .card-title,
.feature-card:hover .card-desc {
    position: relative;
    z-index: 1;
}


/****======================
    PRODUCT SUPPLY
=======================***/
/* ============================================================
    SECTION CONTAINER
============================================================ */
.products-section {
max-width: 1440px;
width: 100%;
background: var(--white);
border-radius: 24px;
padding: 70px 60px 80px;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
/* ===== ANIMATION: Section Fade In ===== */
animation: sectionFadeIn 1s ease forwards;
}

@keyframes sectionFadeIn {
0% {
    opacity: 0;
    transform: translateY(20px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

/* ============================================================
    HEADER ROW (Heading + Button)
============================================================ */
.section-header-row {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 16px;
}

/* ===== TOP BUTTON ===== */
.more-products-btn {
display: inline-flex;
align-items: center;
background: var(--primary-green);
color: var(--white);
border: none;
padding: 14px 36px;
border-radius: 60px;
font-size: clamp(0.9rem, 1vw, 1.05rem);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
cursor: pointer;
transition: all var(--transition);
box-shadow: 0 4px 16px rgba(30, 123, 75, 0.25);
text-decoration: none;
white-space: nowrap;
/* ===== ANIMATION: Slide Left ===== */
animation: slideLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
opacity: 0;
transform: translateX(30px);
animation-delay: 0.15s;
}

@keyframes slideLeft {
0% {
    opacity: 0;
    transform: translateX(30px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}

.more-products-btn:hover {
background: var(--green-hover);
transform: scale(1.05);
box-shadow: 0 8px 28px rgba(30, 123, 75, 0.4);
}

.more-products-btn:focus-visible {
outline: 3px solid var(--gold);
outline-offset: 3px;
}


/* ============================================================
    PRODUCT GRID
============================================================ */
.product-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
margin-top: 20px;
/* margin-bottom: 40px; */
}

/* ============================================================
    PRODUCT CARD
============================================================ */
.product-card {
background: var(--white);
border: 1px solid var(--border-green);
border-radius: var(--card-radius);
overflow: hidden;
transition: all var(--transition);
cursor: pointer;
display: flex;
flex-direction: column;
/* ===== ANIMATION: Card Fade Up with stagger ===== */
opacity: 0;
transform: translateY(40px);
animation: cardFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
border-radius: 10px;
}

.product-card:nth-child(1) {
animation-delay: 0.2s;
}
.product-card:nth-child(2) {
animation-delay: 0.4s;
}
.product-card:nth-child(3) {
animation-delay: 0.6s;
}
.product-card:nth-child(4) {
animation-delay: 0.8s;
}

@keyframes cardFadeUp {
0% {
    opacity: 0;
    transform: translateY(40px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

/* ----- Card Hover ----- */
.product-card:hover {
transform: translateY(-12px);
box-shadow: var(--shadow-hover);
border-color: var(--primary-green);
background: var(--green-light);
}

.product-card:hover .product-image img {
transform: scale(1.08);
}

.product-card:hover .product-title {
color: var(--primary-green);
}

.product-card:hover .read-more .arrow {
transform: translateX(6px);
}

.product-card:hover .read-more::after {
width: 100%;
}

/* ============================================================
    PRODUCT IMAGE
============================================================ */
.product-image {
width: 100%;
padding-top: 75%;
/* 4:3 aspect ratio */
position: relative;
overflow: hidden;
background: #f0f3f2;
}

.product-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition);
/* floating animation */
/* animation: floatImage 4s ease-in-out infinite; */
}

@keyframes floatImage {
0%,
100% {
    transform: translateY(0) scale(1);
}
50% {
    transform: translateY(-6px) scale(1.02);
}
}

.product-card:hover .product-image img {
animation-play-state: paused;
}

/* ============================================================
    PRODUCT CONTENT
============================================================ */
.product-content {
padding: 20px 22px 24px;
display: flex;
flex-direction: column;
flex: 1;
text-align: center;
}

.product-title {
font-size: clamp(1rem, 1.1vw, 1.2rem);
font-weight: 800;
color: var(--heading-dark);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
transition: color var(--transition);
}

.product-desc {
font-size: clamp(0.82rem, 0.9vw, 0.95rem);
line-height: 1.7;
color: var(--text-light);
margin-bottom: 16px;
flex: 1;
}

/* ============================================================
    READ MORE LINK
============================================================ */
.read-more {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary-green);
font-weight: 700;
font-size: 0.9rem;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: color var(--transition);
position: relative;
padding-bottom: 2px;
align-self: center;
}

.read-more::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-green);
transition: width var(--transition);
}

.read-more:hover {
color: var(--green-hover);
}

.read-more:hover::after {
width: 100%;
}

.read-more .arrow {
display: inline-block;
transition: transform var(--transition);
font-size: 1.1rem;
/* arrow pulse animation */
animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
0%,
100% {
    transform: translateX(0);
}
50% {
    transform: translateX(4px);
}
}

.product-card:hover .read-more .arrow {
animation-play-state: paused;
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop: 4 columns */
@media (max-width: 1200px) {
.products-section {
    padding: 50px 30px 60px;
}
.product-grid {
    gap: 24px;
}
.more-products-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
}
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
.products-section {
    padding: 40px 24px 50px;
}
.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.section-header-row {
    flex-direction: column;
    align-items: flex-start;
}
.more-products-btn {
    align-self: flex-start;
}

}

/* Mobile: 1 column */
@media (max-width: 768px) {
.products-section {
    padding: 30px 16px 40px;
    border-radius: 16px;
}
.product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
}
.product-content {
    padding: 16px 18px 20px;
}
.section-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-header h2 {
    text-align: center;
    /* letter-spacing: 2px; */
}
.more-products-btn {
    align-self: center;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
}
.product-title {
    font-size: 1.05rem;
}
.product-desc {
    font-size: 0.88rem;
}
.product-image {
    padding-top: 70%;
}
}

/* Small Mobile */
@media (max-width: 480px) {
.products-section {
    padding: 24px 12px 32px;
}
.product-grid {
    gap: 16px;
}
.product-content {
    padding: 14px 14px 18px;
}
.product-title {
    font-size: 0.95rem;
}
.product-desc {
    font-size: 0.82rem;
}
.read-more {
    font-size: 0.8rem;
}

}

/* ============================================================
    ACCESSIBILITY: Focus states
============================================================ */
.product-card:focus-visible {
outline: 3px solid var(--primary-green);
outline-offset: 4px;
transform: translateY(-4px);
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
.product-image img {
    animation: none !important;
}
.leaf-icon {
    animation: none !important;
}
.read-more .arrow {
    animation: none !important;
}
}

/***=================
    WHO WE ARE 
=================***/
/* ============================================================
    TWO-COLUMN LAYOUT
============================================================ */
.who-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* ============================================================
    LEFT COLUMN (45%)
============================================================ */
.who-content {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: left;
}

.who-content .intro-heading {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: var(--heading-dark);
    line-height: 1.5;
    margin-bottom: 18px;
    /* ===== ANIMATION: Slide Left ===== */
    animation: slideLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateX(-30px);
    animation-delay: 0.2s;
    text-align: left;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.who-content .description {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    text-align: justify;
    /* ===== ANIMATION: Fade Up ===== */
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT US BUTTON ===== */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: clamp(0.95rem, 1vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(30, 123, 75, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* ===== ANIMATION: Zoom In ===== */
    animation: zoomBtn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.4s;
}

@keyframes zoomBtn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.about-btn:hover {
    background: var(--green-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(30, 123, 75, 0.4);
}

.about-btn .arrow-icon {
    display: inline-block;
    transition: transform var(--transition);
    font-size: 1.2rem;
}

.about-btn:hover .arrow-icon {
    transform: translateX(6px);
}

.about-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ===== ABOUT US BUTTON ===== */
.send-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: clamp(0.95rem, 1vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(30, 123, 75, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* ===== ANIMATION: Zoom In ===== */
    animation: zoomBtn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.4s;
}

@keyframes zoomBtn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.send-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(30, 123, 75, 0.4);
}

.send-btn .arrow-icon {
    display: inline-block;
    transition: transform var(--transition);
    font-size: 1.2rem;
}

.send-btn:hover .arrow-icon {
    transform: translateX(6px);
}

.send-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================================
    RIGHT COLUMN (55%) - Image Gallery
============================================================ */
.who-images {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    /* ===== ANIMATION: Fade Right ===== */
    animation: fadeRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateX(30px);
    animation-delay: 0.25s;
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
    MAIN CIRCULAR IMAGE (Center)
============================================================ */
.main-image {
    /* width: 380px;
    height: 380px;
    border-radius: 50%; */
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    position: relative;
    z-index: 2;
    /* border: 4px solid var(--white); */
    /* floating animation */
    /* animation: floatMain 8s ease-in-out infinite; */
    transition: all var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

/* @keyframes floatMain {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-14px) scale(1.02);
        box-shadow: 0 20px 48px rgba(30, 123, 75, 0.2);
    }
} */

/* .main-image:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 48px rgba(30, 123, 75, 0.3);
    animation-play-state: paused;
} */

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

/* .main-image:hover img {
    transform: scale(1.08);
} */

/* ============================================================
    SMALL CIRCULAR IMAGES (Floating around)
============================================================ */
.small-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
    transition: all var(--transition);
    cursor: pointer;
    z-index: 3;
}

.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.small-image:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 16px 40px rgba(30, 123, 75, 0.25);
    z-index: 5;
    animation-play-state: paused;
}

.small-image:hover img {
    transform: scale(1.08);
}

/* ----- Top Right Small Image ----- */
.small-top-right {
    top: 15px;
    right: 160px;
    animation: floatTopRight 6s ease-in-out infinite;
    /* ===== ANIMATION: Appear ===== */
    opacity: 0;
    animation: floatTopRight 6s ease-in-out infinite, appearDelay 0.6s forwards;
    animation-delay: 0s, 0.3s;
}

@keyframes floatTopRight {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -12px) rotate(3deg);
    }
}

/* ----- Left Small Image ----- */
.small-left {
    bottom: 110px;
    left: 50px;
    animation: floatLeft 7s ease-in-out infinite;
    opacity: 0;
    animation: floatLeft 7s ease-in-out infinite, appearDelay 0.6s forwards;
    animation-delay: 0s, 0.6s;
}

@keyframes floatLeft {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-12px, 10px) rotate(-3deg);
    }
}

/* ----- Bottom Small Image ----- */
.small-bottom {
    bottom: 24px;
    right: 130px;
    animation: floatBottom 5s ease-in-out infinite;
    opacity: 0;
    animation: floatBottom 5s ease-in-out infinite, appearDelay 0.6s forwards;
    animation-delay: 0s, 0.9s;
}

@keyframes floatBottom {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.06) rotate(2deg);
    }
}

@keyframes appearDelay {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop */
@media (max-width: 1200px) {
    .who-section {
        padding: 50px 30px 60px;
    }
    .who-grid {
        gap: 40px;
    }
    .main-image {
        width: 320px;
        height: 330px;
    }
    .small-image {
        width: 120px;
        height: 120px;
    }
    .small-top-right {
        top: 0px;
        right: 20px;
    }
    .small-left {
        bottom: 40px;
        left: 0px;
    }
    .small-bottom {
        bottom: -10px;
        right: 40px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .who-section {
        padding: 40px 24px 50px;
    }
    .who-grid {
        flex-direction: column;
        gap: 40px;
    }
    .who-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .who-images {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 450px;
        justify-content: center;
    }
    .main-image {
        width: 430px;
        height: 440px;
    }
    .small-image {
        width: 110px;
        height: 110px;
    }
    .small-top-right {
        top: -5px;
        right: 20px;
    }
    .small-left {
        bottom: 30px;
        left: 10px;
    }
    .small-bottom {
        bottom: -5px;
        right: 40px;
    }
    .about-btn {
        justify-content: center;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .who-section {
        padding: 30px 16px 40px;
        border-radius: 16px;
    }
    .who-grid {
        gap: 32px;
    }
    .who-content .intro-heading {
        text-align: center;
    }
    .who-content .description {
        text-align: center;
    }
    .main-image {
        width: 430px;
        height: 440px;
    }
    .small-image {
        width: 90px;
        height: 90px;
    }
    .small-top-right {
        top: 0px;
        right: 10px;
    }
    .small-left {
        bottom: 20px;
        left: 5px;
    }
    .small-bottom {
        bottom: 0px;
        right: 20px;
    }
    .who-images {
        min-height: 450px;
    }
    .about-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    .who-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .who-section {
        padding: 24px 12px 32px;
    }
    .main-image {
        width: 330px;
        height: 340px;
    }
    .small-image {
        width: 75px;
        height: 75px;
    }
    .small-top-right {
        top: 5px;
        right: 5px;
    }
    .small-left {
        bottom: 15px;
        left: 2px;
    }
    .small-bottom {
        bottom: 5px;
        right: 15px;
    }
    .who-images {
        min-height: 350px;
    }
    .who-content .intro-heading {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }
    .about-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
        max-width: 60%;
    }
}

@media (max-width: 375px) {
    .main-image {
        width: 290px;
        height: 280px;
    }
    .small-image {
        width: 65px;
        height: 65px;
    }
    .small-top-right {
        top: 10px;
        right: 2px;
    }
    .small-left {
        bottom: 10px;
        left: 0px;
    }
    .small-bottom {
        bottom: 10px;
        right: 10px;
    }
    .who-images {
        min-height: 300px;
    }
}

@media (max-width: 320px) {
    .main-image {
        width: 230px;
        height: 240px;
    }
    .small-image {
        width: 55px;
        height: 55px;
    }
    .small-top-right {
        top: 15px;
        right: 0px;
    }
    .small-left {
        bottom: 5px;
        left: 0px;
    }
    .small-bottom {
        bottom: 5px;
        right: 5px;
    }
    .who-images {
        min-height: 300px;
    }
}

/* ============================================================
    ACCESSIBILITY: Focus states
============================================================ */
.main-image:focus-visible,
.small-image:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .main-image,
    .small-image {
        animation: none !important;
    }
    .leaf-icon {
        animation: none !important;
    }
    .small-top-right,
    .small-left,
    .small-bottom {
        animation: none !important;
        opacity: 1 !important;
    }
}

/***=========================
        OUR CERTIFICATION
=======================*****/

.ourcertificationbg {    
    background-image: url('/images/OurCertificationBG.webp');
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    background-attachment: scroll;
    padding: 50px 0;
    margin-top: 50px;    
}
.ourcertificationbg .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
 @keyframes sectionFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes bgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
 /* ============================================================
    HEADER
============================================================ */
.section-header-Cer h2 {
    font-size: clamp(2rem, 5vw, 1.2rem);
    font-weight: 900;
    text-transform: uppercase;    
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    /* ===== ANIMATION: Fade Down ===== */
    animation: fadeDown 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
    DECORATIVE DIVIDER (Leaf + line)
============================================================ */
.divider-wrap-cer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 12px auto 24px;
    /* ===== ANIMATION: Zoom In ===== */
    animation: zoomIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.15s;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.divider-wrap-cer .divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    border-radius: 4px;
}

.divider-wrap-cer .divider-line.left {
    background: linear-gradient(90deg, transparent, var(--white));
}

.divider-wrap-cer .divider-line.right {
    background: linear-gradient(90deg, var(--white), transparent);
}

.divider-wrap-cer .leaf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.divider-wrap-cer .leaf-icon img {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

/* ============================================================
    SECTION DESCRIPTION
============================================================ */
.section-description-cer {
    max-width: 780px;
    margin: 0 auto 48px;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
    /* ===== ANIMATION: Fade Up ===== */
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 0.25s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================
           CERTIFICATION GRID
============================================================ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: center;
}

/* ============================================================
    CERTIFICATION CARD (Circular)
============================================================ */
.cert-card {
    width: var(--card-size);
    height: var(--card-size);
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    /* ===== ANIMATION: Card Fade Up with stagger ===== */
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    /* ===== FLOATING ANIMATION with different delays ===== */
    animation: cardFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        floatCard 6s ease-in-out infinite;
}

.cert-card:nth-child(1) {
    animation-delay: 0.2s, 0s;
}
.cert-card:nth-child(2) {
    animation-delay: 0.4s, 0.5s;
}
.cert-card:nth-child(3) {
    animation-delay: 0.6s, 1s;
}
.cert-card:nth-child(4) {
    animation-delay: 0.8s, 1.5s;
}
.cert-card:nth-child(5) {
    animation-delay: 1.0s, 2s;
}

@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== Card Hover ===== */
.cert-card:hover {
    transform: translateY(-12px) scale(1.08) !important;
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
    animation-play-state: paused;
}

.cert-card:hover .cert-logo {
    transform: scale(1.08);
}

/* ===== Glow border animation ===== */
.cert-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--gold), var(--primary-green));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    animation: gradientBorder 4s ease-in-out infinite;
}

.cert-card:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================================
    CERTIFICATION LOGO / ICON
============================================================ */
.cert-logo {
    width: 60%;
    height: auto;
    max-height: 60%;
    object-fit: contain;
    display: block;
    transition: transform var(--transition);
}

.cert-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-align: center;
    line-height: 1.2;
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop */
@media (max-width: 1400px) {
    :root {
        --card-size: 150px;
    }
    .cert-section {
        padding: 60px 30px 80px;
    }
    
}

@media (max-width: 1200px) {
    :root {
        --card-size: 140px;
    }
    .cert-grid {
        gap: 24px;
    }
    .cert-section {
        padding: 50px 24px 70px;
    }
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    :root {
        --card-size: 150px;
    }
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .cert-section {
        padding: 40px 20px 60px;
    }    
}

/* Mobile Large: 2 columns */
@media (max-width: 768px) {
    :root {
        --card-size: 130px;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    .cert-section {
        padding: 32px 16px 48px;
        min-height: auto;
    }    
}

/* Small Mobile: 1 column */
@media (max-width: 576px) {
    :root {
        --card-size: 140px;
    }
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 320px;
    }
    .cert-section {
        padding: 28px 12px 40px;
    }
    .section-header h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }   
    .cert-name {
        font-size: 0.6rem;
    }
}

@media (max-width: 375px) {
    :root {
        --card-size: 120px;
    }
    .cert-grid {
        max-width: 280px;
        gap: 20px;
    }
    .cert-section {
        padding: 20px 8px 32px;
    }
}

@media (max-width: 320px) {
    :root {
        --card-size: 110px;
    }
    .cert-grid {
        max-width: 240px;
        gap: 16px;
    }
    .cert-section {
        padding: 16px 8px 28px;
    }
    .cert-name {
        font-size: 0.55rem;
    }
}

/* ============================================================
    ACCESSIBILITY: Focus states
============================================================ */
.cert-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 6px;
    transform: scale(1.05);
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .cert-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .leaf-icon {
        animation: none !important;
    }
    .cert-section::before {
        animation: none !important;
    }
    .cert-card:hover {
        transform: translateY(-8px) scale(1.05) !important;
    }
}

/***====================
    OUR CLIENT 
===================****/
 /* ============================================================
    LOGO SLIDER WRAPPER
============================================================ */
.Cslider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* ============================================================
    LOGO TRACK
============================================================ */
.logo-track {
    display: flex;
    gap: var(--gap);
    width: max-content;
    will-change: transform;
    transition: transform 0.05s linear;
    cursor: grab;
}

.logo-track.dragging {
    cursor: grabbing;
    transition: none;
}

/* ============================================================
    LOGO CARD
============================================================ */
.logo-card {
    flex: 0 0 var(--logo-width);
    height: var(--logo-height);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    position: relative;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--transition);
    filter: grayscale(0%);
}

.logo-card:hover img {
    transform: scale(1.05);
}

/* ============================================================
    NAVIGATION ARROWS
============================================================ */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-dark);
    font-size: 18px;
    padding: 0;
    display: none;
}

.slider-nav:hover {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(30, 123, 75, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: -22px;
}
.slider-nav.next {
    right: -22px;
}

.slider-nav:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================================
    PAGINATION DOTS
============================================================ */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 123, 75, 0.2);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.pagination-dots .dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
    box-shadow: 0 0 16px rgba(30, 123, 75, 0.3);
}

.pagination-dots .dot:hover {
    background: var(--primary-green);
    transform: scale(1.15);
}

.pagination-dots .dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */
@media (max-width: 1400px) {
    .logo-slider-section {
        padding: 50px 40px 60px;
    }
    .slider-nav.prev {
        left: 10px;
    }
    .slider-nav.next {
        right: 10px;
    }
}

@media (max-width: 1200px) {
    /* :root {
        --logo-width: 160px;
        --logo-height: 80px;
        --gap: 20px;
    } */
    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .slider-nav.prev {
        left: -12px;
    }
    .slider-nav.next {
        right: -12px;
    }
}

@media (max-width: 992px) {
    :root {
        --logo-width: 220px;
        --logo-height: 120px;
        --gap: 18px;
    }
    .logo-slider-section {
        padding: 40px 30px 50px;
    }
    .slider-nav {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .slider-nav.prev {
        left: -8px;
    }
    .slider-nav.next {
        right: -8px;
    }
}

@media (max-width: 768px) {
    /* :root {
        --logo-width: 130px;
        --logo-height: 70px;
        --gap: 16px;
    } */
    .logo-slider-section {
        padding: 32px 20px 40px;
        border-radius: 16px;
    }
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .slider-nav.prev {
        left: -4px;
    }
    .slider-nav.next {
        right: -4px;
    }
    .pagination-dots {
        gap: 8px;
        margin-top: 18px;
    }
    .pagination-dots .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    /* :root {
        --logo-width: 130px;
        --logo-height: 70px;
        --gap: 14px;
    } */
    .logo-slider-section {
        padding: 24px 14px 32px;
    }
    .slider-nav {
        display: none;
    }
    .logo-card {
        padding: 12px;
    }
}

@media (max-width: 425px) {
    /* :root {
        --logo-width: 110px;
        --logo-height: 60px;
        --gap: 12px;
    } */
    .logo-slider-section {
        padding: 20px 10px 28px;
    }
    .section-header h2 {
        font-size: 1.4rem;
    }
    .section-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    /* :root {
        --logo-width: 100px;
        --logo-height: 55px;
        --gap: 10px;
    } */
    .logo-slider-section {
        padding: 16px 8px 24px;
    }
}

@media (max-width: 320px) {
    /* :root {
        --logo-width: 90px;
        --logo-height: 50px;
        --gap: 8px;
    } */
    .logo-slider-section {
        padding: 14px 6px 20px;
    }
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        transition: none !important;
        animation: none !important;
    }
    .logo-card:hover {
        transform: none !important;
    }
    .logo-card:hover img {
        transform: none !important;
    }
}

/* ============================================================
    ACCESSIBILITY: Focus states
============================================================ */
.logo-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/*================================================
    OUR CLIENT SAYS
===============================================**/
/* ============================================================
    TESTIMONIAL GRID
============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 25px;
}

/* ============================================================
    TESTIMONIAL CARD
============================================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--card-radius);
    border: 1px solid rgba(30, 123, 75, 0.15);
    box-shadow: var(--shadow-lg);
    width: 50%;
    margin: 0 auto;
    padding: 32px 32px 36px;
    display: flex;
    gap: 24px;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    /* ===== ANIMATION: Card Slide Up with stagger ===== */
    opacity: 0;
    transform: translateY(40px);
    animation: cardSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.3s;
}
.testimonial-card:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes cardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Card Hover ===== */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.testimonial-card:hover .client-image {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 0 4px var(--primary-green), 0 8px 24px rgba(30, 123, 75, 0.3);
}

.testimonial-card:hover .client-name {
    color: var(--primary-green);
}

/* ===== Glow border animation ===== */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--card-radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-green), var(--gold), var(--primary-green));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    animation: gradientBorder 4s ease-in-out infinite;
}

.testimonial-card:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================================
    CLIENT IMAGE
============================================================ */
.client-image-wrap {
    flex-shrink: 0;
    margin: 0 auto;
}

.client-image {
    /* width: var(--image-size);
    height: var(--image-size); */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
    /* ===== FLOATING ANIMATION ===== */
    animation: floatImage 5s ease-in-out infinite;
}

.testimonial-card:nth-child(1) .client-image {
    animation-delay: 0s;
}
.testimonial-card:nth-child(2) .client-image {
    animation-delay: 0.5s;
}

@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.testimonial-card:hover .client-image {
    animation-play-state: paused;
}

/* ============================================================
    CLIENT INFO & TESTIMONIAL
============================================================ */
.client-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: text;
}

.client-name {
    font-size: clamp(2rem, 0.5vw, 0.5rem);
    font-weight: 800;
    color: var(--heading-dark);
    transition: color var(--transition);
    margin-bottom: 0px;
}

.client-designation {
    font-size: clamp(1.2rem, 0.85vw, 0.9rem);
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.client-testimonial {
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/*.client-testimonial::before {
    content: '\201C';
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-right: 4px;
}

.client-testimonial::after {
    content: '\201D';
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-left: 4px;
}*/

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop */
@media (max-width: 1400px) {
    .testimonials-section {
        padding: 50px 30px 60px;
    }
    .testimonial-grid {
        gap: 30px;
    }
    .testimonial-card {
        padding: 20px 20px 20px;
    }
}

@media (max-width: 1200px) {
    .testimonial-card {
        padding: 24px 24px 28px;
        gap: 20px;
    }
    :root {
        --image-size: 70px;
    }
}

/* Tablet: 1 column */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 40px 24px 50px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 700px;
        margin: 0 auto 40px;
    }
    .testimonial-card {
        padding: 28px 28px 32px;
        gap: 24px;
    }
    :root {
        --image-size: 76px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 16px 40px;
        border-radius: 16px;
    }
    .testimonial-grid {
        gap: 24px;
        max-width: 500px;
    }
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px 28px;
        gap: 16px;
        width: 100%;
    }
    :root {
        --image-size: 80px;
    }
    .client-info {
        align-items: center;
    }
    .view-more-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .client-testimonial::before,
    .client-testimonial::after {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 24px 12px 32px;
    }
    .testimonial-grid {
        gap: 20px;
        max-width: 380px;
    }
    .testimonial-card {
        padding: 20px 16px 24px;
    }
    :root {
        --image-size: 70px;
    }
    .client-name {
        font-size: 1rem;
    }
    .client-designation {
        font-size: 0.78rem;
    }
    .client-testimonial {
        font-size: 0.85rem;
    }
    .view-more-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .testimonials-section {
        padding: 20px 8px 28px;
    }
    .testimonial-grid {
        gap: 16px;
        max-width: 320px;
    }
    .testimonial-card {
        padding: 16px 12px 20px;
    }
    :root {
        --image-size: 60px;
    }
}

@media (max-width: 320px) {
    .testimonial-grid {
        max-width: 280px;
    }
    :root {
        --image-size: 55px;
    }
}

/* ============================================================
    ACCESSIBILITY: Focus states
============================================================ */
.testimonial-card:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
    transform: translateY(-4px);
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .testimonial-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .client-image {
        animation: none !important;
    }
    .leaf-icon {
        animation: none !important;
    }
    .testimonial-card:hover {
        transform: translateY(-6px) !important;
    }
    .client-image:hover {
        transform: scale(1.05) !important;
    }
}

/*****=================================
    FOOTER
=================================*****/
/* ============================================================
    FOOTER SECTION
============================================================ */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px 0;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 50px;
    /* padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

/* ============================================================
    FOOTER COLUMN
============================================================ */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: clamp(1.2rem, 1.1vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;    
    color: var(--white);
    margin-bottom: 18px;
    font-style: normal;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li .leaf-icon {
    width: 14px;
    height: 14px;
    fill: var(--white);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    transition: all var(--transition);
    position: relative;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-links li a:hover+.leaf-icon,
.footer-links li:hover .leaf-icon {
    transform: translateX(4px);
}

/* ============================================================
    CONTACT COLUMN
============================================================ */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    line-height: 1.6;
    font-style: normal;
}

.contact-item .contact-icon {
    width: 18px;
    height: 18px;
    fill: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
    font-style: normal;
}

.contact-item a:hover {
    color: var(--white);
}

/* ============================================================
    LOGO COLUMN
============================================================ */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    /* width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    /* border: 2px solid rgba(255, 255, 255, 0.15); */
    transition: all var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.footer-logo svg {
    width: 50px;
    height: 50px;
    fill: var(--gold);
}

.footer-company-name {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================================
    SOCIAL ICONS
============================================================ */
.social-icons {
    display: flex;
    gap: 16px;
    /* margin-top: 16px; */
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition);
    color: var(--white);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
    color: var(--primary-green);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill var(--transition);
}

.social-icons a:hover svg {
    fill: var(--primary-green);
}

/* ============================================================
    COPYRIGHT BAR
============================================================ */
.copyright-bar {
    background: #1a1a1a;
    padding: 18px 60px;
    text-align: center;
    color: var(--white);
    font-size: clamp(0.8rem, 0.85vw, 0.9rem);
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-bar span {
    /* color: var(--gold); */
    color: var(--white);
}

/* ============================================================
    FLOATING BUTTONS (WhatsApp + Back to Top)
============================================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    align-items: flex-end;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--heading-dark);
    font-size: 25px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    /* ===== FLOATING + PULSE ANIMATION ===== */
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-6px) scale(1.06);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-green);
}

/* ===== RIPPLE for WhatsApp ===== */
.whatsapp-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    text-decoration: none;
}

.back-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-top-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.back-top-btn:hover svg {
    transform: rotate(-10deg);
}

.back-top-btn i {
    font-size: 18px;
    color: var(--heading-dark);
    transition: transform var(--transition);
}

.back-top-btn:focus-visible,
.whatsapp-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================================
    RESPONSIVE BREAKPOINTS
============================================================ */

/* Laptop */
@media (max-width: 1400px) {
    /* .site-footer {
        padding: 50px 40px 0;
    } */
    .footer-container {
        gap: 30px 40px;
    }
    .copyright-bar {
        padding: 16px 40px;
    }
}

@media (max-width: 1200px) {
    .footer-container {
        gap: 30px 30px;
    }
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .site-footer {
        padding: 40px 30px 0;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-logo-col {
        align-items: flex-start;
        text-align: left;
    }
    .social-icons {
        justify-content: flex-start;
    }
    .copyright-bar {
        padding: 14px 30px;
    }
    .floating-buttons {
        bottom: 24px;
        right: 24px;
    }
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    .back-top-btn {
        width: 44px;
        height: 44px;
    }
    .back-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .site-footer {
        padding: 32px 20px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .footer-links li {
        justify-content: center;
    }
    .footer-logo-col {
        align-items: center;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .copyright-bar {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 14px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
    .back-top-btn {
        width: 40px;
        height: 40px;
    }
    .back-top-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 24px 14px 0;
    }
    .footer-container {
        gap: 24px;
    }
    .footer-logo {
        width: 64px;
        height: 64px;
    }
    .footer-logo svg {
        width: 38px;
        height: 38px;
    }
    .social-icons a {
        width: 36px;
        height: 36px;
    }
    .social-icons a svg {
        width: 16px;
        height: 16px;
    }
    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }
    .whatsapp-btn {
        width: 46px;
        height: 46px;
    }
    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
    .back-top-btn {
        width: 36px;
        height: 36px;
    }
    .back-top-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .whatsapp-btn {
        animation: none !important;
    }
    .dummy-content .scroll-indicator {
        animation: none !important;
    }
}

/*****=============================================
    SLIDER CSS
================================================**/
/* ===== SLIDER WRAPPER ===== */
    .slider-wrapper {
      width: 100%;
      max-width: 1920px;
      position: relative;
      overflow: hidden;
      /* border-radius: 28px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.5); */
      background: #000000;      
    }

    /* ===== SLIDER CONTAINER ===== */
    .rev-slider {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
      background: #000000;
    }

    /* ===== SLIDES TRACK ===== */
    .slides-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    /* ===== SINGLE SLIDE ===== */
    .slide {
      flex: 0 0 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 30px;
      position: relative;
      overflow: hidden;
      will-change: transform;
    }

    /* gradients per slide */
    /* .slide[data-gradient="1"] { background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%); }
    .slide[data-gradient="2"] { background: linear-gradient(135deg, #1A2980 0%, #26D0CE 100%); }
    .slide[data-gradient="3"] { background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%); }
    .slide[data-gradient="4"] { background: linear-gradient(135deg, #3A1C71 0%, #D76D77 50%, #FFAF7B 100%); }
    .slide[data-gradient="5"] { background: linear-gradient(135deg, #11998E 0%, #38EF7D 100%); } */

    /* ===== BACKGROUND IMAGE (instant pop, no slide) ===== */
    .slide-bg-image {
      position: absolute;
      /* right: 5%; */
      top: 50%;
      transform: translateY(-50%) scale(0.95);
      opacity: 0.9;
      z-index: 0;
      pointer-events: none;
      max-height: 450px;
      width: auto;
      transition: opacity 0.5s ease;
      filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    }

    /* image appears instantly when slide is active (no slide animation) */
    .slide.active .slide-bg-image {
      opacity: 0.5;
      transform: translateY(-50%) scale(1);
      transition: opacity 0.4s ease;
    }

    /* subtle floating effect */
    .slide.active .slide-bg-image {
      animation: floatBg 5s ease-in-out infinite alternate;
    }

    @keyframes floatBg {
      0% { transform: translateY(-50%) translateX(0) scale(1); }
      100% { transform: translateY(-50%) translateX(-15px) scale(1.03); }
    }

    /* ===== CENTERED CONTENT ===== */
    .slide-content {
      color: #fff;
      z-index: 2;
      max-width: 780px;
      width: 100%;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .slide.active .slide-content {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-subtitle {
      font-weight: 600;
      font-size: 22px;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.8;
      margin-bottom: 12px;
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.1s;
      opacity: 0;
    }

    .slide-heading {
      font-size: 40px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 14px;      
      animation: slideLeft 0.8s ease forwards;
      animation-delay: 0.2s;
      opacity: 0;
      transform: translateX(-40px);
    }

    /* .slide-desc {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.6;
      max-width: 400px;
      margin: 0 auto 28px;
      opacity: 0.9;
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    } */
    .slide-desc ul {
        position: relative;
        padding: 0;
        margin: 0 0 20px 0;
        text-align: center;
    }
    .slide-desc ul li {
        list-style: none;
        line-height: 1.8;
        animation: fadeUp 0.7s ease forwards;
        animation-delay: 0.3s;
        opacity: 0;
    }
    /* ===== SINGLE BUTTON (centered, #1e7b4b) ===== */
    .slide-button-wrapper {
      animation: zoomIn 0.6s ease forwards;
      animation-delay: 0.4s;
      opacity: 0;
      transform: scale(0.8);
      display: flex;
      justify-content: center;
    }

    .btn {
      display: inline-block;
      padding: 14px 44px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      background:var(--primary-green);
      color: #fff;
      box-shadow: 0 8px 22px rgba(30, 123, 75, 0.4);
    }

    .btn:hover {
      transform: scale(1.06) translateY(-3px);
      box-shadow: 0 14px 30px rgba(30, 123, 75, 0.5);
      background: #1a6a3f;
    }

    .btn .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      transform: scale(0);
      animation: rippleAnim 0.6s linear;
      pointer-events: none;
    }

    @keyframes rippleAnim {
      to { transform: scale(4); opacity: 0; }
    }

    /* ===== PROGRESS BAR ===== */
    /* .progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      height: 4px;
      background: rgba(255,255,255,0.5);
      z-index: 20;
      width: 0%;
      transition: width 0.1s linear;
      border-radius: 0 4px 4px 0;
      background: linear-gradient(90deg, #1e7b4b, #38ef7d);
      box-shadow: 0 0 12px #1e7b4b88;
    } */

    /* ===== NAVIGATION ARROWS ===== */
    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 15;
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .nav-arrow:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-50%) scale(1.08);
    }

    .nav-arrow.prev { left: 20px; }
    .nav-arrow.next { right: 20px; }

    /* ===== PAGINATION DOTS ===== */
    .dots-container {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 15;
      background: rgba(0,0,0,0.25);
      backdrop-filter: blur(4px);
      padding: 8px 16px;
      border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      padding: 0;
    }

    .dot.active {
      background: #1e7b4b;
      transform: scale(1.3);
      box-shadow: 0 0 16px #1e7b4baa;
    }

    .dot:hover {
      background: #1e7b4b;
      transform: scale(1.2);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideLeft {
      0% { opacity: 0; transform: translateX(-40px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes zoomIn {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .rev-slider { height: 300px; }
      .slide-heading { font-size: 42px; }
      .slide-desc { font-size: 16px; }
      .slide-bg-image { max-height: 100%; }      
    }

    @media (max-width: 768px) {
      .rev-slider { height: auto; min-height: 400px; }
      .slide { padding: 30px 20px; height: auto; min-height: 400px; }
      .slide-heading { font-size: 30px; }
      .slide-desc { font-size: 15px; max-width: 100%; padding: 0 40px;}
      .btn { padding: 12px 32px; font-size: 0.9rem; }
      .nav-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
      .nav-arrow.prev { left: 8px; }
      .nav-arrow.next { right: 8px; }
      .dots-container { bottom: 10px; padding: 6px 14px; gap: 10px; }
      /* .slider-wrapper { border-radius: 18px; }
      .slide-bg-image { display: none; } */
    }

    @media (max-width: 480px) {
      .rev-slider { height: auto; min-height: 300px; }
      .slide { padding: 30px 20px; height: auto; min-height: 300px; }
      .slide-heading { font-size: 28px; }
      .slide-desc { font-size: 14px; }
      .btn { padding: 10px 26px; font-size: 0.85rem; }
    }


/* =============================================
    FULL-WIDTH BANNER (background covers entire viewport width)
============================================= */
.about-bg {
    background-image: url('../images/AboutusBG.webp');
}
.contact-bg {
    background-image: url('../images/ContactusBG.webp');
}
.ragipowder-bg {
    background-image: url('../images/Product/RagiPowder-TopHeader.webp');
}
.moringapowderhead-bg {
    background-image: url('../images/Product/MoringaPowderDetailHead.webp');
}
.gingerpowderhead-bg {
    background-image: url('../images/Product/GingerPowderDetailHead.webp');
}
.BeetrootPowderHead-bg {
    background-image: url('../images/Product/BeetrootPowderDetailHead.webp');
}
.FreezeDriedFruitsHead-bg {
    background-image: url('../images/Product/FreezeDriedFruitsHead.webp');
}
.OnionPowderHead-bg {
    background-image: url('../images/Product/OnionPowderHead.webp');
}
.GarlicPowderHead-bg {
    background-image: url('../images/Product/GarlicPowderHead.webp');
}
.TomatoPowderHead-bg {
    background-image: url('../images/Product/TomatoPowderHead.webp');
}
.PotatoPowderHead-bg {
    background-image: url('../images/Product/PotatoPowderHead.webp');
}
.BananaPowderHead-bg {
    background-image: url('../images/Product/BananaPowderHead.webp');
}
.CurryPowderHead-bg {
    background-image: url('../images/Product/CurryPowderHead.webp');
}
.CorianderLeavesPowderHead-bg {
    background-image: url('../images/Product/CorianderLeavesPowderHead.webp');
}
.AshGourdPowderDetail-bg {
    background-image: url('../images/Product/AshGourdPowderDetail.webp');
}
.about-banner {
    position: relative;
    width: 100%;
    /* height: 200px; */
    /* desktop height: 380–450px */    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;    
}

/* Dark overlay (30% opacity) - full width */
.about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    /* 30% dark overlay */
    z-index: 1;
    pointer-events: none;
}
.product-banner {
    position: relative;
    width: 100%;
    /* height: 200px; */
    /* desktop height: 380–450px */    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;    
}

/* Dark overlay (30% opacity) - full width */
.product-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    /* 30% dark overlay */
    z-index: 1;
    pointer-events: none;
}

.product-banner-image{
    background-image:url('../images/Product/MoringaLeavesPowder.png');
}



/* =============================================
    1200px CONTAINER for text content only
============================================= */
.banner-container {
    position: relative;
    z-index: 9;
    width: 100%;
    max-width: 1200px;    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: left;
    text-align: left;
    color: #ffffff;
}

/* ---- MAIN HEADING (H1) ---- */
.banner-title {    
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ---- BREADCRUMB ---- */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* semi-transparent white */
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb-nav .home-link {
    color: #ffffff;
    /* primary green */
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav .home-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 2px;
}

.breadcrumb-nav .current {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* =============================================
    RESPONSIVE BREAKPOINTS
============================================= */

/* 1440px – large desktop */
@media (max-width: 1440px) {
    .slider-wrapper {margin-top: 135px;}
    .about-banner {
       margin-top: 135px;
       padding: 40px 0;
    }
    .product-banner {
       margin-top: 135px;
       padding: 25px 0;
    }
    .banner-title {
        font-size: 30px;
    }
    .breadcrumb-nav {
        font-size: 16px;
    }
}

/* 1200px – desktop */
@media (max-width: 1200px) {
    .slider-wrapper {margin-top: 135px;}
    .about-banner {
        margin-top: 135px;
       padding: 40px 0;
    }
    .banner-title {
        font-size: 30px;
    }
    .breadcrumb-nav {
        font-size: 15px;
    }
}

/* 992px – tablet landscape */
@media (max-width: 992px) {
    .slider-wrapper {margin-top: 0px;}
    .about-banner {
        margin-top:0px;
       padding: 40px 0;
    }
    .banner-title {
        font-size: 30px;
    }
    .breadcrumb-nav {
        font-size: 15px;
    }
    .banner-container {
        padding: 0 20px;
    }
}

/* 768px – tablet portrait */
@media (max-width: 768px) {
    .slider-wrapper {margin-top: 0px;}
    .about-banner {
        margin-top:0px;
       padding: 40px 0;
    }
    .banner-title {
        font-size: 30px;
    }
    .breadcrumb-nav {
        font-size: 15px;
    }
    .banner-container {
        padding: 0 18px;
    }
}

/* 576px – mobile landscape */
@media (max-width: 576px) {
    .slider-wrapper {margin-top: 0px;}
    .about-banner {
        margin-top:0px;
       padding: 40px 0;       
    }    
    .banner-container {
        padding: 0 16px;
    }
    .banner-title {
        font-size: 26px;
    }
    .breadcrumb-nav {
        font-size: 14px;
    }
}

/* 425px – mobile */
@media (max-width: 425px) {
    .slider-wrapper {margin-top: 0px;}
    .banner-container {
        padding: 0 14px;
    }
    .banner-title {
        font-size: 26px;
    }
    .breadcrumb-nav {
        font-size: 14px;
        gap: 4px;
    }
}

/* 375px – small mobile */
@media (max-width: 375px) {
    .slider-wrapper {margin-top: 0px;}
    .banner-container {
        padding: 0 12px;
    }
    .banner-title {
        font-size: 26px;
    }
    .breadcrumb-nav {
        font-size: 13px;
    }
}

/* 320px – extra small */
@media (max-width: 320px) {
    .slider-wrapper {margin-top: 0px;}
    .about-banner {
        min-height: 240px;
    }
    .banner-container {
        padding: 0 10px;
    }
    .banner-title {
        font-size: 24px;
    }
    .breadcrumb-nav {
        font-size: 12px;
        gap: 3px;
    }
}

/* =============================================
    ACCESSIBILITY & SEO
============================================= */
/* Focus-visible for keyboard navigation */
.breadcrumb-nav .home-link:focus-visible {
    outline: 3px solid #2E7D32;
    outline-offset: 4px;
    border-radius: 4px;
}

/* screen reader only (for accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================= */
/* ABOUT COMPANY SECTION                        */
/* ============================================= */
.about-company {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
}

.company-img {
    width: 90%;
    /* height: 350px; */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover .company-img {
    transform: scale(1.02);
}

/* floating shapes inside about image */
.float-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.12;
}

.fs-1 {
    width: 120px;
    height: 120px;
    background: var(--gold);
    top: -30px;
    right: -30px;
}

.fs-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    bottom: -20px;
    left: -20px;
}

.fs-3 {
    width: 50px;
    height: 50px;
    background: var(--heading-dark);
    top: 30%;
    left: -25px;
}

.about-text .section-subtitle {
    margin-bottom: 15px;
}

.about-text .section-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    text-align: left;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}

.feature-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin: 24px 0 32px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--heading-dark);
}

.feature-bullets i {
    color: var(--primary-green);
    font-size: 1.1rem;
}
.section-padding {
    padding: 80px 0;
}
/* ============================================= */
/* TYPOGRAPHY                                   */
/* ============================================= */
.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: var(--green-light);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--heading-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-green);
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-center .section-subtitle {
    margin-bottom: 8px;
}

.section-header-center .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================= */
/* MISSION & VISION SECTION                     */
/* ============================================= */
.mission-vision {
    background: var(--light-bg);
    margin-top: 40px;
    padding: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: left;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--green-hover));
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 8px 24px rgba(60, 142, 66, 0.25);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.mv-card p:last-child {
    margin-bottom: 0;
}
/* ============================================= */
/* WHY CHOOSE US (features)                     */
/* ============================================= */
.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px 30px;
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(60, 142, 66, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 18px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.7;
}
/* ============================================= */
/* MANAGEMENT TEAM SECTION                      */
/* ============================================= */
.team-section {
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--primary-green);
    box-shadow: 0 6px 24px rgba(60, 142, 66, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 2px;
}

.member-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 18px;
    line-height: 1.6;
}

.absocial-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.absocial-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.absocial-icons a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(60, 142, 66, 0.25);
}
/* ============================================= */
/* STATS SECTION                                */
/* ============================================= */
.stats-section {
    background: var(--white);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.stat-item:hover {
    background: var(--green-light);
    transform: scale(1.02);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    opacity: 0.7;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--heading-dark);
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
}
/* ============================================= */
/* CALL TO ACTION SECTION                      */
/* ============================================= */
.cta-section {
    /* background: linear-gradient(135deg, var(--primary-green), var(--green-hover), #0d4f2a); */    
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.cta-text {
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: var(--white);
}
/* ============================================= */
/* RESPONSIVE DESIGN                            */
/* ============================================= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .section-padding {
    padding: 60px 0;
    }

    .header-title {
    font-size: 2.6rem;
    }

    .container {
    padding: 0 20px;
    }

    .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .about-image .company-img {
    height: 340px;
    }

    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .section-padding {
    padding: 48px 0;
    }   

    .header-title {
    font-size: 2.2rem;
    }

    .header-description {
    font-size: 1rem;
    }

    .page-header {
    padding: 60px 0 50px;
    }

    .section-title {
    font-size: 1.8rem;
    }

    .about-text .section-title {
    font-size: 1.7rem;
    }

    .feature-bullets {
    grid-template-columns: 1fr;
    }

    .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    }

    .mv-card {
    padding: 32px 24px;
    }

    .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    }

    .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    }

    .stat-number {
    font-size: 2.2rem;
    }

    .cta-title {
    font-size: 2rem;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    }

    .footer-brand p {
    max-width: 100%;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .header-title {
    font-size: 1.8rem;
    }

    .header-subtitle {
    font-size: 0.75rem;
    padding: 4px 16px;
    }

    .section-title {
    font-size: 1.5rem;
    }

    .about-image .company-img {
    height: 260px;
    }

    .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    }

    .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    }

    .stat-number {
    font-size: 1.8rem;
    }

    .stat-label {
    font-size: 0.85rem;
    }

    .cta-title {
    font-size: 1.6rem;
    }

    .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    }

    .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    }

    .breadcrumb {
    font-size: 0.8rem;
    }

    .mv-card {
    padding: 28px 18px;
    }

    .team-card {
    padding: 24px 16px;
    }

    .footer {
    padding-top: 40px;
    }
}

/* Retina & cross-browser optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .company-img,
    .team-image img {
    image-rendering: auto;
    }
}


/***===========================================
        Contact Page 
==========================================****/

/* =============================================
    UNIQUE CLASS NAMES – Contact Page Shell
============================================= */
.sgrv-connect-shell {
    width: 100%;
    max-width: var(--sgrv-max-width);
    margin: 0 auto;
}

/* =============================================
    SECTION 1 – CONTACT INFORMATION CARDS
============================================= */
.sgrv-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);    
    margin-top: 40px;
}

.sgrv-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.sgrv-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-green);
}

.sgrv-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 18px;
    transition: all var(--transition);
}

.sgrv-detail-card:hover .sgrv-icon-circle {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.sgrv-card-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 12px;
}

.sgrv-card-content {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.8;
}

.sgrv-card-content br {
    display: block;
}

.sgrv-card-content a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.sgrv-card-content a:hover {
    color: var(--primary-green);
}

/* =============================================
    SECTION 2 – CONTACT FORM
============================================= */
.sgrv-touch-panel {
    max-width: var(--sgrv-form-width);
    margin: 0 auto 60px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 56px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sgrv-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.sgrv-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 6px;
}

.sgrv-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* Form Layout */
.sgrv-message-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sgrv-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sgrv-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sgrv-field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading-dark);
    letter-spacing: 0.3px;
}

.sgrv-input-box,
.sgrv-textarea-box {
    width: 100%;
    font-family: 'Poppins', var(--font-main);
    font-size: 0.95rem;
    padding: 0 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--heading-dark);
    transition: all var(--transition);
    outline: none;
}

.sgrv-input-box {
    height: 55px;
}

.sgrv-textarea-box {
    height: 180px;
    padding: 16px;
    resize: vertical;
}

.sgrv-input-box:focus,
.sgrv-textarea-box:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(60, 142, 66, 0.1);
}

.sgrv-input-box::placeholder,
.sgrv-textarea-box::placeholder {
    color: #9CA3AF;
}

.sgrv-full-width {
    grid-column: 1 / -1;
}

/* Submit Button */
.sgrv-submit-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 55px;
    font-family: 'Poppins', var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-green);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 4px;
}

.sgrv-submit-action:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(60, 142, 66, 0.3);
}

.sgrv-submit-action:active {
    transform: translateY(0);
}

.sgrv-submit-action i {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.sgrv-submit-action:hover i {
    transform: translateX(4px);
}

/* =============================================
    SECTION 3 – GOOGLE MAP
============================================= */
.sgrv-map-wrapper {
    width: 100%;    
    overflow: hidden;
    margin-bottom: -50px;
}

.sgrv-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* =============================================
    RESPONSIVE BREAKPOINTS
============================================= */

/* 1200px – desktop */
@media (max-width: 1200px) {
    .sgrv-touch-panel {
        padding: 40px 44px;
    }
}

/* 992px – tablet landscape */
@media (max-width: 992px) {
    .sgrv-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }

    .sgrv-touch-panel {
        padding: 36px 40px;
    }

    .sgrv-form-title {
        font-size: 1.8rem;
    }
}

/* 768px – tablet portrait */
@media (max-width: 768px) {
    .sgrv-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .sgrv-detail-card {
        padding: 30px 20px 28px;
        min-height: 240px;
    }

    .sgrv-touch-panel {
        padding: 32px 28px;
    }

    .sgrv-field-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sgrv-form-title {
        font-size: 1.6rem;
    }

    .sgrv-map-wrapper iframe {
        height: 350px;
    }
}

/* 576px – mobile landscape */
@media (max-width: 576px) {
    .sgrv-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 20px;
    }

    .sgrv-detail-card {
        min-height: 200px;
        padding: 28px 18px 24px;
    }

    .sgrv-icon-circle {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }

    .sgrv-touch-panel {
        padding: 28px 20px;
        border-radius: var(--radius-sm);
    }

    .sgrv-form-title {
        font-size: 1.4rem;
    }

    .sgrv-form-subtitle {
        font-size: 0.95rem;
    }

    .sgrv-input-box {
        height: 48px;
    }

    .sgrv-textarea-box {
        height: 150px;
    }

    .sgrv-submit-action {
        height: 48px;
        font-size: 0.95rem;
    }

    .sgrv-map-wrapper iframe {
        height: 280px;
    }
}

/* 425px – mobile */
@media (max-width: 425px) {
    .sgrv-touch-panel {
        padding: 24px 16px;
    }

    .sgrv-form-title {
        font-size: 1.3rem;
    }

    .sgrv-card-heading {
        font-size: 1.1rem;
    }

    .sgrv-card-content {
        font-size: 0.9rem;
    }

    .sgrv-map-wrapper iframe {
        height: 240px;
    }
}

/* 375px – small mobile */
@media (max-width: 375px) {
    .sgrv-touch-panel {
        padding: 20px 14px;
    }

    .sgrv-form-title {
        font-size: 1.2rem;
    }

    .sgrv-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .sgrv-detail-card {
        padding: 24px 14px 20px;
        min-height: 180px;
    }

    .sgrv-map-wrapper iframe {
        height: 200px;
    }
}

/* 320px – extra small */
@media (max-width: 320px) {
    .sgrv-touch-panel {
        padding: 16px 12px;
    }

    .sgrv-form-title {
        font-size: 1.1rem;
    }

    .sgrv-form-subtitle {
        font-size: 0.85rem;
    }

    .sgrv-input-box {
        height: 42px;
        font-size: 0.85rem;
    }

    .sgrv-textarea-box {
        height: 120px;
        font-size: 0.85rem;
    }

    .sgrv-submit-action {
        height: 42px;
        font-size: 0.85rem;
    }

    .sgrv-map-wrapper iframe {
        height: 180px;
    }
}

/* =============================================
    ACCESSIBILITY
============================================= */
.sgrv-input-box:focus-visible,
.sgrv-textarea-box:focus-visible,
.sgrv-submit-action:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}


/****===================================
        FAQ
======================================***/
/* =============================================
    UNIQUE CLASS NAMES – FAQ Page Shell
============================================= */
.sgrv-faq-shell {
    width: 100%;
    max-width: var(--sgrv-max-width);
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

/* =============================================
    FAQ HEADER
============================================= */
.sgrv-faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.sgrv-faq-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: var(--green-light);
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sgrv-faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.sgrv-faq-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
    FAQ STACK – Vertical Column
============================================= */
.sgrv-faq-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;    
}

/* =============================================
    FAQ CARD / PANEL
============================================= */
.sgrv-faq-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: default;
}

.sgrv-faq-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.sgrv-faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sgrv-faq-question::before {
    content: "Q:";
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
}

.sgrv-faq-answer {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 32px;
    text-align: left;
}

.sgrv-faq-answer::before {
    content: "A:";
    font-weight: 600;
    color: var(--green-hover);
    margin-right: 6px;
}

/* =============================================
    RESPONSIVE BREAKPOINTS
============================================= */

/* 1200px – desktop */
@media (max-width: 1200px) {
    .sgrv-faq-shell {
        padding: 70px 0;
    }
    .sgrv-faq-title {
        font-size: 2.5rem;
    }
}

/* 992px – tablet landscape */
@media (max-width: 992px) {
    .sgrv-faq-stack {
        padding: 0 20px;
    }
    .sgrv-faq-shell {
        padding: 60px 0;
    }
    .sgrv-faq-title {
        font-size: 2.2rem;
    }
    .sgrv-faq-description {
        font-size: 1rem;
        max-width: 600px;
    }
    .sgrv-faq-panel {
        padding: 24px 28px;
    }
}

/* 768px – tablet portrait */
@media (max-width: 768px) {
    .sgrv-faq-shell {
        padding: 48px 0;
    }
    .sgrv-faq-title {
        font-size: 1.9rem;
    }
    .sgrv-faq-description {
        font-size: 0.95rem;
        padding: 0 8px;
    }
    .sgrv-faq-panel {
        padding: 20px 24px;
    }
    .sgrv-faq-question {
        font-size: 0.98rem;
    }
    .sgrv-faq-answer {
        font-size: 0.93rem;
        padding-left: 28px;
    }
}

/* 576px – mobile landscape */
@media (max-width: 576px) {
    .sgrv-faq-shell {
        padding: 40px 0;
    }
    .sgrv-faq-title {
        font-size: 1.6rem;
    }
    .sgrv-faq-label {
        font-size: 0.7rem;
        padding: 3px 14px;
    }
    .sgrv-faq-description {
        font-size: 0.9rem;
    }
    .sgrv-faq-stack {
        gap: 16px;
        padding: 0 20px;
    }
    .sgrv-faq-panel {
        padding: 18px 20px;
    }
    .sgrv-faq-question {
        font-size: 0.92rem;
        gap: 8px;
    }
    .sgrv-faq-answer {
        font-size: 0.88rem;
        padding-left: 24px;
    }
}

/* 425px – mobile */
@media (max-width: 425px) {
    .sgrv-faq-shell {
        padding: 32px 0;
    }
    .sgrv-faq-title {
        font-size: 1.4rem;
    }
    .sgrv-faq-description {
        font-size: 0.85rem;
    }
    .sgrv-faq-panel {
        padding: 16px 16px;
    }
    .sgrv-faq-question {
        font-size: 0.88rem;
    }
    .sgrv-faq-answer {
        font-size: 0.85rem;
        padding-left: 20px;
    }
}

/* 375px – small mobile */
@media (max-width: 375px) {
    .sgrv-faq-shell {
        padding: 28px 0;
    }
    .sgrv-faq-title {
        font-size: 1.25rem;
    }
    .sgrv-faq-description {
        font-size: 0.82rem;
    }
    .sgrv-faq-panel {
        padding: 14px 14px;
    }
    .sgrv-faq-question {
        font-size: 0.85rem;
    }
    .sgrv-faq-answer {
        font-size: 0.82rem;
        padding-left: 18px;
    }
}

/* 320px – extra small */
@media (max-width: 320px) {
    .sgrv-faq-shell {
        padding: 24px 0;
    }
    .sgrv-faq-title {
        font-size: 1.1rem;
    }
    .sgrv-faq-description {
        font-size: 0.78rem;
    }
    .sgrv-faq-panel {
        padding: 12px 12px;
        border-radius: var(--radius-sm);
    }
    .sgrv-faq-question {
        font-size: 0.82rem;
        gap: 6px;
    }
    .sgrv-faq-answer {
        font-size: 0.78rem;
        padding-left: 14px;
    }
}

/******================
    Product Details
====================****/
.sgrv-page-wrap {
    max-width: var(--sgrv-max-width);
    width: 100%;
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}
.sgrv-align-l {
    text-align: left;
}
.sgrv-align-r {
    text-align: left;
}
/* ===== SECTION 1 – PRODUCT OVERVIEW (two‑column) ===== */
.sgrv-product-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    margin-bottom: 3.5rem;
    align-items: start;
}

/* left side: image card */
.sgrv-product-media {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.sgrv-product-media:hover {
    box-shadow: var(--shadow-hover);
}
.sgrv-product-figure {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    padding: 1.2rem;
}
.sgrv-product-image {
    width: var(--image-size);
    max-width: 460px;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: var(--radius-sm);
    object-fit: contain;
    aspect-ratio: 1/1;
    background: var(--white);
}
.sgrv-product-media:hover .sgrv-product-image {
    transform: scale(1.04);
}

/* right side: info */
.sgrv-product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sgrv-category-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    align-self: flex-start;
    border: 1px solid var(--border-green);
}
.sgrv-product-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--heading-dark);
    line-height: 1.2;
    margin: 0.2rem 0 0.2rem;
}
.sgrv-short-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 95%;
    margin: 0.2rem 0 0.4rem;
}
.sgrv-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0.8rem;
}
.sgrv-highlight-list li {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--heading-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sgrv-highlight-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}
.sgrv-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.6rem;
}
.sgrv-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.25);
    letter-spacing: 0.3px;
    font-family: var(--font-main);
}
.sgrv-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
    color: var(--heading-dark);
}
.sgrv-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    box-shadow: none;
    min-width: 170px;
}
.sgrv-btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--heading-dark);
}

/* ===== SECTION 2 – FEATURES (4‑col) ===== */
.sgrv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin: 1.8rem 0 0;
}
.sgrv-feature-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 1.8rem 0.8rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(200, 224, 200, 0.2);
}
.sgrv-feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: var(--gold);
}
.sgrv-feature-icon {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}
.sgrv-feature-card h3 {
    font-size: 1.1rem;
    padding-top: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--heading-dark);
}
.sgrv-feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 1.1rem;
}
/* ===== SECTION 4 – SPECIFICATION TABLE ===== */
.sgrv-spec-wrap {    
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 60%;
    margin: 0 auto;
}
.sgrv-specification-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
    background: var(--white);    
}
.sgrv-specification-table tr:nth-child(even) {
    background: var(--green-light);
}
.sgrv-specification-table tr:nth-child(odd) {
    background: var(--white);
}
.sgrv-specification-table td {
    padding: 0.9rem 1.8rem;
    border-bottom: 1px solid var(--border-green);
    color: var(--text-dark);
}
.sgrv-specification-table td:first-child {
    font-weight: 600;
    color: var(--heading-dark);
    width: 36%;
    letter-spacing: 0.2px;
}
/* ===== SECTION 5 – NUTRITIONAL BENEFITS ===== */
.sgrv-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-top: 25px;
}
.sgrv-benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 0.6rem;
    text-align: cente;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-green);
}
.sgrv-benefit-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-bottom: 4px solid var(--gold);
}
.sgrv-benefit-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.2rem;
}
.sgrv-benefit-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}
/* ===== SECTION 7 – WHY CHOOSE ===== */
.sgrv-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-top: 25px;
}
.sgrv-why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 0.6rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-green);
}
.sgrv-why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
    border-bottom-color: var(--gold);
}
.sgrv-why-card .sgrv-why-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.3rem;
}
.sgrv-why-card h4 {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--heading-dark);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
    @media (max-width: 1200px) {
      .sgrv-page-wrap { padding: 2rem 1.8rem; }
      .sgrv-product-shell { gap: 1.8rem; }
    }

    @media (max-width: 992px) {
      .sgrv-product-shell { grid-template-columns: 1fr; }
      .sgrv-feature-grid { grid-template-columns: repeat(2, 1fr); }
      .sgrv-apps-grid { grid-template-columns: repeat(2, 1fr); }
      .sgrv-benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .sgrv-package-grid { grid-template-columns: repeat(2, 1fr); }
      .sgrv-why-grid { grid-template-columns: repeat(2, 1fr); }
      .sgrv-product-title { font-size: 2rem; }
      .sgrv-spec-wrap {width: 100%;}
    }

    @media (max-width: 768px) {
      /* body { padding: 1rem 0.8rem; } */
      .sgrv-page-wrap { padding: 1.5rem 1rem; }
      .sgrv-feature-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .sgrv-apps-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .sgrv-benefit-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .sgrv-package-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .sgrv-why-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .sgrv-specification-table td { padding: 0.7rem 1rem; }
      .sgrv-cta-section { padding: 2rem 1.2rem; }
      .sgrv-cta-section h2 { font-size: 1.8rem; }
    }

    @media (max-width: 576px) {
      .sgrv-feature-grid { grid-template-columns: 1fr; }
      .sgrv-apps-grid { grid-template-columns: 1fr 1fr; }
      .sgrv-benefit-grid { grid-template-columns: 1fr; }
      .sgrv-package-grid { grid-template-columns: 1fr 1fr; }
      .sgrv-why-grid { grid-template-columns: 1fr; }
      .sgrv-cta-group { flex-direction: column; align-items: center; }
      .sgrv-btn { width: 100%; min-width: unset; }
      .sgrv-product-title { font-size: 1.8rem; }
    }

    @media (max-width: 425px) {
      .sgrv-apps-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
      .sgrv-package-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
      .sgrv-storage-box { padding: 1.5rem; }
      .sgrv-description-panel { padding: 1.2rem; }
    }

    @media (max-width: 375px) {
      .sgrv-apps-grid { grid-template-columns: 1fr; }
      .sgrv-package-grid { grid-template-columns: 1fr; }
      .sgrv-why-grid { grid-template-columns: 1fr; }
    }

/****========= Medhod Processing CSS =======*******/


/* ===== TIMELINE / GRID ===== */
.sgrv-process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===== CARD (hexagon) ===== */
.sgrv-process-hexagon {
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 230px;
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 32px 20px 30px;
    box-shadow: var(--shadow-sm);
    border: 22px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    clip-path: polygon(50% 0%, 93% 8%, 93% 92%, 50% 100%, 7% 92%, 7% 8%);
    margin: 16px 0;
}

/* gold accent card */
/* .sgrv-process-hexagon--gold {
    border-color: var(--gold);
} */

.sgrv-process-hexagon:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.sgrv-process-hexagon--gold:hover {
    border-color: var(--gold-dark);
}

/* inner content reset (clip-path cuts inner, so we keep content inside) */
.sgrv-process-hexagon > * {
    position: relative;
    z-index: 2;
}

/* ===== ICON ===== */
.sgrv-process-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
    border: 2px solid rgba(42, 127, 75, 0.15);
    flex-shrink: 0;
}

.sgrv-process-hexagon:hover .sgrv-process-icon-wrap {
    transform: scale(1.06);
    background: var(--white);
    border-color: var(--gold);
}

.sgrv-process-icon-wrap img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.sgrv-process-hexagon:hover .sgrv-process-icon-wrap img {
    transform: scale(1.02);
}

/* ===== STEP BADGE ===== */
.sgrv-process-step {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 8px rgba(201, 162, 75, 0.2);
}

/* ===== TITLE ===== */
.sgrv-process-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-dark);
    margin-bottom: 10px;
    line-height: 28px;    
}

/* ===== TEXT ===== */
.sgrv-process-card-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== ARROWS ===== */
.sgrv-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    color: var(--primary-green);
    transition: var(--transition);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    padding: 0 4px;
}

.sgrv-process-arrow span {
    display: inline-block;
    transition: var(--transition);
}

.sgrv-process-arrow:hover span {
    color: var(--gold);
    transform: scale(1.08);
}

/* arrow unicode or pure CSS – we use a simple character */
.sgrv-process-arrow .arrow-icon {
    font-size: 3rem;
    line-height: 1;
    font-weight: 300;
    color: var(--primary-green);
    transition: var(--transition);
}

.sgrv-process-arrow:hover .arrow-icon {
    color: var(--gold);
}

.sgrvbg {
    background: var(--light-bg);
}

/* ===== RESPONSIVE ===== */

/* 1200px */
@media screen and (max-width: 1200px) {
    .sgrv-process-hexagon {
    flex: 1 1 240px;
    min-width: 200px;
    padding: 28px 16px 26px;
    }
    .sgrv-process-arrow {
    width: 44px;
    font-size: 2.2rem;
    }
    .sgrv-process-arrow .arrow-icon {
    font-size: 2.4rem;
    }
    .sgrv-process-heading {
    font-size: 2.2rem;
    }
}

/* 992px → still horizontal, smaller */
@media screen and (max-width: 992px) {
    .sgrv-process-timeline {
    gap: 6px;
    }
    .sgrv-process-hexagon {
    flex: 1 1 200px;
    min-width: 170px;
    padding: 24px 12px 22px;
    }
    .sgrv-process-icon-wrap {
    width: 80px;
    height: 80px;
    }
    .sgrv-process-icon-wrap img {
    width: 44px;
    height: 44px;
    }
    .sgrv-process-card-title {
    font-size: 1.3rem;
    }
    .sgrv-process-arrow {
    width: 36px;
    font-size: 1.8rem;
    }
    .sgrv-process-arrow .arrow-icon {
    font-size: 2rem;
    }
}

/* 768px → tablet: vertical flow (hexagon ↓ arrow ↓ hexagon) */
@media screen and (max-width: 768px) {
    .sgrv-process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    }

    .sgrv-process-hexagon {
    flex: 0 1 auto;
    width: 100%;
    max-width: 400px;
    min-width: 260px;
    margin: 6px 0;
    clip-path: polygon(50% 0%, 93% 8%, 93% 92%, 50% 100%, 7% 92%, 7% 8%);
    }

    .sgrv-process-arrow {
    width: auto;
    height: 40px;
    font-size: 2rem;
    transform: rotate(90deg);
    padding: 4px 0;
    }

    .sgrv-process-arrow .arrow-icon {
    font-size: 2.4rem;
    }

    .sgrv-process-arrow:hover span {
    transform: scale(1.06) rotate(0deg);
    }
}

/* 576px → mobile stack, arrows rotated (already vertical) */
@media screen and (max-width: 576px) {
    .sgrv-process-hexagon {
    max-width: 360px;
    min-width: 220px;
    padding: 28px 16px 26px;
    clip-path: polygon(50% 0%, 93% 8%, 93% 92%, 50% 100%, 7% 92%, 7% 8%);
    }
    .sgrv-process-icon-wrap {
    width: 80px;
    height: 80px;
    }
    .sgrv-process-icon-wrap img {
    width: 44px;
    height: 44px;
    }
    .sgrv-process-card-title {
    font-size: 1.3rem;
    }
    .sgrv-process-arrow {
    height: 32px;
    font-size: 1.6rem;
    }
    .sgrv-process-arrow .arrow-icon {
    font-size: 2rem;
    }
}

/* 425px */
@media screen and (max-width: 425px) {
    .sgrv-process-hexagon {
    max-width: 320px;
    min-width: 180px;
    padding: 22px 14px 20px;
    border-width: 3px;
    }
    .sgrv-process-icon-wrap {
    width: 72px;
    height: 72px;
    }
    .sgrv-process-icon-wrap img {
    width: 38px;
    height: 38px;
    }
    .sgrv-process-card-title {
    font-size: 1.2rem;
    }
    .sgrv-process-card-text {
    font-size: 0.9rem;
    }
    .sgrv-process-arrow {
    height: 28px;
    font-size: 1.4rem;
    }
    .sgrv-process-arrow .arrow-icon {
    font-size: 1.6rem;
    }
}

/* 375px */
@media screen and (max-width: 375px) {
    .sgrv-process-hexagon {
    max-width: 280px;
    min-width: 160px;
    padding: 18px 10px 16px;
    }
    .sgrv-process-icon-wrap {
    width: 64px;
    height: 64px;
    }
    .sgrv-process-icon-wrap img {
    width: 34px;
    height: 34px;
    }
    .sgrv-process-step {
    font-size: 0.7rem;
    padding: 2px 14px;
    }
    .sgrv-process-card-title {
    font-size: 1.1rem;
    }
}

/* 320px */
@media screen and (max-width: 320px) {    
    .sgrv-process-hexagon {
    max-width: 240px;
    min-width: 140px;
    padding: 14px 8px 14px;
    border-radius: 24px;
    }
    .sgrv-process-icon-wrap {
    width: 56px;
    height: 56px;
    }
    .sgrv-process-icon-wrap img {
    width: 30px;
    height: 30px;
    }
    .sgrv-process-card-title {
    font-size: 1rem;
    }
    .sgrv-process-card-text {
    font-size: 0.8rem;
    }
    .sgrv-process-arrow {
    height: 22px;
    font-size: 1.2rem;
    }
    .sgrv-process-arrow .arrow-icon {
    font-size: 1.4rem;
    }
}

/* ===== ensure no horizontal scroll ===== */
/* img {
    max-width: 100%;
    height: auto;
    display: block;
} */

/* ===== figure reset ===== */
.sgrv-process-hexagon figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ===== equal height via flex ===== */
.sgrv-process-hexagon {
    height: auto;
    min-height: 380px;
}

@media screen and (max-width: 768px) {
    .sgrv-process-hexagon {
    min-height: 340px;
    }
}
@media screen and (max-width: 576px) {
    .sgrv-process-hexagon {
    min-height: 300px;
    }
}
/* ===== SECTION 8 – STORAGE INSTRUCTIONS ===== */
.sgrv-storage-box {
    background: var(--green-light);
    border-radius: var(--card-radius);
    padding: 2rem 2.5rem;
    /* margin: 2.6rem 0 2rem; */
    border-left: 8px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
}
.sgrv-storage-box:hover {
    box-shadow: var(--shadow-hover);
}
.sgrv-storage-box p {
    font-size: 1.05rem;
    color: var(--heading-dark);
    font-weight: 500;
    line-height: 1.7;
}
.sgrv-mb {
    margin-bottom: 40px;
}