
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    section {
        padding: 80px 0;
    }

    h2 {
        font-size: 2.5rem;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .nav-links a {
        font-size: 26px;
        color: #000;
    }

    .abimage {
        margin: 100px 0 0 0;
    }

}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .marquee-content span {
        font-size: 1rem;
        padding: 0 30px;
    }

    .footer-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-links {
        margin-bottom: 30px;
    }
    .footer-logo img {
    height: 55px;
}

.menu-info h3 {
    font-size: 18px;
}

.exp-badge {
    bottom: 0px;
    right: 0px;
    padding: 20px;
}

.mission{
    padding-top: 0 !important;
}


}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .logo img {
        height: 50px;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 2000px) and (min-width: 1200px) {

    .container {
        max-width: 1200px;
    }
}