/* Tablets and Small Laptops */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets and Large Phones */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Hidden by default */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

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

    .about-stats {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Phones */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.2rem;
    }
}