@media (max-width: 992px) {
    /* HEADER NAV */
    .nav-menu {
        display: none; /* later hamburger add karenge */
    }

    .logo-top {
        font-size: 16px;
    }

    .logo-bottom {
        font-size: 9px;
    }

    /* HERO SECTION */
    .hero-3col {
        flex-direction: column;
        height: auto;
    }

    .hero-col {
        height: 70vh;
    }

    .hero-content {
        bottom: 30px;
        left: 20px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

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

    .about-content h2 {
        font-size: 32px;
    }

    .image-box {
        display: none;
    }

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

    .benchmark-container {
        grid-template-columns: 1fr;
    }

    .benchmark-content h2 {
        font-size: 42px;
    }

    .benchmark-image img {
        height: 350px;
    }

    .benchmark-badge {
        left: 20px;
        bottom: 20px;
    }

     .cap-row,
    .cap-row.reverse {
        grid-template-columns: 1fr;
    }

    .cap-icon {
        height: 120px;
    }

    .cap-content {
        padding: 30px;
    }

    .cap-header h2 {
        font-size: 36px;
    }

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

     .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlights-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }

}