      
         /* Basic Reset */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        /* Background Video */
        .video-container {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: 0;
        }
        
        .video-container video {
           width: 100%;
           height: 100%;
           object-fit: cover;
        }
        
        /* Overlay for better text visibility */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        /* Navbar */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            z-index: 1000;
            background-color: transparent; /* Initially transparent */
            transition: background-color 0.3s ease; /* Smooth transition for non-GSAP fallback */
        }
        
        /* Navbar Logo */
        .logo img {
            position: absolute;
            height: 40vh;
            width: 40vw;
            margin-top: -15vh;
            margin-left: -6vw;
            width: auto;
        }
        
        /* Navbar Links */
        .nav-links {
            display: flex;
            list-style: none;
            margin-top: 20px;
            margin-right: 20px;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: white; /* White text for better visibility on video */
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Shadow for readability */
            cursor: pointer;
        }
        
        .nav-links a:hover {
            color: #e0e0e0;
        }
        
        /* Scrolled state - applied via JavaScript */
        #navbar.scrolled {
            background-color: #2c8a4a; /* Theme green color */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        #navbar.scrolled .nav-links a {
            color: white;
            text-shadow: none;
        }
        
        /* Adjust Body Content */
        body {
            color: #2c8a4a;
            background: linear-gradient(to bottom, #e0f7ea, #ffffff);
            scroll-behavior: smooth;
        }
        
        /* Hero Section */
        .hero {
            position: absolute;
            top: 78%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 90%;
            max-width: 1000px;
            color: white;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
            text-transform: uppercase;
            background: linear-gradient(to right, #fdfdfd, #549c73);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInUp 1.2s ease-out;
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
            line-height: 1.6;
            animation: fadeInUp 3s ease-out;
            color: #f9f9f9;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero h2:after {
            content: "";
            display: block;
            width: 100px;
            height: 4px;
            background: #4cbb6c;
            margin: 15px auto;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        /* Content Sections Styling */
        .section-title {
            color: #2c8a4a;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 1.5rem;
            padding-top: 2rem;
            font-weight: 600;
        }
        
        .section-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        /* First paragraph styling */
        .first-para {
            color: #181616;
            width: 80%;
            max-width: 1200px;
            margin: 40px auto;
            font-weight: 400;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        /* Objectives section styling */
        .objectives {
            color: #333;
            width: 80%;
            max-width: 1200px;
            margin: 40px auto;
            font-weight: 400;
        }
        
        .objectives ol {
            padding-left: 2rem;
            margin-top: 1rem;
        }
        
        .objectives li {
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }
        
        /* Working process section styling */
        .working {
            color: #333;
            width: 80%;
            max-width: 1200px;
            margin: 40px auto;
            font-weight: 400;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq {
            max-width: 1000px;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            color: black;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq h2 {
            color: #2c8a4a;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #c8e6c9;
            padding-bottom: 1.5rem;
        }
        
        .faq-question {
            font-weight: bold;
            color: #2c8a4a;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        
        .faq-answer {
            line-height: 1.6;
        }
        
        .faq-answer ul {
            padding-left: 2rem;
            margin-top: 0.5rem;
        }
        
        .faq-answer li {
            margin-bottom: 0.5rem;
        }
        
        footer {
            background-color: #2c8a4a;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }
        
        /* Main content container - for proper scrolling */
        .main-content {
            padding-top: 0; /* No padding as navbar is transparent initially */
        }
        
        /* Adding section IDs for smooth scrolling */
        section {
            scroll-margin-top: 80px; /* To account for fixed navbar */
        }
        
        html {
            scroll-behavior: smooth; /* Enable smooth scrolling for the entire page */
        }
        
        form {
            display: flex;
            flex-direction: column;
            max-width: 400px;
            margin: auto;
        }
        
        form input, form textarea {
            margin: 10px 0;
            padding: 10px;
            width: 100%;
        }
        
        button {
            background-color: #007bff;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
        }
        
        .social-media {
            text-align: center;
            margin-top: 20px;
        }
        
        .social-media a {
            margin: 0 10px;
            font-size: 24px;
            color: #333;
            text-decoration: none;
        }
        
        .social-media a:hover {
            color: #007bff;
        }
