    :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #ff6b6b;
            --accent: #4ecdc4;
            --dark: #2d3436;
            --light: #f9f9f9;
            --gray: #636e72;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logoimg {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
            transition: var(--transition);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
            font-size: 16px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .donate-btn {
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 107, 107, 0.4);
            background: #ff5252;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 20px;
            transform: translateY(-150%);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu a i {
            color: var(--primary);
        }

        .mobile-donate {
            margin-top: 10px;
            text-align: center;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 85vh;
            overflow: hidden;
            margin-top: 70px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }

        .slide-content h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            animation: fadeInUp 1s ease-out;
        }

        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            padding: 60px 0;
        }

        .stat-card {
            text-align: center;
            padding: 25px;
            border-radius: var(--radius);
            background: white;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--primary);
            font-size: 28px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-text {
            color: var(--gray);
            font-weight: 500;
            font-size: 0.95rem;
        }


        /*--------------------About US-------------------*/
        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            padding: 60px 40px;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            color: #2c6e9b;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #27ae60;
            margin: 15px auto;
            border-radius: 2px;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
            color: #444;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Mission & Vision */
        .mission-vision {
            padding: 60px 40px;
            background: #f1f9ff;
        }

        .mv-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .mv-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .mv-icon {
            background: linear-gradient(135deg, #ff7e00 0%, #2ecc71 100%);
            color: white;
            font-size: 24px;
            padding: 25px;
            text-align: center;
        }

        .mv-content {
            padding: 30px;
        }

        .mv-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: #2c6e9b;
        }

        .mv-content p {
            font-style: italic;
            font-size: 18px;
            line-height: 1.8;
            color: #555;
        }

        /* Programs */
        .programs {
            padding: 60px 40px;
            background: white;
        }

        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: #f8f8f8;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .program-img {
            height: 200px;
            overflow: hidden;
        }

        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .program-card:hover .program-img img {
            transform: scale(1.1);
        }

        .program-content {
            padding: 20px;
        }

        .program-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            margin-bottom: 15px;
            color: #2c6e9b;
        }

        .program-content p {
            color: #666;
        }

        /* Values */
        .values {
            padding: 60px 40px;
            background: #f1f9ff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .value-item {
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 40px;
            color: #ff7e00;
            margin-bottom: 20px;
        }

        .value-item h3 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 15px;
            color: #2c6e9b;
        }

        .value-item p {
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title {
                font-size: 30px;
            }

            .about, .mission-vision, .programs, .values {
                padding: 50px 30px;
            }
            
            .about-content, .mv-container {
                flex-direction: column;
            }
            
            .about-text p{font-size: 12px;}
            .mv-card {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 40px 15px;
            text-align: left;
            background-position: 65% center;
            min-height: 300px;
                display: flex;
                align-items: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .about, .mission-vision, .programs, .values {
                padding: 40px 20px;
            }

            .about-text, .about-image {
                min-width: 100%;
            }

            .program-grid, .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Features Section */
        .features {
            background: #f0f7ff;
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 20px auto 0;
            font-size: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .feature-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 115, 232, 0.7), rgba(78, 205, 196, 0.7));
            opacity: 0.8;
            transition: var(--transition);
        }

        .feature-card:hover .feature-img::before {
            opacity: 0.5;
        }

        .feature-content {
            padding: 25px;
        }

        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }

        .feature-content p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .learn-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .learn-more:hover {
            color: var(--secondary);
            gap: 12px;
        }

        /* Gallery Sections */

     .load-more {background: linear-gradient(45deg, orange, white, green);
                 display: flex;
                 justify-content: center; /* horizontally center */
                 align-items: center;     /* vertically center (if parent has height) */
                 margin: 20px 0;          /* optional spacing */
}
        #load{border-radius:50px;
            padding: 10px;
             border-color: #361b97;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 18px;
  font-weight: bold; 
            cursor: pointer;
             transition: background 0.3s;
            }
    
    #load:hover{background-color: #25D366
                ;}

        .gallery-section {
            padding: 80px 0;
            background: white;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            height: 220px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 12px;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .video-gallery .gallery-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--dark);
        }

        .video-gallery .gallery-item i {
            font-size: 50px;
            color: white;
            opacity: 0.8;
            transition: var(--transition);
        }

        .video-gallery .gallery-item:hover i {
            color: var(--secondary);
            opacity: 1;
            transform: scale(1.2);
        }

        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f0f7ff, #e3f2fd);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-text p {
            margin: 0;
            color: var(--gray);
        }

        .contact-form {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-block;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(26, 115, 232, 0.3);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
        }

        .modal-content img, .modal-content iframe {
            width: 100%;
            height: auto;
            max-height: 80vh;
            border-radius: var(--radius);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }

        /* Projects Section */
        .projects {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .project-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .project-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .project-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .project-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .project-card:hover .project-img::before {
            background: rgba(0, 0, 0, 0.1);
        }

        .project-content {
            padding: 20px;
        }

        .project-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .project-content p {
            font-size: 0.95rem;
            color: var(--gray);
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: var(--gray);
            font-size: 0.85rem;
        }

        /* Impact Section */
        .impact {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .impact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,261.3C672,256,768,224,864,218.7C960,213,1056,235,1152,229.3C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .impact-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .impact h2 {
            font-size: 2.3rem;
            margin-bottom: 25px;
        }

        .impact p {
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .impact-stat {
            text-align: center;
        }

        .impact-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }

        .impact-text {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Floating Elements */
        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .floating-1 {
            animation-delay: 0s;
        }

        .floating-2 {
            animation-delay: 2s;
        }

        .floating-3 {
            animation-delay: 4s;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b2bec3;
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .slide-content h2 {
                font-size: 2.3rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-slider {
                height: 75vh;
                margin-top: 70px;
            }
            
            .slide-content h2 {
                font-size: 1.9rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .features-grid, .projects-grid, .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .stat-card {
                padding: 20px;
            }
            
            .impact h2 {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 65vh;
            }
            
            .slide-content h2 {
                font-size: 1.7rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .feature-img, .project-img {
                height: 180px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .impact-number {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 20px;
            }
        }

    
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}    

     /*---------slide right to left-----------------*/
        .osf-gallery-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .osf-gallery-track {
            display: flex;
            animation: osf-scroll 30s linear infinite;
            width: calc(250px * 14);
        }

        .osf-gallery-item {
            height: 200px;
            width: 250px;
            margin: 0 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .osf-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .osf-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .osf-gallery-container:hover .osf-gallery-track {
            animation-play-state: paused;
        }

        @keyframes osf-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 7));
            }
        }   

    /*--------------Form--------------------*/
    form {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button.submit-btn {
  background: orange;
  border: none;
  padding: 12px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button.submit-btn:hover {
  background: green;
}
    