   
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

   :root {
            --primary-green: #2E7D32;
            --secondary-green: #4CAF50;
            --accent-orange: #FF9800;
            --dark-bg: #1A1A1A;
            --light-bg: #F8F9FA;
            --text-dark: #212529;
            --text-light: #6C757D;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
           font-family: 'Inter' !important;
            line-height: 1.6;
            color: var(--text-dark);
            background-color:#f8f8f9;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 600!important;
        }
       
     p {
            font-weight: 500 !important;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-green);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .logo span {
            font-family: 'Montserrat', sans-serif;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.85rem;
            transition: color 0.3s;
            position: relative;
            white-space: nowrap;
        }

.fa-phone-alt:before, .fa-phone-flip:before {
    color: #fff;
}
		a.call-button span {
    color: #fff;
}
a.product-card p {
    font-family: 'Inter';
}
		/* ===============================
   MOBILE NAV MENU
================================ */

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop (keep horizontal) */
@media (min-width: 992px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
  }

  .nav-links li a:hover {
    color: #2f6f1e;
  }
}

@media (max-width: 767px) {

    /* Full width mobile menu */
    #menu-menu {
        width: 100%;
        padding: 10px 0;
    }

    /* Each menu item */
    #menu-menu > li {
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    /* Menu links */
    #menu-menu .ekit-menu-nav-link {
        display: block;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #222;
        transition: all 0.3s ease;
    }

    /* Hover / Tap effect */
    #menu-menu .ekit-menu-nav-link:hover {
        background: #f5f5f5;
        padding-left: 26px;
    }

    /* Active menu item */
    #menu-menu .current-menu-item > .ekit-menu-nav-link,
    #menu-menu .ekit-menu-nav-link.active {
        color: var(--accent-orange);
        font-weight: 600;
        background: rgba(255,140,0,0.08);
    }

    /* Remove last border */
    #menu-menu > li:last-child {
        border-bottom: none;
    }

    /* Optional: Make it feel like an app menu */
    #menu-menu {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

}
section.hero.page-banner {
    padding: 90px 0px;
    height: 25rem;
}
h1.inner-hero-title {
    font-weight: 700 !important;
}
h3 {
    font-weight: 700 !important;
    color: #000;
}

/* ===============================
   MOBILE DRAWER MENU
================================ */
@media (max-width: 991px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 90px 28px 30px;
    display: block !important;
    flex-direction: column;
    gap: 22px;
    box-shadow: -8px 0 25px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  /* Active state */
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #1f1f1f;
    text-decoration: none;
  }

  .nav-links li a:hover {
    color: #2f6f1e;
  }

  /* Call button styling */
  .nav-links .call-button {
    margin-top: 10px;
    padding: 14px 18px;
    background: #2f6f1e;
    color: #fff !important;
    border-radius: 30px;
    justify-content: center;
    font-weight: 600;
  }

  .nav-links .call-button i {
    font-size: 16px;
	  transform: rotate(112deg);
  }
}
.nav-links .call-button i {
	  transform: rotate(112deg);
  }
        .nav-links a:hover {
            color: var(--accent-orange);
        }
		/* Base nav */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

/* Mobile menu */
@media (max-width: 991px) {

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 90px 30px 30px;
    gap: 22px;
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }
}


        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-orange);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .call-button {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .call-button:hover {
            background-color: #1B5E20;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-green);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
/*             background: linear-gradient(rgba(46, 125, 50, 0.85), rgba(46, 125, 50, 0.85)); */
            color: var(--white);
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: bottom;
        }

        .slide.active {
            opacity: 1;
        }

       

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgb(46 125 50 / 44%), rgb(46 125 50 / 25%))
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
			padding: 200px 0 200px !important;
        }

        .hero-subtitle {
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.9;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 600;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background-color: var(--accent-orange);
            color: var(--white);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            background-color: #F57C00;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid var(--white);
        }

        .cta-button.secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .slider-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-indicator.active {
            background-color: var(--white);
            transform: scale(1.2);
        }

        /* Statistics Section */
        .stats {
    background-color: #fff;
    padding: 30px 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 50px;
}

        .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 0px;
}

        .stat-item {
            text-align: center;
            padding: 20px 10px;
        }
		.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

