.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo img {
    height: 40px;
}

.nav-menu {
    margin: 0 20px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #e60023;
}

.download-btn {
    border: 2px solid #e60023;
    color: #e60023;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: #e60023;
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    display: block;
}

@media (max-width:1024px) {

    .nav-menu ul {
        gap: 18px;
        font-size: 14px;
    }

}

@media (max-width:768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 57px;
        left: -20px;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .nav-menu.active {
        display: block;
    }

    .header-right {
        display: none;
    }

}

@media (max-width:480px) {

    .logo img {
        height: 30px;
    }

    .nav-menu ul li a {
        font-size: 14px;
    }

}



.title-2 {
    font-size: 2rem;
}

.on-authority-section {
    padding: 90px 0;
    background: #0b1d3a;
    color: white;
}

.on-authority-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px;
    align-items: center;
}

.on-authority-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.on-authority-text p {
    color: #c9d4e5;
    margin-bottom: 14px;
    line-height: 1.7;
}

.on-authority-stats {
    display: grid;
    gap: 20px;
}

.on-stat-card {
    background: #142b56;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.on-stat-card:hover {
    transform: translateY(-6px);
    background: #1b3c7a;
}

.on-stat-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #4da3ff;
}

@media(max-width:900px) {

    .on-authority-grid {
        grid-template-columns: 1fr;
    }

    .on-authority-text {
        text-align: center;
    }

}


/*  why mumbai  */

.why-section {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}

.section-title3 {
    font-size: 30px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    background: #0f172a;
    color: #fff;
}

@media(max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* process */
/* SECTION */

.on-process-section {
    padding: 110px 20px;
    background: #f7f8fb;
    text-align: center;
}

.on-process-title {
    font-size: 32px;
    margin-bottom: 70px;
    font-weight: 700;
}


/* GRID */

.on-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}


/* STEP */

.on-process-step {
    text-align: center;
    position: relative;
}


/* CIRCLE */

.on-process-circle {
    width: 58px;
    height: 58px;
    background: #1c64f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: auto;
    margin-bottom: 14px;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}


/* TITLE */

.on-process-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}


/* HOVER */

.on-process-step:hover .on-process-circle {
    transform: translateY(-6px);
    background: #0d4bd7;
}


/* CONNECTOR LINE */

.on-process-step::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #dfe4ef;
}

.on-process-step:nth-child(4)::after,
.on-process-step:nth-child(7)::after {
    display: none;
}


/* TABLET */

@media(max-width:992px) {

    .on-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .on-process-step::after {
        display: none;
    }

}


/* MOBILE */

@media(max-width:600px) {

    .on-process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .on-process-circle {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .on-process-title {
        font-size: 24px;
    }

}


/* faq */

.on-faq-section {
    padding: 120px 20px;
    background: #f7f8fb;
}

.on-faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 55px;
    font-weight: 700;
}

.on-faq {
    max-width: 1050px;
    margin: auto;
}


.on-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
    min-height: 72px;
}

.on-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 32px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    background: #ffffff;
    cursor: pointer;
    text-align: left;
}

.on-faq-question:hover {
    background: #f3f5fa;
}

.on-faq-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: 0.3s;
}


.on-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    padding: 0 32px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.on-faq-item.active .on-faq-answer {
    padding: 16px 32px 32px 32px;
    min-height: fit-content;
}

.on-faq-item.active .on-faq-arrow {
    transform: rotate(-135deg);
}

@media(max-width:992px) {

    .on-faq {
        max-width: 900px;
    }

    .on-faq-question {
        font-size: 16px;
        padding: 18px 26px;
    }

}

@media(max-width:768px) {

    .on-faq-section {
        padding: 80px 18px;
    }

    .on-faq-title {
        font-size: 24px;
    }

    .on-faq {
        max-width: 100%;
    }

    .on-faq-question {
        font-size: 15px;
        padding: 15px 22px;
    }

    .on-faq-answer {
        font-size: 14px;
    }

}



/* ================================
   LOCATION FOOTER
================================ */

.on-location-footer {
    background: #000;
    padding: 50px 20px;
    text-align: center;   
}

.on-location-footer-title {
    color: #ffffff;
    /* font-size: 22px; */
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.4;
}

.on-location-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto 20px auto;
}

.on-location-footer-links a {
    color: #bfbfbf;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.on-location-footer-links a:hover {
    color: #ffffff;
}

.on-footer-divider {
    color: #555;
    font-size: 14px;
}

.on-location-footer-copy {
    color: #8c8c8c;
    font-size: 13px;
    margin-top: 10px;
}

@media (max-width:992px) {

    .on-location-footer {
        padding: 40px 20px;
    }

    .on-location-footer-title {
        font-size: 20px;
    }

    .on-location-footer-links {
        max-width: 700px;
    }

}

@media (max-width:768px) {

    .on-location-footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .on-location-footer-links {
        gap: 8px;
    }

    .on-location-footer-links a {
        font-size: 13px;
    }

    .on-footer-divider {
        font-size: 13px;
    }

    .on-location-footer-copy {
        font-size: 12px;
    }

}

@media (max-width:480px) {

    .on-location-footer {
        padding: 35px 15px 70px;
    }

    .on-location-footer-title {
        font-size: 16px;
    }

    .on-location-footer-links {
        gap: 6px;
    }

    .on-location-footer-links a {
        font-size: 12px;
    }

    .title-2 {
        font-size: 1.5rem;
    }

}

/* POPUP BACKGROUND */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* POPUP BOX */

.popup-content {
    background: #ffffff;
    width: 520px;
    max-width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: popupFade .35s ease;
}

/* ANIMATION */

@keyframes popupFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CLOSE BUTTON */

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    font-weight: 300;
    cursor: pointer;
    color: #777;
    transition: .2s;
}

.close-btn:hover {
    color: #000;
}

.input-row {
    display: flex;
    gap: 1rem;
}

.input-row .direct {
    flex-direction: row-reverse;
}

.input-group {
    margin-bottom: 18px;
    width: 100%;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.input-group input,
.input-group select {
    width: 95%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
}

.input-group select {
    width: 100%;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* BUTTON */

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 13px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.submit-btn:hover {
    background: #1e4ed8;
}

/* OPEN BUTTON */

.open-form-btn {
    background: #2563eb;
    color: white;
    padding: 12px 26px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.open-form-btn:hover {
    background: #1e4ed8;
}

/* MOBILE */

@media(max-width:600px) {

    .popup-content {
        padding: 25px;
        margin: 0 15px;
    }

    .input-row {
        flex-direction: column;
        gap: 0;
    }
    .input-row .direct{
        flex-direction: row;
    }
    .input-group input{
        width: 90%;
    }

}