         :root {
            --bg-green: #106c43;
            --card-bg: #d5ffe2;
            --primary-dark: #1e5d44;
            --accent-yellow: #fdbf2d;
            --text-color: #103c29;
            --max-width: 1000px; /* New max-width for main content */
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1e5d44; /* Light grey background for the whole page, can be adjusted */
            color: var(--text-color);
            line-height: 1.6;
        }
        /* Header */
        header {
             width: 80%;
            background-color: var(--card-bg); /* Using a lighter green for header */
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 800;
            margin: 40px auto;
            border-radius: 40px;

        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-left: 50px; /* Adjust as per screenshot */
        }

        .logo {
           
            width: 127px;
            height:40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background:url('logo1.png');
        }

        .header-button {
            background-color: var(--bg-green); /* Using bg-green for header button */
            color:  #fdbf2d; /* Using card-bg for text */
            border: none;
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .header-button:hover {
            background-color: var(--primary-dark);
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
            margin-right: 50px; /* Adjust as per screenshot */
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--bg-green);
        }

        /* Main Content Sections */
        main {
            max-width: var(--max-width); /* Defines the overall content column width */
            margin: 0 auto; /* Center the main content area */
            padding: 0 20px; /* Horizontal padding for main content */
        }
/* Your existing .explore-button CSS should already apply to the hero button */
.explore-button {
    background-color: var(--bg-green);
    color: var(--accent-yellow);
    border: none;
    max-height: 70px;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    align-self: center;
    position: relative;
    z-index: 3;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    pointer-events: auto; /* <--- ADD THIS LINE */
}

.explore-button:hover {
    background-color: var(--primary-dark);
}
       
         /* hero  Content Sections */
        .hero-section {
            height: 100vh;
            background: linear-gradient(135deg, #106c43 0%, #1e5d44 50%, #103c29 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .shape:nth-child(1) {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            animation-delay: -2s;
        }

        .shape:nth-child(2) {
            top: 60%;
            right: 15%;
            width: 60px;
            height: 60px;
            background: #fdbf2d;
            transform: rotate(45deg);
            animation-delay: -8s;
        }

    .shape:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 100px;
            height: 100px;
            background: #d5ffe2;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: -15s;
        }

        .shape:nth-child(4) {
            top: 15%;
            right: 25%;
            width: 70px;
            height: 70px;
            background: #fdbf2d;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation-delay: -5s;
        }

        .shape:nth-child(5) {
            bottom: 20%;
            right: 10%;
            width: 90px;
            height: 90px;
            background: #d5ffe2;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            animation-delay: -12s;
        }

        .shape:nth-child(6) {
            top: 45%;
            left: 5%;
            width: 85px;
            height: 85px;
            background: #fdbf2d;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            animation-delay: -18s;
        }

        .shape:nth-child(7) {
            bottom: 45%;
            left: 35%;
            width: 65px;
            height: 65px;
            background: #d5ffe2;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
            animation-delay: -10s;
        }

        .shape:nth-child(8) {
            top: 75%;
            right: 35%;
            width: 55px;
            height: 55px;
            background: #fdbf2d;
            border-radius: 50%;
            animation-delay: -7s;
        }

        .shape:nth-child(9) {
            top: 35%;
            left: 45%;
            width: 0;
            height: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 60px solid #d5ffe2;
            background: none;
            animation-delay: -14s;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section {
            padding: 100px 0;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #106c43;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #106c43, #fdbf2d);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .feature-card {
            background: #d5ffe2;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(16, 108, 67, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #106c43, #fdbf2d);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(16, 108, 67, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #106c43, #fdbf2d);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #fff;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #103c29;
            margin-bottom: 20px;
        }

        .feature-description {
            color: #103c29;
            line-height: 1.8;
            font-size: 1rem;
        }

        .stats-section {
            background: linear-gradient(135deg, #106c43, #1e5d44);
            padding: 100px 0;
            color: #fff;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #fdbf2d, #d5ffe2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-section {
            background: #f8f9ff;
            padding: 100px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #106c43;
            margin-bottom: 30px;
        }

        .cta-description {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #106c43, #fdbf2d);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(16, 108, 67, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 108, 67, 0.4);
        }

             
.main-footer {
    background-color: #1b482e; /* Dark green */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align logo to the start */
    color: white;
    margin-top: auto; /* Pushes the footer to the bottom */
}

.footer-logo {
    margin-bottom: 40px; /* Space below the logo */
    margin-left: 20px; /* Adjust as needed */
}

.footer-logo img {
    max-width: 130px; /* Adjust logo size */
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px; /* Space between the two main content boxes */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.social-section,
.contact-section {
    background-color: #C8F5C8; /* Light green */
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    color: #333; /* Darker text for light background */
    flex: 1; /* Allow sections to grow */
   max-width: 350px; /* Minimum width for responsiveness */
    max-height: 125px; /* Minimum width for responsiveness */
}

.social-section h3,
.contact-section h3 {
    margin-top: 0;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px; /* Slightly rounded corners for icons */
    font-size: 1.5em;
    color: white; /* Default icon color, will be overridden by specific classes */
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Specific social icon colors */
.social-icon.youtube { background-color: #FF0000; }
.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white; /* Instagram gradient */
}
.social-icon.tiktok { background-color: #000000; }
.social-icon.facebook { background-color: #1877F2; }




.separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px; /* Adjust height based on content sections */
    position: relative;
    margin: 0 20px; /* Space around the separator */
}

.separator .line {
    width: 2px;
    height: 100%;
    background-color: white; /* White line */
}

.separator .circle {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    position: absolute; /* Position circles relative to separator */
}

.separator .circle:first-child {
    top: 0;
}

.separator .circle:last-child {
    bottom: 0;
}


/* --- Keep your existing Header and Toggle CSS as is mobile version --- */
/* Header */
header {
    width: 80%;
    background-color: var(--card-bg);
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 800;
    margin: 40px auto;
    border-radius: 40px;
}

/* Regular Navigation (hide on mobile by default) */
header nav {
    display: block;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--bg-green);
}

/* Mobile Menu Elements - HIDDEN by default on desktop */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu,
.mobile-page-title { /* Added .mobile-page-title here */
    display: none;
}