/* Vertical divider */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(0, 0, 0, 0.15);
}

/* Remove divider on mobile */
@media (max-width: 768px) {
	.stats-grid {
    gap: 24px;
}
	.stats {
    margin-top: 4px;
	
	}	
  .stat-item::after {
    display: none;
  }
	 .stat-number {
		 font-size: 1.5rem !important;}
}

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Section Common Styles */
        .section {
            padding: 100px 0;
        }

        .section-title-container {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-label {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-orange);
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products & Services Section */
        .products-services {
    background-color: #f8fbf6;
    
}
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .product-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-icon {
            height: 100px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
        }

        .product-content {
            padding: 25px 20px;
            text-align: center;
        }

        .product-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-weight: 600;
			padding:0px 8px;
        }

        .product-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
			padding:0px 8px;
        }

     /* =====================================================
   OUR MISSION
===================================================== */
.our-mission {
    background-color: var(--white);
    padding: 80px 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mission-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.mission-content {
    padding: 30px;
}

.mission-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mission-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
}

/* =====================================================
   OUR JOURNEY
===================================================== */
.our-journey {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-green);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 28px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 4px 12px;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.timeline-marker {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-green);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
    .mission-cards {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        width: 80%;
    }
}

@media (max-width: 768px) {
	.stat-item {
    padding: 0px !important;
}
	.mission-cards {
    gap: 16px !important;
}
    .mission-image {
        height: 160px;
    }

    .mission-content {
        padding: 10px;
    }

    .journey-timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 0px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-marker {
        left: 20px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 13px !important;
    }

    .timeline-year {
        font-size: 1.1rem;
    }

    .timeline-title {
        font-size: 1rem;
    }
}
        /* Our Team Section - Redesigned */
        .our-team {
            padding: 100px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
		

        .team-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
        }

        .team-avatar-container {
            padding: 40px 30px 20px;
            text-align: center;
            position: relative;
        }

        

.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    border: 8px solid var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: -82px;
}

        .team-card:hover .team-avatar {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .team-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .team-card:hover .team-avatar::after {
            transform: translateX(100%);
        }

        .team-info {
            padding: 0 30px 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .team-name {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 700;
            line-height: 1.3;
        }

        .team-role {
            color: var(--accent-orange);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }

        .team-role::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--accent-orange);
        }

        .team-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: auto;
        }

        .team-social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .team-social-link:hover {
            background-color: var(--primary-green);
            color: var(--white);
            transform: translateY(-3px);
        }

        .team-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
        }

        .expertise-tag {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
            color: var(--primary-green);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(46, 125, 50, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

        .footer-contact {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .contact-item i {
            color: var(--accent-orange);
            margin-top: 3px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--accent-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 15px;
            }
            
            .nav-links a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: start;
            }
        }

        @media (max-width: 900px) {
			.hero {
    height: 44rem !important;
}
			
            .nav-links {
                gap: 12px;
            }
            
            .nav-links a {
                font-size: 0.75rem;
            }
            
/*             .call-button span {
                display: none;
            } */
            
            .call-button {
                padding: 10px 15px;
            }
        }

        @media (max-width: 768px) {
			
			
	           .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s;
                z-index: 999;
                gap: 20px;
            }
            
            .nav-links a {
                font-size: 1rem;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .timeline-content {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .timeline-item {
                flex-direction: column !important;
                margin-bottom: 40px;
            }
            
            .timeline-marker {
                display: none;
            }
            
            .journey-timeline::before {
                display: none;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
/*             .mission-cards {
                grid-template-columns: 1fr;
            } */
            
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
/*             .products-grid {
                grid-template-columns: 1fr;
            } */
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
	@media (max-width: 768px) {
		.mission-text {
    font-size: 11px !important;
}
		
		.value-card p {
    font-size: 12px !important;
}
		icon {
    width: 55px !important;
    height: 55px !important;
    margin-top: 10px !important;
}
		.values-grid {
    gap: 15px !important;
}
		.value-card h3 {
    font-size: 15px !important;
}
		.value-card {
			padding: 10px !important;
		}
     .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px;
    }
		a.product-card p {
    color: #94908b;
	padding:0px 8px;
	font-size:11px
}
	.product-title {
        font-size: 13px !important;
    }
		.products-grid {
    gap: 10px !important;
}
		.arrow-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 17px !important;

}
}
	
		
	.product-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.product-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.product-image {
  position: relative;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
}

/* Image fills container */
.product-image img.pro-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  --r: 24px;   /* normal rounded corners */
  --s: 60px;   /* scoop size */
  --x: 0px;    /* horizontal adjustment */
  --y: 0px;    /* vertical adjustment */

  border-radius: var(--r);

  --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
  --_d: calc(var(--s) + var(--r));

  -webkit-mask:
    calc(100% - var(--_d) - var(--x)) 100% var(--_m),
    100% calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px))
      calc(-1 * var(--r) - var(--x)) calc(-1 * var(--r) - var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1 * var(--_d) - var(--y));

  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}


