﻿@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
    .custom-navbar {
        padding: 12px 20px;
    }
    .enquiry-btn {
        display:flex;
        margin:0 20px;
        text-align: center !important;
        justify-content:center;
    }
    .sig-container{
        gap:40px;
    }
    .sig-right {
        border-left: none;
        padding-left: 10px;
        gap: 20px;
    }
    /* Stats */
    .stat-card {
        border-right: none;
    }

    .stat-text {
        font-size: 18px;
    }
    .project-content{
        padding:20px 10px;
    }
    .cta-content {
        padding: 20px 10px;
    }
    .project-image img {
        height:280px;
    }
   /*-- about --*/
    .banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .vertical-breadcrumb {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: normal;
    }

    .thin-line {
        width: 40px;
    }
    .logic-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .logic-divider {
        display: none;
    }
    .why-adroit::before {
        display: none;
    }
    .lightbox-nav {
        top: auto;
        bottom: 30%;
        transform: none;
        font-size: 18px;
        padding: 8px 8px;
        background: rgba(0, 0, 0, 0.75);
    }

        .lightbox-nav.prev {
            left: 15px;
        }

        .lightbox-nav.next {
            right: 15px;
        }
}
@media (max-width: 991px) {
    .sticky-featured {
        position: static;
        top: auto;
    }
    .approach-visual img {
        height: 360px;
    }
    .hero-image-wrap img {
        height: 260px;
    }
}

/* ===============================
   MOBILE SLIDE NAV FROM RIGHT
================================ */

@media (max-width: 991px) {
    
    /* FULLSCREEN MENU */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        padding-top: 130px;
        z-index: 9998;
        transition-delay: 0s;
    }

        .mobile-menu.show {
            right: 0;
        }

        /* CENTER MENU */
        .mobile-menu .navbar-nav {
            flex-direction: column;
            align-items: center;
        }

        .mobile-menu .nav-item {
            margin: 3px 0;
        }

        .mobile-menu .nav-link {
            font-size: 1.3rem;
            font-weight: 400;
            color: #fff !important;
            letter-spacing: 2px;
            padding: 12px 28px;
        }

            .mobile-menu .nav-link:hover {
                background: rgba(255,255,255,0.15);
                border-radius: 30px;
            }

    /* ===============================
       HAMBURGER → CROSS
    ================================ */

    .custom-toggler {
        border: none;
        background: transparent;
        padding: 10px;
        z-index: 10000;
    }

        .custom-toggler span {
            display: block;
            width: 28px;
            height: 3px;
            background: #000;
            margin: 6px 0;
            transition: transform 0.3s ease, opacity 0.2s ease;
            transition-delay: 0.35s;
        }

        /* ACTIVE STATE (X) */
        .custom-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .custom-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .custom-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .custom-toggler:focus {
            box-shadow: none;
        }
}