@media only screen and (min-width: 480px) {

}

@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 720px) {

}

@media only screen and (min-width: 840px) {

}

@media only screen and (min-width: 960px) {

}

@media only screen and (min-width: 1080px) {

}

@media only screen and (min-width: 1200px) {
    .logo img {
        width: 128px;
    }
    header .custom-container {
        flex-wrap: nowrap;
    }
    .common-h2 p {
        padding-top: 2rem;
    }
    .hamburger {
        display: none;
    }
    .nav-menu {
        position: static;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        transform: translateY(0);
        width: auto;
        gap: 2rem;
        justify-content: space-between;
        width: calc(50% + 210px);
    }
    .nav-links {
        flex-direction: row;
        gap: 3rem;
    }
    .nav-links li {
        display: inline-block; /* Or flex item */
    }
    a, p {
        font-size: 0.9rem;
    }
    .hero-section .custom-container h1 {
        font-size: 4.5vw;
    }
    .about-section .custom-container {
        justify-content: space-between;
    }
    .about-ryt {
        width: calc(50% - 1rem);
    }
    .about-ryt p {
        font-size: 1rem;
    }
    .about-lft {
        width: calc(35% - 1rem);
    }
    .about-lft h2 {
        flex-direction: row;
        justify-content: space-between;
    }
    .service-section .custom-container > h2 {
        max-width: 460px;
    }
    .service-item {
        display: grid;
        grid-template-columns: 0.5fr 0.5fr 2fr 2fr;
        align-items: center;
        gap: 1rem;
        padding: 3rem 0;
    }
    .service-number {
        grid-column: 1 / 2;
    }
    .service-icon {
        grid-column: 2 / 3;
    }
    .service-name {
        grid-column: 3 / 4;
    }
    .work-gallery {
        gap: 4rem;
        justify-content: space-between;
    }
    .work-item {
        width: calc(33.33% - 2.67rem);
    }
    .blog-list {
        gap: 4rem;
        justify-content: space-between;
    }
    .blog-item {
        width: calc(33.33% - 2.67rem);
    }
    .blog-item div {
        gap: 1rem;
        padding: 2rem;
    }
    .blog-item h3 {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.5;
    }
    .blog-item a {
        font-size: 0.9rem;
    }
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .footer-contact h2 {
        font-size: 1.5rem;
    }
    .footer-contact-lft p {
        margin-top: 0.5rem;
        font-size: 1rem;
    }
    .footer-bottom p {
        font-size: 0.7rem;
        text-align: left;
    }
}

@media only screen and (min-width: 1320px) {

}