.arrow-icon {
  position: absolute;
  
  /* Align with image bottom-right */
  right: 16px;              /* same as card padding */
  top: calc(158px - 26px);  /* image height - half arrow */

  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.arrow-icon-img {
  transition: transform 0.3s ease;
}

.arrow-icon:hover .arrow-icon-img {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .product-image img.pro-img {
    --r: 16px;   /* smaller corner radius */
    --s: 38px;   /* smaller scoop */
	
  }
	.product-image {
    height: 108px;
}
	.arrow-icon {
    right: 8px;
    top: calc(100px - 26px);
    width: 40px !important;
    height: 40px !important;

}
}

@media (max-width: 480px) {
  .product-image img.pro-img {
    --r: 14px;
    --s: 30px;   /* tighter scoop for small screens */
  }
}

.arrow-icon-img {
  width: 22px;
  height: 22px;
	 display: block;
}


.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 18px;
  color: #000;
}
		
a.product-card p {
    color: #94908b;
	padding:0px 8px;
}
	
		.vision-values-section {
    padding: 80px 0px;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1400px;
    margin: auto;
}

/* Vision */
.vision-box {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
	text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
	width:100%;
}



.vision-text i {
    margin-right: 10px;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.value-card p {
    font-size: 15px;
    color: #555;
}

/* Icons */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 30px;
    color: #fff;
}

