    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x500?text=About+Us+Hero');
        background-size: cover;
        background-position: center;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        /* padding: 2rem; */
    }

    .hero-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #00000094;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        animation: fadeInUp 1s ease-out;
        color: #fff;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    /* About Description Section */
    .about-description {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about_img {
        height: 100%;
        object-fit: cover;
    }

    .about-description img {
        width: 100%;
        border-radius: 8px;
        opacity: 0;
        animation: fadeInScale 0.8s ease-out forwards;
    }

    .about-description-content h2 {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .about-description-content p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.8;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.1s forwards;
    }

    .about-description-content ul {
        list-style: none;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }

    .about-description-content li {
        padding: 0.5rem 0;
        padding-left: 2rem;
        position: relative;
        color: #555;
    }

    .about-description-content li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #2fa55a;
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* Mission & Vision Section */
    .mission-vision {
        background-color: #f8f9fa;
        padding: 60px 20px;
    }

    .mission-img img,
    .vision-img img {
        border-radius: 10px;
        height: 100%;
        width: 100%;
    }

    .mission-img,
    .vision-img {
        height: 310px;
    }

    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 2rem;
        /* color: #000; */
    }

    .mission-vision-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .mission-card,
    .vision-card {
        background: white;
        padding: 3rem;
        border-radius: 8px;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .vision-card {
        animation-delay: 0.2s;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.8rem;
        color: #2fa55a;
        margin-bottom: 1rem;
    }

    .mission-card p,
    .vision-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.8;
    }



    .logo-slider-container {
        background: #979797;
        padding: 2rem 0;
        border-radius: 8px;
        margin-top: 2rem;
    }

    .logo-slider-section {
        background-color: #f9f9f9;
        padding: 4rem 0;
        overflow: hidden;
    }

    .logo-slider-section h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #2FA55A;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 3rem;
        font-size: 1.1rem;
    }

     .logo-slider-section .slick-slide img {
        width: 130px;
        height: 130px;
        object-fit: cover;
    }

    .logo-slider .slick-track .slick-slide.slick-current.slick-active.slick-center img {
        filter: grayscale(0%);
    }

    .logo-slider .slick-track .slick-slide {
        display: flex;
        justify-content: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero {
            height: 300px;
        }

        .vision-img {
            order: 4;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .about-description {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 0;
        }

        .mission-vision-container {
            grid-template-columns: 1fr;
        }


        .about-description-content h2 {
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .cta-section h2 {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 480px) {

        .hero-content h1 {
            font-size: 1.5rem;
        }

        .about-description-content h2 {
            font-size: 1.5rem;
        }

        .stats-container {
            grid-template-columns: 1fr;
        }

        .team-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Intersection Observer - Scroll Animations */
    /* .scroll-animate {
    opacity: 0;
    animation-fill-mode: forwards;
    } */

    .scroll-animate.in-view {
        animation: fadeInUp 0.8s ease-out forwards;
    }