       :root {
            --primary-color: #1E8449;
            --primary-color-dark: #145A32;
            --text-dark: #1a202c;
            --text-light: #4a5568;
            --background-light: #f7fafc;
            --border-color: #e2e8f0;
            --header-height: 80px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* --- MODIFICATION: Smoother Header Transition (Glitch Fix) --- */
 .header {
        background: #fff;
        padding: 0 1.5rem; /* Reduced padding for mobile */
        height: var(--header-height);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

        .logo img { max-height: 50px; display: block; }
        .nav { display: flex; align-items: center; gap: 1rem; }
        .nav-links { display: none; flex-direction: column; position: absolute; top: var(--header-height); left: 0; background: #fff; width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--border-color); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        .nav-links.active { display: flex; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; transition: color 0.3s ease; font-size: 1.1rem; padding: 1rem 1.5rem; text-align: center; }
        .nav-links a:hover { color: var(--primary-color); }
        .hamburger { display: flex; flex-direction: column; justify-content: space-around; width: 2rem; height: 2rem; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10; }
    
.hamburger .line {
    width: 2rem;
    height: 0.25rem;
    background-color: var(--text-dark);
    border-radius: 10px;
    /* Ensure a smooth transition and correct origin point */
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: center;
}

/* This is the corrected block */
.hamburger.open .line:nth-child(1) {
    /* Moves the top bar down to the center, then rotates */
    transform: translateY(10px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
    /* Fades out the middle bar */
    transform: scaleX(0);
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    /* Moves the bottom bar up to the center, then rotates */
    transform: translateY(-10px) rotate(-45deg);
}

        /* --- General Section Styling --- */
        section { padding: 60px 1.5rem; overflow: hidden; /* Important for animations */ }
        .content-container { max-width: 1200px; margin: 0 auto; }
        .section-full-width-bg { background-color: var(--background-light); }
        .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-dark); text-align: center; }
        .section-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }

        /* --- About Hero Section --- */
        .about-hero {
            position: relative;
            text-align: center;
            padding: 100px 1.5rem;
            background-color: #111;
            overflow: hidden;
        }
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('Assets/aboutbg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            filter: grayscale(50%);
            z-index: 1;
        }
        .about-hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }
        .about-hero h1 { font-size: 3rem; font-weight: 800; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .about-hero p { font-size: 1.25rem; max-width: 800px; margin: 20px auto 0 auto; opacity: 0.9; font-weight: 400; }

        /* --- MODIFICATION: Our Story Section with Animation --- */
        .our-story {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        .our-story-image, .our-story-text {
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .our-story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
        .our-story-text { text-align: left; }
        .our-story-text h3 { font-size: 2rem; font-weight: 700; margin-top: 0; margin-bottom: 20px; color: var(--primary-color-dark); }
        .our-story-text p { margin-bottom: 1rem; }

        /* --- MODIFICATION: Our Values Section with 2x2 Grid --- */
        .values-grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile first */
            gap: 30px;
        }
        .value-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .value-card:hover {
            transform: translateY(-10px); /* Increased lift */
            box-shadow: 0 20px 35px rgba(30, 132, 73, 0.12); /* More prominent shadow */
        }
        .value-icon { display: inline-flex; justify-content: center; align-items: center; width: 60px; height: 60px; border-radius: 50%; background-color: #e8f5e9; margin-bottom: 20px; }
        .value-icon svg { stroke: var(--primary-color); width: 32px; height: 32px; }
        .value-card h4 { font-size: 1.3rem; margin: 0 0 10px 0; }
        .value-card p { margin: 0; color: var(--text-light); }

        /* --- MODIFICATION: Founder Section Redesign --- */
        #founder .content-container {
            max-width: 1100px; /* Adjusted for this layout */
        }
        .founder-profile {
            display: grid;
            grid-template-columns: 1fr; /* Mobile first */
            gap: 40px;
            align-items: center;
        }
        .founder-profile + .founder-profile {
            margin-top: 100px; /* Space between each founder */
        }
        .founder-image, .founder-text {
            text-align: center;
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .founder-image img {
            width: 100%;
            max-width: 380px;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .founder-text {
            text-align: left;
        }
        .founder-text h4 { font-size: 2.2rem; font-weight: 700; margin: 0; }
        .founder-text h5 { font-size: 1.1rem; color: var(--primary-color); font-weight: 500; margin: 8px 0 20px 0; }
        .founder-text p { font-size: 1.05rem; color: var(--text-light); margin: 0; line-height: 1.8; }

        /* --- NEW: Animation Helper Classes --- */
        .animate-on-scroll { opacity: 0; }
        .slide-in-from-left { transform: translateX(-50px); }
        .slide-in-from-right { transform: translateX(50px); }
        .is-visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* --- CTA Section --- */
        .cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark));
    color: #fff;
    padding: 80px 1.5rem;
    text-align: center;
    /* Removed max-width and margin to make it full-width */
}
.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}
        .cta-section h2 { font-size: 2.5rem; font-weight: 800; margin: 0 0 15px 0; }
        .cta-section p { font-size: 1.1rem; opacity: 0.9; margin: 0 0 30px 0; }
        .cta-button { background-color: #fff; color: var(--primary-color-dark); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: transform 0.3s ease, box-shadow 0.3s ease; display: inline-block; }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

        /* --- Footer (Consistent) --- */
        .footer { background: var(--text-dark); color: #fff; padding: 50px 1.5rem; text-align: center; }
        .footer p { margin: 5px 0; }
        .footer a { color: var(--primary-color); text-decoration: none; }
        .footer .logo-footer img { max-height: 45px; margin-bottom: 15px; }

        /* --- Media Queries for Desktop --- */
        @media (min-width: 769px) {
            .header { padding: 0 2.5rem; }
            .logo img { max-height: 55px; }
            .hamburger { display: none; }
            .nav-links { display: flex; flex-direction: row; position: static; border: none; box-shadow: none; padding: 0; width: auto; gap: 2rem; }
            .nav-links a { padding: 0; font-size: 1rem; }
            .nav-links a:hover { background-color: transparent; }
            section { padding: 100px 20px; }
            .about-hero { padding: 140px 20px; }
            .about-hero h1 { font-size: 4.5rem; }

            .our-story { grid-template-columns: 1fr 1.2fr; gap: 80px; }
            
            /* MODIFICATION: Enforcing 2x2 grid for values */
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            
            /* MODIFICATION: Founder profile side-by-side layout */
            .founder-profile { grid-template-columns: 1fr 1fr; gap: 80px; }
            .founder-profile.reverse { grid-template-areas: "text image"; }
            .founder-profile.reverse .founder-text { grid-area: text; }
            .founder-profile.reverse .founder-image { grid-area: image; }
        }
        /* ===================================================================== */
/* --- MODIFICATION 2.0: Complete Redesign of Principles Section --- */
/* ===================================================================== */

.principles-list {
    max-width: 1100px; /* Increased width for new layout */
    margin: 60px auto 0 auto;
}

.principle-item {
    /* This is the base for both mobile and desktop */
    transition: background-color 0.3s ease;
}

.principle-item + .principle-item {
    margin-top: 1rem; /* Spacing between accordions on mobile */
}

.principle-accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.principle-icon img {
    width: 60px; /* Slightly smaller for a tighter mobile layout */
    height: 60px;
    border-radius: 50%;
}

.principle-text h4 {
    font-size: 1.25rem; /* Adjusted for mobile */
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.principle-text p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}


/* ------------------------------------------- */
/* --- Accordion Refinements (Mobile View) --- */
/* ------------------------------------------- */
@media (max-width: 768px) {
    .principle-item {
        background-color: #fff;
        border-bottom: 1px solid var(--border-color);
        padding: 1.25rem 1rem;
    }
    .principle-item:first-child {
        border-top: 1px solid var(--border-color);
    }
    .principle-item.active {
        background-color: var(--background-light); /* Highlight when open */
    }

    .principle-accordion-header {
        position: relative;
    }

    /* The +/- indicator icon */
    .principle-accordion-header::before {
        content: '+';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        font-weight: 300;
        color: var(--primary-color);
        /* Smoother animation */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .principle-item.active .principle-accordion-header::before {
        transform: translateY(-50%) rotate(45deg);
    }
    
    .principle-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
    }
    .principle-item.active .principle-accordion-content {
        max-height: 500px; 
        padding-top: 1.25rem;
        transition: max-height 0.5s ease-in, padding-top 0.5s ease-in;
    }
}


/* ------------------------------------------------ */
/* --- Dynamic Feature Cards (Desktop View) --- */
/* ------------------------------------------------ */
@media (min-width: 769px) {
    .principles-list {
        display: grid;
        grid-template-columns: 1fr; /* Each card takes a full row */
        gap: 30px; /* Space between the cards */
    }

    /* The main card for each principle */
    .principle-item {
        background-color: var(--background-light);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 40px;
        display: flex; /* We will use flexbox for the internal layout */
        flex-direction: column; /* Stacks the header and content vertically */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .principle-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }
    
    /* REMOVED: No more alternating layout needed */
    .principle-item:nth-child(even) {
        flex-direction: column; /* Ensure consistency */
    }

    /* The new unified "Title Block" */
    .principle-accordion-header {
        display: flex;
        align-items: center; /* Vertically aligns icon and text */
        gap: 25px; /* Space between icon and heading */
        cursor: default; /* Not clickable on desktop */
        margin-bottom: 20px; /* Space between title block and paragraph */
    }
    
    /* REMOVED: The circle style is gone */
    .principle-icon {
        flex-shrink: 0;
        /* No background, no large size, no border-radius */
    }
    .principle-icon img {
        width: 70px; /* Control icon size directly */
        height: 70px;
    }

    /* The heading is now part of the title block */
    .principle-text h4 {
        font-size: 1.8rem;
        margin-bottom: 0; /* Margin is now on the header container */
        color: var(--primary-color-dark);
    }
    
    /* The descriptive paragraph */
    .principle-accordion-content {
        max-height: none;
        overflow: visible;
        padding-top: 0; /* Padding is handled by the header's margin */
    }

    /* REMOVED: This class is no longer needed for styling */
    .principle-text {
        padding: 0;
        box-shadow: none;
    }

    /* Hide mobile-only elements */
    .principle-accordion-header::before {
        display: none;
    }
}