.sustainability { background: #4caf50; }
.innovation { background: #2196f3; }
.integrity { background: #ff9800; }
.empowerment { background: #8bc34a; }
.collaboration { background: #9c27b0; }

	p.card-description {
    padding: 20px;
    font-size: 14px;
}
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

h3.card-name {
    margin: 0px;
}

.testimonial-card {
    flex: 0 0 30.3333%;
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    background: #fff;
    margin: 8px;
    border-radius: 16px;
    margin-top: 108px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #00000012;
	max-width: 340px;
}

h3.card-name {
    margin: 0px;
    font-size: 20px;
    font-weight: 700 !important;
}
	.card-icon img {
    margin-top: -80px;
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 97%;
  }
	.section-title {
		font-size: 1.5rem !important; }
	
	.hero h1 {
    font-size: 2rem !important;
}
	.hero {
    padding: 100px 0 100px !important;
}
}

@media (max-width: 575px) {
  .testimonial-card {
    flex: 0 0 97%;
  }
}

/* Progress bar */

.testimonial-progress-bar-container {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    width: 60%;
    margin: auto;
    margin-top: 22px;
}
.testimonial-progress-segment {
  flex: 1;
  height: 4px;
  background: #f3eee8;
  cursor: pointer;
}
	.card-icon img {
    max-width: 100px !important;
    border: 2px solid #000 !important;
    border-radius: 58px !important;
}
  /* Hero Section */
        .hero {
           
            background-size: cover !important;
            background-position: center !important;
            color: var(--white);
            padding: 200px 0 200px;
            text-align: center;
			height:40rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-label {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.5rem;
            margin: 15px 0 30px;
            color: var(--text-dark);
			font-weight: 700 !important;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 50px;
            line-height: 1.8;
			text-align:center;
        }

        /* About Content */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            gap: 20px;
            margin-top: 50px;
        }

        .value-card {
           
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }

        .value-card h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700 !important;
}

        .value-card p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .team-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: -68px auto 20px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            border: 5px solid var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .team-info {
            padding: 0 20px 30px;
        }

        .team-name {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .team-role {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .team-desc {
            color: var(--text-light);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-top: 10px;
        }

        .stat-box {
            text-align: center;
            padding: 40px;
            background: var(--light-bg);
            border-radius: 10px;
        }

        .stat-number {
            font-size: 2.5rem;
            color: var(--accent-orange);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-dark);
            font-weight: 600;
        }
.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    padding: 0px !important;
}
 /* Product Details Section */
        .product-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 80px;
            padding-top: 80px;
            border-top: 2px solid var(--light-bg);
        }

        .product-details-image {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 5rem;
        }

        .product-details-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .product-details-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .features-list {
            list-style: none;
            margin: 30px 0;
        }

        .features-list li {
            padding: 12px 0;
            color: var(--text-light);
            border-bottom: 1px solid #eee;
        }

        .features-list li:before {
            content: "✓ ";
            color: var(--primary-green);
            font-weight: 700;
            margin-right: 10px;
        }

        .features-list li:last-child {
            border-bottom: none;
        }
 /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-price {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: var(--text-light);
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li:before {
            content: "✓ ";
            color: var(--primary-green);
            font-weight: 600;
            margin-right: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
            padding: 60px;
            text-align: center;
          
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-orange);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #F57C00;
            transform: translateY(-3px);
        }
        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .content-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .content-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .content-image {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
        }

        /* Pillars Grid */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .pillar-card {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary-green);
        }

        .pillar-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .pillar-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .pillar-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Impact Section */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
        }

        .impact-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .impact-number {
            font-size: 2.5rem;
            color: var(--accent-orange);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .impact-label {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline {
  white-space: nowrap;
  overflow-x: hidden;
}

.timeline ol {
  font-size: 0;
  width: 100vw;
  padding: 250px 0;
  transition: all 1s;
}

/* .timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 160px;
  height: 3px;
  background: #d6d6d6;
} */

.timeline ol li:last-child {
  width: 280px;
}

.timeline ol li:not(:first-child) {
  margin-left: 14px;
}

.timeline ol li:not(:first-child)::after {
	 content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #0d8a25;
}
.timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #0d8a25;
}

section.timeline {
    padding-top: 170px;
}
.timeline ol li div {
  position: absolute;
  left: calc(100% + 7px);
  width: 580px;
  padding: 15px;
  font-size: 1rem;
  white-space: normal;
  color: black;
  background: white;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.timeline ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
	
}

.timeline ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: white transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
  top: calc(100% + 16px);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.timeline ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent white;
}

.timeline time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
	
	.stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
	
	.timeline ol li:not(:first-child)::after {
    background: transparent;
}
	.timeline ol li{
    background:#4CAF50 !important;
	}

  .timeline {
    white-space: normal;
    overflow-x: visible;
  }

  .timeline ol {
    width: 100%;
    padding: 40px 0;
  }

  .timeline ol li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 60px auto;
    background: #d6d6d6;
    position: relative;
  }

  /* Green Dot */
  .timeline ol li::after {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Content Box */
  .timeline ol li div {
    position: relative;
    left: auto;
    top: auto !important;
    transform: none !important;
    width: 90%;
    margin: 20px auto 0 auto;
    text-align: left;
  }
	
	.timeline ol li div {
		max-width:300px !important;
	}

  /* Remove speech arrow */
  .timeline ol li div::before {
    display: none;
  }

  /* Remove alternating layout */
  .timeline ol li:nth-child(odd) div,
  .timeline ol li:nth-child(even) div {
    top: auto;
  }

  .timeline time {
    font-size: 1rem;
  }
}

