  
        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-color: #ff9900;
            --secondary-color: #ffd700;
            --accent-color: #ff4d4d;
            --dark-color: #1e2a44;
            --light-color: #f7f9fb;
            --font-family: 'Baloo 2', cursive;
            --gradient-bg: linear-gradient(135deg, #ff4d4d 0%, #feca57 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        h1, h2, h3, h4 {
            font-weight: bold;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%; /* Ensure container fits within viewport */
        }

        section {
            padding: 8rem 0;
            position: relative;
            width: 100%;
        }

        /* Reusable Components */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gradient-bg);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
            background: linear-gradient(135deg, #feca57 0%, #ff4d4d 100%);
        }

        h2 {
            font-size: 3.2rem;
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--dark-color);
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--gradient-bg);
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        /* Header & Nav */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            z-index: 1000; /* Ensure header is above mobile menu */
            transition: background-color 0.4s ease;
        }

        header.scrolled {
            background-color: rgba(30, 42, 68, 0.9);
            backdrop-filter: blur(8px);
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            z-index: 1100; /* Ensure logo is above mobile menu */
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--accent-color);
        }

        /* Mobile Menu */
        .burger-menu {
            display: none;
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1100; /* Ensure burger is above mobile menu */
        }

        .burger-menu span {
            display: block;
            height: 5px;
            width: 100%;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 10px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -8px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(30, 42, 68, 0.95);
            backdrop-filter: blur(8px);
            z-index: 999; /* Below logo and burger */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-nav.open {
            display: flex;
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav a {
            color: white;
            font-size: 2.2rem;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to right, rgba(255, 153, 0, 0.3), rgba(255, 215, 0, 0.2)), url("image/about.jpeg") no-repeat center center/cover;
            color: white;
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 50% 20%;
            border-bottom-right-radius: 50% 20%;
        }

        .hero h1 {
            font-size: 4rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: bounceIn 1s ease-out;
        }

        /* Mission Section */
        .mission {
            background-color: #fff8e1;
            text-align: center;
        }

        .mission h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .mission p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
        }

        /* Team Section */
        .team {
            background-color: var(--light-color);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
            margin-bottom: 1rem;
        }

        .team-card h3 {
            font-size: 1.5rem;
        }

        .team-card p {
            color: gray;
        }

        /* Story Section */
        .story {
            background-color: var(--dark-color);
            color: white;
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 8rem 2rem;
            border-radius: 50px;
            margin: 4rem auto;
            position: relative;
        }

        .story h2 {
            color: var(--primary-color);
        }

        .story-image {
            flex: 1;
            min-width: 300px;
        }

        .story-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: float 5s ease-in-out infinite;
        }

        .story-content {
            flex: 2;
        }

        .story-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Values Section */
        .values {
            background-color: #fff8e1;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .value-card img {
            width: 180px;
            height: 180px;
            margin-bottom: 1rem;
            object-fit: contain;
        }

        /* Why We Do It Section */
        .why-we-do-it {
            background-color: var(--accent-color);
            color: white;
            text-align: center;
            border-top-left-radius: 50% 10%;
            border-top-right-radius: 50% 10%;
        }

        .why-we-do-it h2 {
            font-size: 3rem;
        }

        /* Achievements Section */
        .achievements {
            background-color: var(--light-color);
            text-align: center;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .achievement-item h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .achievement-item p {
            font-size: 1.2rem;
        }

        /* Call to Action Section */
        .cta {
            background: linear-gradient(to right, #ffd700, #ff9900);
            color: white;
            text-align: center;
            padding: 8rem 0;
            border-top-left-radius: 50% 10%;
            border-top-right-radius: 50% 10%;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            background-color: #fff8e1;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-item a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent-color);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-color);
        }

        .social-icons {
            margin-top: 1.5rem;
        }

        .social-icons a {
            color: white;
            margin: 0 0.8rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.25);
        }

     
        /* Animations */
        @keyframes bounceIn {
            0% { transform: scale(0.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes rollEgg {
            0% { transform: translateX(0) rotate(0); }
            100% { transform: translateX(100vw) rotate(720deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header .main-nav {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .story {
                flex-direction: column;
                text-align: center;
            }

            .story-image img {
                width: 80%;
                max-width: 100%; /* Prevent image overflow */
            }

            .story-content {
                padding: 2rem;
            }

            .story-content h2, .mission h2, .why-we-do-it h2, .cta h2 {
                font-size: 2rem;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            /* Ensure no horizontal scroll */
            section, .container, .story, .team-grid, .values-grid, .achievements-grid, .contact-grid {
                max-width: 100%;
                overflow-x: hidden;
            }
        }
   