.testimonial-progress-segment.active {
    background: #fc8600;
}

/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline .arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}



.timeline .disabled {
  opacity: 0.5;
}

.timeline .arrows img {
  width: 45px;
  height: 45px;
}
	button.arrow {
    border: none ;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 599px) {
  .timeline ol,
  .timeline ol li {
    width: auto;
  }

  .timeline ol {
    padding: 0;
    transform: none !important;
  }

  .timeline ol li {
    display: block;
    height: auto;
    background: transparent;
  }

  .timeline ol li:first-child {
    margin-top: 25px;
  }

  .timeline ol li:not(:first-child) {
    margin-left: auto;
  }


  .timeline ol li div {
    position: static;
    width: 94%;
    height: auto !important;
    margin: 0 auto 25px;
  }

  .timeline ol li:nth-child(odd) div {
    transform: none;
  }

  .timeline ol li:nth-child(odd) div::before,
  .timeline ol li:nth-child(even) div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 1px solid white;
    height: 25px;
  }

  .timeline ol li:last-child,
  .timeline ol li:nth-last-child(2) div::before,
  .timeline ol li:not(:last-child)::after,
  .timeline .arrows {
    display: none;
  }
}

.gromor-ecosystem {
  padding: 80px 20px;
}

.ecosystem-title {
  text-align: center;
  margin-bottom:20px;
}
.eco-description{
	text-align:center;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px 15px;
  max-width: 1500px;
  margin: auto;
  text-align: center;
}
section.gromor-ecosystem .container {
    max-width: 1500px !important;
}
.eco-circle img {
	max-width :120px;
	max-height:120px;
	object-fit:contain;
	margin: 10px 0px;
}

.eco-item {
  display: flex;
  flex-direction: column;
  align-items: center;
	gap: 10px 0;
}
.eco-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 32px 15px;
    border-radius: 25px;
    border-bottom: 13px solid #397500c9;
    border-top: 3px solid #397500c9;
}

h4.eco-title {
    font-size: 17px;
    font-weight: 800 !important;
}

.eco-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease;
}



.eco-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
  margin: 0px 0;
}

.eco-circle img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	border-radius:50%;
}

/* Responsive */
@media (max-width: 992px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .eco-circle {
    width: 180px;
    height: 180px;
  }

  .eco-text {
    font-size: 16px;
  }
}

/* DESKTOP LAYOUT (existing stays) */
.eco-item {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* MOBILE FIX */
@media (max-width: 767px) {

    .ecosystem-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .eco-item {
        flex-direction: column !important; /* Stack vertically */
        text-align: center;
		gap:0px;
    }

    .eco-circle {
        order: 1; /* Always show image first */
    }

    .eco-text {
        order: 2; /* Always show text below image */
    }

    .eco-circle img {
        max-width: 120px;
        height: auto;
    }
}
@media (max-width: 767px) {
    .eco-text {
        margin-top: 0px;
        padding: 0 10px;
    }
}

section.section.our-team {
    background: #f8fbf6;
}
/* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
        }

        .contact-icon {
            font-size: 2rem;
            color: var(--primary-green);
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-content h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .contact-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .contact-content a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-content a:hover {
            color: var(--accent-orange);
        }

        /* Contact Form */
        .contact-form {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 10px;
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #4f4f4f61;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--primary-green);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .submit-btn:hover {
            background: var(--secondary-green);
            transform: translateY(-2px);
        }

        /* Social Links */
        .social-section {
            text-align: center;
            padding: 60px 0;
            border-top: 2px solid var(--light-bg);
            border-bottom: 2px solid var(--light-bg);
        }

        .social-section h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-5px);
        }
.value-card {    border-top: 4px solid #a4e344; }
section h2 {
    font-weight: 700 !important;
}
section.vision-values-section p {
    max-width: 650px;
    margin: auto;
}
section.process-section p {
    max-width: 650px;
    margin: auto;
    padding-bottom: 50px;
}
.applications form.wpcf7-form.init{
	padding:45px;
}