:root {
    --primary: #002C54;
    --dark: #A4A3AB;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: var(--light);
    line-height: 1.6;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 20000;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #002c54;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(10, 78, 163, 0.7);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

/* Global branded scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #0f4f96 #e3e8ef;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #e3e8ef;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0f4f96 0%, #002c54 55%, #8f1120 100%);
    border-radius: 999px;
    border: 2px solid #e3e8ef;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1b5da7 0%, #0d3f72 55%, #a41629 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Flex helpers */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Top bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: inline-block;
}

.logo span {
    color: var(--primary);
}

.top-contact a {
    margin-left: 15px;
    color: #333;
    text-decoration: none;
}

/* Navbar */
header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    padding: 16px 20px;
    display: block;
    text-decoration: none;
}

.menu a:hover {
    background: rgba(255, 255, 255, .2);
}

/* Dropdown */
.dropdown ul {
    display: none;
    position: absolute;
    background: #fff;
    top: 50px;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.dropdown:hover ul {
    display: block;
}

.dropdown ul a {
    color: #333;
}

.hero {
    position: relative;
    background: url("images/hero-bg.jpg") center/cover no-repeat;
    height: 60vh;
    display: flex;
    padding-bottom: 110px;
    align-items: center;
    color: #141617;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    padding-top: 10px;
    font-size: 22px;
}

/* Mobile */
@media(max-width:768px) {
    .hero {
        height: 70vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 26px;
    }
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-top: 70px;
}

.hero p {
    font-size: 22px;
    color: #000000;
    margin-bottom: 40px;
}

/* Divider line */
.hero p::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #e7d4a5;
    margin: 20px auto 0;
    border-radius: 5px;
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    align-content: left;
    gap: 15px;
    padding-top: 10px;
    font-size: 16px;
    color: #2faf6e;
}

.stat i {
    background: #2faf6e;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .hero h1 {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

}

/* Services */
.services {
    padding: 70px 0;
    text-align: center;
    background-color: #ffffff;
}

h2 {
    font-size: 26px;
}

p {
    color: #002C54;
    font-size: 14px;
}

.not-found-page {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background:
        radial-gradient(circle at top left, rgba(210, 224, 239, 0.95), transparent 38%),
        linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.not-found-page::before,
.not-found-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.not-found-page::before {
    width: 280px;
    height: 280px;
    top: -110px;
    right: -60px;
    background: rgba(0, 44, 84, 0.08);
}

.not-found-page::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -50px;
    background: rgba(143, 17, 32, 0.08);
}

.not-found-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 44px;
    border: 1px solid rgba(0, 44, 84, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(0, 44, 84, 0.12);
    text-align: center;
}

.not-found-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(0, 44, 84, 0.08);
    color: #002c54;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.not-found-panel h1 {
    margin: 20px 0 16px;
    color: #081f36;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.06;
}

.not-found-copy {
    max-width: 580px;
    margin: 0 auto;
    color: #36506b;
    font-size: 18px;
    line-height: 1.75;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.not-found-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid #002c54;
    color: #002c54;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.not-found-btn:hover,
.not-found-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 44, 84, 0.12);
}

.not-found-btn.primary {
    border-color: #002c54;
    background: #002c54;
    color: #fff;
}

.not-found-btn.primary:hover,
.not-found-btn.primary:focus-visible {
    background: #0d3f72;
}

.not-found-links {
    margin-top: 34px;
}

.not-found-links p {
    margin-bottom: 14px;
    color: #4b647b;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.not-found-link-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.not-found-link-grid a {
    padding: 10px 18px;
    border-radius: 999px;
    background: #edf3f9;
    color: #002c54;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.not-found-link-grid a:hover,
.not-found-link-grid a:focus-visible {
    background: #d8e6f4;
}

@media (max-width: 768px) {
    .not-found-page {
        padding: 64px 0 72px;
    }

    .not-found-panel {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .not-found-copy {
        font-size: 16px;
    }

    .not-found-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .not-found-btn {
        min-width: 0;
        width: 100%;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* About */
.about {
    background: #fff;
    padding: 70px 0;
}

.about-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-box {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonial {
    display: none;
    font-size: 18px;
}

.testimonial.active {
    display: block;
}

/* Contact */
.contact {
    padding: 60px 0;
    text-align: center;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    cursor: pointer;
}



/* Mobile */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary);
    }

    .menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* New Service Boxes */

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-header i {
    background: #f2f2f2;
    padding: 12px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
}

.service-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #002C54;
    /* same reddish tone like screenshot */
}

.service-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price {
    font-weight: 600;
    color: #000;
}

.price small {
    color: #777;
    font-weight: 400;
}

.start-btn {
    background: #002C54;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.start-btn:hover {
    background: #002C54cc;
}

.services-more {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.services-more-btn {
    border: 1px solid #002C54;
    background: #ffffff;
    color: #002C54;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.services-more-btn:hover {
    background: #002C54;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 44, 84, .16);
}

.service-box[hidden] {
    display: none !important;
}

/* Mobile */
@media(max-width:768px) {
    .service-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Trust Section */

.trust-section {
    background: linear-gradient(135deg, #f5f9fa, #e4eef1);
    padding: 80px 20px;
    text-align: center;
}

.trust-subtitle {
    color: #002C54;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 13px;
}

.trust-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.trust-text {
    max-width: 800px;
    margin: 10px auto;
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

.trust-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.trust-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Mobile */
@media(max-width:768px) {
    .trust-section h2 {
        font-size: 24px;
    }
}


/* WHY choose KCP SECTION */

.why-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Left Text */

.why-small {
    color: #f3921c;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.why-text p {
    color: #000000;
    line-height: 1.7;
}

/* Cards */

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}

.why-card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.why-card h3 {
    margin-bottom: 10px;
}

/* Card Colors */

.peach {
    background: #f3e3da;
}

.green {
    background: #ddebe3;
}

.blue {
    background: #dde4ee;
}

.purple {
    background: #e6dde8;
}

.why-card:hover {
    transform: translateY(-6px);
}

/* Mobile */

@media(max-width:900px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

}

/* TESTIMONIAL SECTION */

.testimonial-section {
    background: linear-gradient(135deg, #cde2d6, #e9dcc7);
    padding: 90px 20px;
    text-align: center;
}

.small-title {
    color: #002C54;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.stars i {
    color: #2ecc71;
    margin: 5px;
}

/* Cards */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #777;
    font-size: 13px;
}

/* Button */

.testimonial-btn a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border: 1px solid #444;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.testimonial-btn a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* PARTNERS SECTION */

.partners {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.partner-small {
    color: #002C54;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.partners h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* Slider */

.partner-slider {
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollPartners 28s linear infinite;
}

.partner-name {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 16px 26px;
    border: 1px solid #c8d8ea;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #edf4fb 100%);
    color: #0d3153;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(10, 39, 67, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, color .3s ease;
}

.partner-name:hover {
    transform: translateY(-4px);
    border-color: #0a4ea3;
    color: #0a4ea3;
    box-shadow: 0 16px 30px rgba(10, 78, 163, .16);
}

/* Animation */

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Button */

.partner-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 1px solid #444;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.partner-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Mobile */

@media(max-width:768px) {

    .partner-track {
        gap: 30px;
    }

    .partner-name {
        min-height: 64px;
        padding: 14px 18px;
        font-size: 14px;
    }

}

/* FOOTER TOP CONTACT STRIP */

.footer-top {
    background: linear-gradient(90deg, #1f2428, #2c3338);
    color: #fff;
    padding: 25px 0;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-left: 20px;
}


/* MAIN FOOTER */

.footer {
    background: #111;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s;
}

.footer ul li a {
    color: inherit;
    text-decoration: none;
}

.footer ul li:hover {
    color: #fff;
}

/* Social Icons */

.social-icons i {
    margin-right: 10px;
    background: #222;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.social-icons i:hover {
    background: var(--primary);
    color: #fff;
}


/* Bottom Footer */

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    color: #888;
}

/* Mobile */

@media(max-width:768px) {

    .footer-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info span {
        margin: 5px;
    }

}

/* TOPBAR */

.topbar {
    background: #f5f5f5;
    padding: 12px 0;
    font-size: 12px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.account-btn {
    margin-left: 15px;
    padding: 6px 14px;
    border: 1px solid #007bff;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
}


/* NAVBAR */

.navbar {
    background: #002C54;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}

/* MENU */

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #fff;
    padding: 16px 20px;
    display: block;
    text-decoration: none;
}

.menu li:hover {
    background: #002C54cc;
}

/* DROPDOWN */

.dropdown ul {
    display: none;
    position: absolute;
    background: #fff;
    top: 100%;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.dropdown:hover ul {
    display: block;
}

.dropdown ul li {
    padding: 12px;
    cursor: pointer;
    color: #333;
}

.dropdown ul li:hover {
    background: #f5f5f5;
}


/* MOBILE MENU */

.menu-toggle {
    display: none;
    position: absolute;
    left: 10px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

@media(max-width:900px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #002C54;
        margin-top: 50px;
    }

    .menu.active {
        display: flex;
    }

    .dropdown ul {
        position: static;
        box-shadow: none;
    }

}

/* ===== MEGA MENU LEGALWIZ STYLE ===== */

.mega-dropdown {
    position: relative;
}

/* Mega Menu Container */

.mega-menu {
    position: relative;
    left: 10px;
    top: 100%;
    width: 650px;
    background: #fff;
    display: flex;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
    z-index: 999;
}

/* Show on hover desktop */

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Columns */

.mega-column {
    flex: 1;
}

.mega-column h4 {
    margin-bottom: 15px;
    color: #A4A3AB;
    font-weight: 600;
}

.mega-column ul {
    list-style-type: none;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.mega-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* MOBILE */

@media(max-width:900px) {

    .mega-menu {
        position: static;
        flex-direction: column;
        width: 100%;
        box-shadow: none;
        padding: 15px 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }

}

/* ===== LEGALWIZ STYLE MEGA MENU ===== */

.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 30px;
    display: flex;
    gap: 40px;
    width: 700px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 999;
}

.mega-menu.large {
    width: 1080px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column {
    flex: 1;
}

.mega-column h4 {
    margin-bottom: 12px;
    color: #A4A3AB;
    font-weight: 600;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

.mega-column ul li:hover {
    color: #002C54;
    padding-left: 5px;
}

/* MOBILE */

@media(max-width:900px) {

    .mega-menu {
        position: static;
        width: 100%;
        flex-direction: column;
        display: none;
        box-shadow: none;
        padding: 15px;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }

}

/* ================= RESPONSIVE FIX START ================= */

/* Navbar Mobile */
@media(max-width:992px) {

    .nav-flex {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 18px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        display: none;
        background: var(--primary);
        margin-top: 60px;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    /* Mega menu mobile */
    .mega-menu {
        position: static;
        width: 100% !important;
        flex-direction: column;
        display: none;
        box-shadow: none;
        padding: 15px 10px;
        border-radius: 0;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }

}

/* Hero responsive */
@media(max-width:768px) {

    .hero {
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

}

/* Services responsive */
@media(max-width:768px) {

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 20px;
    }

}

/* Why section */
@media(max-width:900px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

}

/* Partners slider */
@media(max-width:768px) {

    .partner-track {
        gap: 25px;
    }

}

/* Footer */
@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

}

/* Prevent overflow */
body {
    overflow-x: hidden;
}

/* ================= RESPONSIVE FIX END ================= */

/* ================= FINAL RESPONSIVE HARDENING ================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
}

.top-contact a {
    margin-left: 0;
    font-size: 14px;
}

.menu {
    align-items: stretch;
}

.menu>li>a {
    white-space: nowrap;
}

.mega-menu {
    max-width: min(92vw, 900px);
    overflow-x: auto;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.35;
}

.hero p {
    font-size: clamp(16px, 2.2vw, 22px);
}

.stat {
    align-items: flex-start;
    text-align: left;
}

.service-box,
.testimonial-card,
.why-card {
    height: 100%;
}

.footer-contact p {
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .mega-menu.large {
        left: auto;
        right: 0;
    }
}

@media (max-width: 992px) {
    .top-bar {
        padding: 10px 0;
    }

    .logo {
        font-size: 22px;
    }

    .top-contact {
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .menu-toggle {
        position: static;
        padding: 16px 0;
    }

    .nav-flex {
        justify-content: flex-start;
    }

    .menu {
        margin-top: 0;
    }

    .menu>li>a {
        white-space: normal;
        line-height: 1.4;
    }

    .mega-column h4 {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .hero {
        padding: 64px 12px;
    }

    .hero h1 br {
        display: none;
    }

    .hero-stats {
        align-items: stretch;
    }

    .stat {
        width: 100%;
    }

    .services,
    .trust-section,
    .why-section,
    .testimonial-section,
    .partners,
    .footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .service-bottom {
        row-gap: 12px;
    }

    .partner-track {
        animation-duration: 18s;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .top-contact a {
        font-size: 13px;
        word-break: break-word;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 15px;
    }

    .service-header {
        align-items: flex-start;
    }

    .footer-bottom {
        font-size: 13px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ================= END FINAL RESPONSIVE HARDENING ================= */

/* ================= MOBILE HEADER + HERO MATCH ================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.account-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .top-contact {
        display: none !important;
    }

    .navbar {
        background: #fff;
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }

    .nav-flex {
        justify-content: flex-end !important;
        flex-wrap: nowrap;
        min-height: 52px;
    }

    .account-btn {
        display: inline-flex;
    }

    .menu-toggle {
        display: block;
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 0 !important;
        font-size: 28px;
        line-height: 1;
        color: #000 !important;
    }

    .menu {
        background: #fff !important;
        margin-top: 0 !important;
    }

    .menu li a {
        color: #A4A3AB;
        border-top: 1px solid #efefef;
    }

    .menu li:hover {
        background: #f7f7f7;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 32px;
        line-height: 1;
    }

    .logo span {
        font-size: 24px;
    }

    .hero {
        height: auto;
        padding: 56px 14px 68px;
        background: #f3f4f6;
        background-image: url("images/hero-bg.jpg");
        background-position: center;
        background-size: cover;
    }

    .hero h1 {
        margin: 0 auto 18px;
        max-width: 560px;
        font-size: clamp(34px, 8.3vw, 46px);
        line-height: 1.35;
    }

    .hero p {
        margin: 0 auto 30px;
        max-width: 560px;
        font-size: clamp(17px, 4.8vw, 24px);
        line-height: 1.45;
    }

    .hero p::after {
        margin-top: 22px;
    }

    .hero-stats {
        max-width: 560px;
        margin: 0 auto;
        gap: 16px;
        align-items: stretch;
    }

    .stat {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        font-size: clamp(18px, 4.8vw, 23px);
        line-height: 1.35;
        color: #28b66f;
        font-weight: 600;
    }

    .stat i {
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #28b66f;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }

    .logo span {
        font-size: 21px;
    }

    .menu-toggle {
        font-size: 26px;
    }
}

/* ================= END MOBILE HEADER + HERO MATCH ================= */

/* ================= MOBILE MENU PANEL (REFERENCE MATCH) ================= */
.mobile-brand {
    display: none;
    font-size: 24px;
    font-weight: 700;
    color: #A4A3AB;
    text-decoration: none;
}

.mobile-brand span {
    color: #002C54;
}

.menu-toggle {
    background: transparent;
    border: none;
}

@media (max-width: 992px) {
    body.menu-open {
        overflow: hidden;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        background: #fff;
        border-top: none;
        border-bottom: 1px solid #e7e7e7;
    }

    .nav-flex {
        min-height: 72px;
        justify-content: space-between !important;
    }

    .mobile-brand {
        display: block;
    }

    .menu {
        display: none;
        width: 100%;
        background: #f2f2f2 !important;
        border-top: 1px solid #e0e0e0;
    }

    .menu.active {
        display: flex;
    }

    .menu>li {
        background: #efefef;
        border-bottom: 1px solid #dddddd;
    }

    .menu>li>a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.3;
        color: #2f3438;
        border-top: none !important;
    }

    .mega-dropdown>a::after {
        content: "\f078";
        font-family: "'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif";
        font-weight: 900;
        font-size: 14px;
        color: #3f4549;
        transition: transform .25s ease;
    }

    .mega-dropdown.active>a::after {
        transform: rotate(180deg);
    }

    .mega-menu {
        background: #f6f6f6;
        padding: 0 !important;
        gap: 0;
    }

    .mega-column {
        border-top: 1px solid #e0e0e0;
    }

    .mega-column h4 {
        margin: 0;
        padding: 12px 24px 8px;
        font-size: 14px;
        color: #6a6f73;
        font-weight: 600;
    }

    .mega-column ul {
        padding: 0 24px 12px;
    }

    .mega-column ul li {
        margin-bottom: 8px;
        font-size: 14px;
        color: #4a4f53;
    }

    .mega-column ul li a {
        font-size: 14px;
        color: #4a4f53;
    }

    .nav-actions {
        gap: 14px;
    }

    .account-btn {
        display: inline-flex;
        width: 34px;
        height: 34px;
        font-size: 16px;
        color: #002C54cc !important;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0 !important;
        font-size: 30px !important;
        color: #000 !important;
    }
}

@media (max-width: 768px) {
    .mobile-brand {
        font-size: 22px;
    }

    .mobile-brand span {
        font-size: 22px;
    }

    .menu>li>a {
        font-size: 18px;
    }
}

/* ================= END MOBILE MENU PANEL ================= */

/* ================= FINAL NAV + RESPONSIVE OVERRIDES ================= */
@media (min-width: 993px) {
    .mobile-brand {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .navbar {
        background: var(--primary) !important;
        border: none !important;
    }

    .nav-flex {
        justify-content: center !important;
        min-height: 58px;
        margin-right: 100px;
    }

    .menu {
        display: flex !important;
        width: auto;
        background: transparent !important;
        border: 0;
    }

    .menu>li {
        background: transparent;
        border: 0;
    }

    .menu>li>a {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 15px 15px;
        font-size: 14px;
        font-weight: 600;
        color: #fff !important;
        border: 0 !important;
    }

    .mega-dropdown>a::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        line-height: 1;
    }

    .mega-dropdown.active>a::after,
    .mega-dropdown:hover>a::after {
        transform: rotate(180deg);
    }

    .mega-menu {
        top: 100%;
        left: 50%;
        transform: translate(-50%, 18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-width: min(96vw, 980px);
        width: min(96vw, 900px);
    }

    .mega-menu.large {
        width: min(96vw, 1080px);
    }

.mega-dropdown:hover .mega-menu,
.mega-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .menu {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .menu>li>a {
        font-size: 17px;
        padding: 15px 16px;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 14px 56px;
    }

    .hero h1 {
        font-size: clamp(24px, 8vw, 36px);
    }

    .hero p {
        font-size: clamp(15px, 4.8vw, 20px);
    }

    .grid-3,
    .why-cards,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .service-box,
    .testimonial-card,
    .why-card {
        padding: 20px;
    }

    .footer {
        padding: 40px 14px 16px;
    }
}

@media (max-width: 480px) {
    .mobile-brand {
        font-size: 20px !important;
    }

    .menu-toggle {
        font-size: 26px !important;
    }

    .menu>li>a {
        font-size: 16px;
    }
}

/* ================= END FINAL NAV + RESPONSIVE OVERRIDES ================= */

/* ================= MOBILE MENU EXACT MATCH ================= */
@media (max-width: 992px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-flex {
        min-height: 74px !important;
    }

    .mobile-brand {
        font-size: 32px;
        line-height: 1;
        letter-spacing: .2px;
    }

    .mobile-brand span {
        font-size: 24px;
    }

    .menu {
        background: #e9e9e9 !important;
        border-top: 1px solid #d9d9d9 !important;
    }

    .menu>li {
        background: #ececec !important;
        border-bottom: 1px solid #d4d4d4 !important;
    }

    .menu>li>a {
        padding: 14px 20px !important;
        font-size: 16px;
        font-weight: 700;
        color: #2f3337 !important;
    }

    .mega-dropdown>a::after {
        font-size: 14px !important;
        color: #3f4347 !important;
    }

    .mega-menu {
        display: none;
        background: #e7e7e7 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .mega-dropdown.active .mega-menu {
        display: flex !important;
    }

    .mega-column {
        border-top: 1px solid #d6d6d6 !important;
    }

    .mega-column h4 {
        position: relative;
        margin: 0 !important;
        padding: 14px 20px 14px 36px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.25;
        color: #3b3f43 !important;
        cursor: pointer;
    }

    .mega-column h4::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #3f4347;
        transition: transform .25s ease;
    }

    .mega-column ul {
        display: none;
        padding: 0 20px 12px 56px !important;
    }

    .mega-column.active h4::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mega-column.active ul {
        display: block;
    }

    .mega-column ul li {
        margin: 6px 0 !important;
        font-size: 14px !important;
        line-height: 1.35;
        color: #50555a !important;
    }

    .mega-column ul li a {
        font-size: 14px !important;
        color: #50555a !important;
    }

    .account-btn {
        font-size: 18px !important;
    }

    .menu-toggle {
        font-size: 31px !important;
    }
}

@media (max-width: 768px) {
    .mobile-brand {
        font-size: 28px;
    }

    .mobile-brand span {
        font-size: 22px;
    }

    .menu>li>a {
        font-size: 15px;
    }

    .mega-column h4 {
        font-size: 14px !important;
    }

    .mega-column ul li,
    .mega-column ul li a {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .mobile-brand {
        font-size: 26px !important;
    }

    .mobile-brand span {
        font-size: 26px !important;
    }

    .menu>li>a {
        font-size: 14px;
        padding: 13px 16px !important;
    }

    .mega-dropdown>a::after {
        font-size: 14px !important;
    }

    .mega-column h4 {
        padding: 12px 16px 12px 28px !important;
        font-size: 13px !important;
    }

    .mega-column h4::after {
        right: 16px;
        font-size: 13px;
    }

    .mega-column ul {
        padding: 0 16px 10px 40px !important;
    }

    .mega-column ul li,
    .mega-column ul li a {
        font-size: 13px !important;
    }
}

/* ================= END MOBILE MENU EXACT MATCH ================= */

/* ================= W3-STYLE MOBILE NAV (FINAL) ================= */
@media (max-width: 992px) {
    .topnav {
        overflow: visible;
        background: #ffffff;
        position: relative;
    }

    .topnav .nav-flex {
        min-height: 72px !important;
    }

    .topnav #myLinks {
        display: block;
        position: fixed;
        top: 72px;
        right: 0;
        width: min(88vw, 360px);
        height: calc(100vh - 72px);
        overflow-y: auto;
        background: #ececec;
        border-top: 1px solid #d9d9d9;
        box-shadow: -10px 0 26px rgba(0, 0, 0, .14);
        transform: translateX(100%);
        transition: transform .28s ease;
        z-index: 1100;
    }

    .topnav #myLinks.active {
        display: block !important;
        transform: translateX(0);
    }

    .topnav .menu-toggle {
        background: transparent;
        border: none;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        font-size: 30px !important;
        color: #002C54cc !important;
        cursor: pointer;
    }

    .topnav .menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .topnav .menu>li {
        display: block;
        border-bottom: 1px solid #d6d6d6;
        background: #ececec;
    }

    .topnav .menu>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px !important;
        font-size: 15px !important;
        font-weight: 700;
        color: #2f3337 !important;
        text-decoration: none;
    }

    .topnav .mega-dropdown>a::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 13px !important;
        color: #484d51;
        transition: transform .2s ease;
    }

    .topnav .mega-dropdown.active>a::after {
        transform: rotate(180deg);
    }

    .topnav .mega-menu {
        display: none;
        position: static;
        width: 100% !important;
        box-shadow: none;
        border-radius: 0;
        padding: 0 !important;
        gap: 0;
        background: #e8e8e8 !important;
    }

    .topnav .mega-dropdown.active .mega-menu {
        display: flex !important;
        flex-direction: column;
    }

    .topnav .mega-column {
        border-top: 1px solid #d6d6d6;
    }

    .topnav .mega-column h4 {
        position: relative;
        margin: 0;
        padding: 13px 16px 13px 32px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #3c4145 !important;
    }

    .topnav .mega-column h4::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        color: #484d51;
        transition: transform .2s ease;
    }

    .topnav .mega-column ul {
        display: none;
        padding: 0 16px 10px 44px !important;
    }

    .topnav .mega-column.active h4::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .topnav .mega-column.active ul {
        display: block;
    }

    .topnav .mega-column ul li,
    .topnav .mega-column ul li a {
        font-size: 13px !important;
        color: #4c5155 !important;
        margin: 6px 0 !important;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .topnav .menu>li>a {
        font-size: 14px !important;
    }

    .topnav .mega-column h4 {
        font-size: 13px !important;
    }

    .topnav .mega-column ul li,
    .topnav .mega-column ul li a {
        font-size: 12px !important;
    }
}

/* ================= END W3-STYLE MOBILE NAV ================= */


.top-bar .account-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    color: #002C54cc !important;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    width: 150px;
    margin-left: 15px;
}

.top-bar .account-btn:hover {
    background: #002C54cc;
}

/* =====  Style Top Bar ===== */

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left section */
.topbar-left a {
    color: #0a4ea3;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color .2s ease, transform .2s ease;
}

.topbar-left i {
    margin-right: 6px;
    color: #555;
    transition: color .2s ease;
}

.topbar-left a:hover,
.topbar-left a:focus-visible {
    color: #08376f;
    transform: translateY(-1px);
}

.topbar-left a:hover i,
.topbar-left a:focus-visible i {
    color: #0a4ea3;
}

/* Right section - My Account */
.account-outline {
    padding: 6px 18px;
    border: 1.5px solid #0a4ea3;
    border-radius: 22px;
    color: #0a4ea3;
    text-decoration: none;
    font-weight: 600;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.account-outline:hover {
    background: #0a4ea3;
    color: #fff;
    box-shadow: 0 6px 14px rgba(10, 78, 163, 0.22);
    transform: translateY(-1px);
}

.account-outline:focus-visible {
    outline: none;
    background: #0a4ea3;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(10, 78, 163, 0.22);
}

/* ================= HERO NETWORK BACKGROUND ================= */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #eef0f2 !important;
    background-image: none !important;
    height: 100svh !important;
    min-height: 100svh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    cursor: default;
}

.hero-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    touch-action: pan-y;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(-28px);
}

.hero h1 {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .hero {
        height: 100svh !important;
        min-height: 100svh !important;
    }

    .hero-content {
        transform: translateY(-25px);
    }
}

/* ================= END HERO NETWORK BACKGROUND ================= */

@media (hover: hover) and (pointer: fine) {
    .hero {
        cursor: none;
    }
}

/* ================= DESKTOP MEGA MENU FINAL ================= */
@media (min-width: 993px) {
    .navbar {
        position: relative;
        z-index: 1000;
    }

    .navbar .container.nav-flex {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .menu {
        position: relative;
    }

    .menu>.mega-dropdown {
        position: static;
    }

    /* Desktop hover-open */

    .mega-menu,
    .mega-menu.large {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        right: auto !important;
        width: min(96vw, 1280px) !important;
        max-width: min(96vw, 1280px) !important;
        transform: translate(-50%, 16px) scale(.985) !important;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 26px !important;
        padding: 28px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
        border: 1px solid #d8e2ed;
        border-radius: 18px;
        box-shadow: 0 22px 56px rgba(8, 31, 54, 0.2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity .24s ease,
            transform .28s cubic-bezier(.22, .61, .36, 1),
            visibility .24s ease;
        backdrop-filter: blur(5px);
    }

    .menu .mega-dropdown:hover>.mega-menu,
    .mega-dropdown.active>.mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) scale(1) !important;
    }

    .mega-column {
        padding: 4px 2px;
    }

    .mega-column h4 {
        margin: 0 0 10px;
        padding-bottom: 8px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .02em;
        color: #6a7f95 !important;
        border-bottom: 1px solid #e6edf5;
    }

    .mega-column ul li,
    .mega-column ul li a {
        font-size: 14px !important;
        line-height: 1.45;
        color: #1c3854 !important;
    }

    .mega-column ul li {
        margin: 0;
        border-radius: 9px;
        transition: background-color .2s ease, transform .2s ease;
    }

    .mega-column ul li a {
        display: block;
        padding: 8px 10px;
        border-radius: 9px;
    }

    .mega-column ul li:hover {
        background: #e9f2fb;
        transform: translateX(4px);
    }
}

/* ================= END DESKTOP MEGA MENU FINAL ================= */

/* ================= END STICKY NAVBAR ================= */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 10000;
}

.navbar {
    position: sticky;
    top: 48px;
    /* height of top-bar */
    z-index: 9999;
}

/* ================= CLEAN PROFESSIONAL STICKY ================= */

.top-bar {
    position: relative;
    z-index: 10;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #002C54;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    transition: box-shadow .3s ease;
}

/* Make sure hero stays below */
.hero {
    position: relative;
    z-index: 1;
}

/* Desktop mega menu above navbar */
@media (min-width: 993px) {
    .mega-menu {
        z-index: 2000;
    }
}

/* ================= END STICKY ================= */

.top-bar {
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #002C54;
}

/* Page content hide na thay */
.hero {
    margin-top: 110px;
}

.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar {
    position: fixed;
    top: 50px;
}

.hero {
    margin-top: 110px;
}

/* ===== SMART STICKY HEADER ===== */

.top-bar {
    position: relative;
    z-index: 1000;
    transition: all .3s ease;
}

.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #002C54;
    transition: all .3s ease;
}

/* Scroll pachhi navbar upar aave */
.navbar.scrolled {
    top: 0;
}

/* Page hide na thay */
.hero {
    margin-top: 110px;
}

/* ===== FINAL SMART STICKY HEADER ===== */

/* Desktop */
@media (min-width:993px) {

    .top-bar {
        position: relative;
        z-index: 1000;
        transition: .3s;
    }

    .navbar {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #002C54;
        transition: .3s;
    }

    .navbar.scrolled {
        top: 0;
    }

    .hero {
        margin-top: 110px;
    }

}

/* Mobile FIX */
@media (max-width:992px) {

    .top-bar {
        display: none !important;
    }

    .navbar {
        position: sticky !important;
        top: 0 !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    }

    .hero {
        margin-top: 0 !important;
    }

}

/* ===== PREMIUM TESTIMONIAL ===== */

.testimonial-modern {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f9fa, #e4eef1);
    background-size: 300% 300%;
    animation: bgMove 12s ease infinite;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.t-small {
    letter-spacing: 3px;
    color: #002C54;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.testimonial-modern h2 {
    font-size: clamp(26px, 4vw, 32px);
    margin-bottom: 25px;
    color: #2f3e46;
}

/* Star glow */
.t-stars {
    color: #2ecc71;
    font-size: clamp(20px, 3.2vw, 26px);
    letter-spacing: 6px;
    margin-bottom: 40px;
    animation: starGlow 1.8s infinite alternate;
}

@keyframes starGlow {
    from {
        transform: scale(1);
        text-shadow: 0 0 0 #2ecc71;
    }

    to {
        transform: scale(1.08);
        text-shadow: 0 0 12px #2ecc71;
    }
}

/* Glass card */
.testimonial-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 50px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
    position: relative;
    animation: fadeIn .6s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote icons */
.quote-icon {
    position: absolute;
    font-size: 70px;
    color: #00000010;
    font-weight: bold;
}

.quote-icon.left {
    top: 15px;
    left: 20px;
}

.quote-icon.right {
    right: 20px;
    bottom: 10px;
}

.quote {
    margin: 30px 0;
    color: #555;
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-slide h4 {
    margin-bottom: 5px;
    color: #333;
}

.testimonial-slide span {
    color: #888;
    font-size: 14px;
}

/* Dots */
.dots {
    margin: 30px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    cursor: pointer;
    border: 1px solid #666;
    border-radius: 50%;
    transition: transform .25s ease, background-color .25s ease;
}

.dot.active {
    background: #666;
    transform: scale(1.15);
}

/* Button */
.t-btn {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #444;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.t-btn:hover,
.t-btn:focus-visible {
    background: #002C54;
    color: #fff;
    border-color: #002C54;
}

@media (max-width: 768px) {
    .testimonial-modern {
        padding: 72px 16px;
    }

    .t-stars {
        letter-spacing: 4px;
        margin-bottom: 28px;
    }

    .testimonial-slide {
        padding: 34px 22px;
        border-radius: 16px;
    }

    .quote-icon {
        font-size: 44px;
    }

    .quote-icon.left {
        top: 10px;
        left: 12px;
    }

    .quote-icon.right {
        right: 12px;
        bottom: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .testimonial-modern,
    .t-stars,
    .testimonial-slide {
        animation: none !important;
    }

    .dot,
    .t-btn {
        transition: none !important;
    }
}

/* ===== FINAL FOOTER STYLE ===== */
.footer-top {
    background: linear-gradient(90deg, #0f3a66 0%, #002C54 55%, #0a4ea3 100%);
    color: #f4f7fb;
    padding: 18px 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    flex-wrap: wrap;
}

.footer-contact p {
    margin: 0;
    color: #f4f7fb;
    font-size: 15px;
    letter-spacing: .2px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.contact-info span a {
    color: inherit;
    text-decoration: none;
}

.contact-info span a:hover {
    text-decoration: underline;
}

.contact-info i {
    color: #b8d9ff;
}

.footer {
    background: #0b111a;
    color: #c5cdd6;
    padding: 56px 20px 20px;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
}

.footer h4 {
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: .6px;
    font-size: 14px;
}

.footer p {
    color: #aeb7c2;
    font-size: 14px;
    line-height: 1.75;
}

.footer-address {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #d6dee8;
    line-height: 1.6;
}

.footer-address i {
    color: #0a4ea3;
    margin-top: 4px;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin: 0 0 10px;
    color: #c8d0d9;
    font-size: 14px;
    line-height: 1.45;
    transition: color .22s ease, transform .22s ease;
}

.footer ul li:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-map-wrap {
    margin-top: 30px;
}

.footer-map-wrap h4 {
    margin: 0 0 12px;
    color: #ffffff;
    letter-spacing: .5px;
    font-size: 14px;
}

.footer-map-embed {
    border: 1px solid #243040;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1824;
}

.footer-map-embed iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.social-icons a {
    text-decoration: none;
}

.social-icons i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 10px;
    background: #151f2b;
    border: 1px solid #263446;
    color: #d6e7fb;
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
}

.social-icons i:hover {
    transform: translateY(-2px);
    background: #0a4ea3;
    border-color: #0a4ea3;
    color: #fff;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid #243040;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aeb7c2;
}

.footer-bottom-links {
    margin-top: 8px !important;
}

.footer-bottom-links a {
    color: #f4f7fb;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.footer-bottom-links span {
    margin: 0 8px;
    color: #7f8a97;
}

.disclaimer {
    margin-top: 8px !important;
    font-size: 13px;
}

@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }
}

@media (max-width: 640px) {
    .footer-top {
        padding: 14px 0;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .contact-info span {
        width: 100%;
        justify-content: flex-start;
    }

    .footer {
        padding: 44px 14px 16px;
    }

    .footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer h3 {
        font-size: 22px;
    }

    .footer-map-embed iframe {
        height: 220px;
    }
}

/* ===== START A BUSINESS PAGE ===== */
.sab-page {
    background: #f7f9fc;
}

.sab-section {
    padding: 72px 0;
}

.sab-section-alt {
    background: #eef3f9;
}

.sab-hero {
    background: linear-gradient(140deg, #e7eef7 0%, #f7fafc 55%, #edf3fb 100%);
    padding: 84px 0 72px;
}

.sab-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 28px;
    align-items: stretch;
}

.sab-eyebrow {
    color: #0a4ea3;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sab-hero-content h1 {
    color: #002C54;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
    margin-bottom: 16px;
}

.sab-intro {
    color: #34475a;
    font-size: 16px;
    max-width: 640px;
    margin-bottom: 26px;
}

.sab-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sab-btn {
    text-decoration: none;
    border-radius: 8px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sab-btn-primary {
    background: #002C54;
    color: #fff;
    border: 1px solid #002C54;
}

.sab-btn-primary:hover {
    background: #0a4ea3;
    border-color: #0a4ea3;
}

.sab-btn-outline {
    border: 1px solid #b3c4d8;
    color: #0f3a66;
    background: #fff;
}

.sab-btn-outline:hover {
    border-color: #0a4ea3;
    color: #0a4ea3;
}

.sab-hero-card {
    background: #fff;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 14px 38px rgba(17, 33, 51, .08);
}

.sab-hero-card h2 {
    color: #002C54;
    font-size: 22px;
    margin-bottom: 14px;
}

.sab-hero-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sab-hero-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #304253;
    font-size: 14px;
}

.sab-hero-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a4ea3;
    position: absolute;
    left: 0;
    top: 7px;
}

.sab-section-head {
    margin-bottom: 26px;
}

.sab-section-head h2 {
    font-size: clamp(24px, 3.1vw, 36px);
    color: #1a2b3b;
    line-height: 1.2;
}

.sab-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sab-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sab-card {
    background: #fff;
    border: 1px solid #dde7f2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(10, 30, 56, .06);
}

.sab-card h3 {
    color: #002C54;
    font-size: 20px;
    margin-bottom: 8px;
}

.sab-card p {
    color: #43586d;
    font-size: 14px;
}

.sab-cta-box {
    background: #0f3a66;
    border-radius: 14px;
    padding: 38px;
    color: #e7f0fb;
}

.sab-cta-box h2 {
    color: #fff;
    margin-bottom: 8px;
}

.sab-cta-box p {
    color: #d6e3f4;
    max-width: 850px;
    margin-bottom: 18px;
}

.sab-faq {
    display: grid;
    gap: 12px;
}

.sab-faq details {
    background: #fff;
    border: 1px solid #d9e5f1;
    border-radius: 10px;
    padding: 14px 16px;
}

.sab-faq summary {
    cursor: pointer;
    color: #002C54;
    font-weight: 600;
    font-size: 15px;
}

.sab-faq details p {
    margin-top: 10px;
    color: #4b6075;
    font-size: 14px;
}

@media (max-width: 992px) {
    .sab-hero-grid {
        grid-template-columns: 1fr;
    }

    .sab-grid,
    .sab-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== START A BUSINESS PAGE (LAYOUT MATCH) ===== */
.sab-page {
    background: #f3f4f6;
}

.sab-wrap {
    padding: 56px 0 68px;
}

.sab-title {
    text-align: center;
    color: #101820;
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 26px;
}

.sab-title-gap {
    margin-top: 56px;
}

.sab-grid {
    display: grid;
    gap: 18px;
}

.sab-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sab-card {
    background: #ededf0;
    border: 1px solid #e3e5ea;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
    padding: 28px 24px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.sab-card h3 {
    color: #002C54;
    font-size: 25px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.sab-card p {
    color: #25384d;
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.sab-btn {
    min-width: 120px;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 16px;
}

.sab-btn-primary {
    background: #00529f;
    border-color: #00529f;
    color: #fff;
}

.sab-btn-primary:hover {
    background: #003f7a;
    border-color: #003f7a;
}

@media (max-width: 992px) {
    .sab-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sab-card h3 {
        font-size: 23px;
    }

    .sab-card p {
        font-size: 18px;
    }
}

@media (max-width: 680px) {
    .sab-wrap {
        padding: 44px 0 56px;
    }

    .sab-grid-3 {
        grid-template-columns: 1fr;
    }

    .sab-title {
        margin-bottom: 18px;
    }

    .sab-title-gap {
        margin-top: 38px;
    }

    .sab-card {
        min-height: 210px;
        padding: 22px 18px;
    }
}

/* ===== CATEGORY PAGES (UNIFIED) ===== */
.svc-page {
    background: #f3f5f8;
}

.svc-hero {
    background: linear-gradient(145deg, #e7eef7 0%, #f4f7fb 58%, #edf2fa 100%);
    padding: 74px 0 44px;
}

.svc-eyebrow {
    color: #0a4ea3;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-hero h1 {
    color: #002C54;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.18;
    margin-bottom: 14px;
}

.svc-intro {
    max-width: 760px;
    color: #355069;
    font-size: 16px;
}

.svc-section {
    padding: 40px 0 58px;
}

.svc-section-alt {
    background: #eef3f9;
}

.svc-title {
    text-align: center;
    color: #132332;
    font-size: clamp(26px, 2.7vw, 36px);
    margin-bottom: 20px;
}

.svc-main-block {
    margin-top: 24px;
}

.svc-main-heading {
    color: #002C54;
    font-size: clamp(22px, 2.2vw, 30px);
    margin: 8px 0 14px;
}

.svc-section-head {
    margin-bottom: 16px;
}

.svc-grid {
    display: grid;
    gap: 18px;
}

.svc-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svc-card {
    background: #eceef2;
    border: 1px solid #e1e6ef;
    border-radius: 10px;
    padding: 26px 22px;
    text-align: center;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.svc-card h3 {
    color: #002C54;
    font-size: 22px;
    line-height: 1.28;
    margin-bottom: 12px;
}

.svc-card p {
    color: #2d4258;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.svc-price {
    margin: 0 0 18px;
    color: #8f0f22;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.svc-price--multi {
    display: grid;
    gap: 6px;
    font-size: 15px;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    background: #00529f;
    border: 1px solid #00529f;
    color: #fff;
    transition: .25s ease;
}

.svc-btn:hover {
    background: #003f7a;
    border-color: #003f7a;
}

.svc-faq {
    display: grid;
    gap: 12px;
}

.svc-faq details {
    background: #fff;
    border: 1px solid #d9e5f1;
    border-radius: 10px;
    padding: 14px 16px;
}

.svc-faq summary {
    cursor: pointer;
    color: #002C54;
    font-weight: 600;
    font-size: 15px;
}

.svc-faq details p {
    margin-top: 10px;
    color: #4b6075;
    font-size: 14px;
}

@media (max-width: 992px) {
    .svc-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .svc-hero {
        padding: 56px 0 34px;
    }

    .svc-section {
        padding: 34px 0 46px;
    }

    .svc-grid-3 {
        grid-template-columns: 1fr;
    }

    .svc-card {
        min-height: 210px;
    }
}

/* ===== QUICK CONTACT (GLOBAL) ===== */
.quick-contact-desktop {
    position: fixed;
    right: 18px;
    bottom: 97px;
    z-index: 10010;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qcd-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 128px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: transform .2s ease, opacity .2s ease;
}

.qcd-item:hover {
    transform: translateY(-2px);
    opacity: .95;
}

.qcd-call {
    background: #00529f;
}

.qcd-wa {
    background: #22a95a;
}

.qcd-mail {
    background: #0f3a66;
}

.quick-contact-mobile {
    display: none;
}

.cookie-consent-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 10030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}

.cookie-consent-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-banner__content {
    width: min(100%, 980px);
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(31, 71, 109, .12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(12, 37, 62, .97), rgba(18, 63, 101, .95));
    box-shadow: 0 20px 50px rgba(7, 22, 39, .28);
}

.cookie-consent-banner__text h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 24px;
}

.cookie-consent-banner__text p {
    margin: 0;
    color: #d6e0ea;
    line-height: 1.7;
}

.cookie-consent-banner__text a {
    color: #8fd3ff;
    font-weight: 700;
}

.cookie-consent-banner__eyebrow {
    margin-bottom: 8px !important;
    color: #7ec8ff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cookie-consent-banner__status {
    margin-top: 10px !important;
    font-size: 13px;
    color: #b7ebc6 !important;
}

.cookie-consent-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    min-width: 130px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--primary {
    background: #11b88d;
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(17, 184, 141, .25);
}

.cookie-btn--ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .2);
    color: #ffffff;
}

.cookie-consent-banner[data-cookie-banner] {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__content {
    position: relative !important;
    overflow: hidden !important;
    max-width: 920px !important;
    min-height: 148px !important;
    padding: 24px 26px !important;
    border: 1px solid rgba(117, 180, 228, .18) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(180px 120px at 92% 18%, rgba(27, 175, 226, .18), transparent 70%),
        radial-gradient(180px 120px at 12% 90%, rgba(17, 184, 141, .16), transparent 68%),
        linear-gradient(135deg, #0c2641 0%, #12395d 60%, #144971 100%) !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__content::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, .06), transparent 38%) !important;
    pointer-events: none !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__text,
.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__actions {
    position: relative !important;
    z-index: 1 !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__text {
    max-width: 620px !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__text h3 {
    font-size: clamp(24px, 2vw, 30px) !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__text p {
    font-size: 15px !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__actions {
    gap: 14px !important;
    min-width: 300px !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-btn {
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    min-width: 144px !important;
    height: 52px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 28px rgba(5, 16, 28, .18) !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-btn--primary {
    background: linear-gradient(135deg, #15bd92 0%, #119f92 100%) !important;
    border-color: rgba(17, 184, 141, .65) !important;
    color: #ffffff !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-btn--ghost {
    background: rgba(255, 255, 255, .92) !important;
    border-color: rgba(255, 255, 255, .92) !important;
    color: #103657 !important;
    backdrop-filter: blur(8px) !important;
}

.cookie-consent-banner[data-cookie-banner] .cookie-btn:focus-visible {
    outline: 3px solid rgba(143, 211, 255, .55) !important;
    outline-offset: 3px !important;
}

@media (max-width: 992px) {
    .quick-contact-desktop {
        display: none;
    }

    .cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: 74px;
    }

    .cookie-consent-banner__content {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 20px;
    }

    .cookie-consent-banner__text h3 {
        font-size: 20px;
    }

    .cookie-consent-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1 1 0;
        min-width: 0;
    }

    .cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__content {
        min-height: auto !important;
        padding: 18px !important;
    }

    .cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__text {
        max-width: none !important;
    }

    .cookie-consent-banner[data-cookie-banner] .cookie-consent-banner__actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .cookie-consent-banner[data-cookie-banner] .cookie-btn {
        width: 100% !important;
    }

    .quick-contact-mobile {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10020;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        background: #0f2740;
        border-top: 1px solid #244c75;
    }

    .qcm-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        padding: 12px 8px;
    }

    .qcm-link i {
        font-size: 14px;
    }

    .qcm-link:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .whatsapp {
        bottom: 72px;
    }

    body {
        padding-bottom: 52px;
    }
}

/* ===== EYE CATCHING MOTION LAYER ===== */
.svc-hero,
.sab-hero {
    position: relative;
    overflow: hidden;
}

.svc-hero::before,
.sab-hero::before,
.svc-hero::after,
.sab-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.svc-hero::before,
.sab-hero::before {
    width: 360px;
    height: 360px;
    top: -140px;
    right: -110px;
    background: radial-gradient(circle at center, rgba(10, 78, 163, .16), rgba(10, 78, 163, 0));
    animation: floatOrb 8s ease-in-out infinite;
}

.svc-hero::after,
.sab-hero::after {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -140px;
    background: radial-gradient(circle at center, rgba(0, 44, 84, .14), rgba(0, 44, 84, 0));
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.svc-hero .container,
.sab-hero .container {
    position: relative;
    z-index: 1;
}

.svc-title,
.sab-title,
.svc-main-heading {
    position: relative;
}

.svc-title::after,
.sab-title::after {
    content: "";
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00529f, #0a4ea3, #66a6ff);
    display: block;
    margin: 12px auto 0;
    background-size: 200% 100%;
    animation: shineLine 2.4s linear infinite;
}

.svc-main-heading::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin-top: 8px;
    background: linear-gradient(90deg, #0a4ea3, #89baf5);
}

.svc-card,
.sab-card {
    position: relative;
    overflow: hidden;
    transform: translateY(18px);
    opacity: 0;
    animation: cardIn .65s ease forwards;
}

.svc-grid .svc-card:nth-child(2),
.sab-grid .sab-card:nth-child(2) {
    animation-delay: .06s;
}

.svc-grid .svc-card:nth-child(3),
.sab-grid .sab-card:nth-child(3) {
    animation-delay: .12s;
}

.svc-grid .svc-card:nth-child(4),
.sab-grid .sab-card:nth-child(4) {
    animation-delay: .18s;
}

.svc-grid .svc-card:nth-child(5),
.sab-grid .sab-card:nth-child(5) {
    animation-delay: .24s;
}

.svc-grid .svc-card:nth-child(6),
.sab-grid .sab-card:nth-child(6) {
    animation-delay: .30s;
}

.svc-card::before,
.sab-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 78, 163, .32), rgba(255, 255, 255, 0), rgba(10, 78, 163, .2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .28s ease;
}

.svc-card:hover::before,
.sab-card:hover::before {
    opacity: 1;
}

.svc-card:hover,
.sab-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 38, 75, .12);
}

.svc-btn,
.sab-btn-primary,
.start-btn {
    position: relative;
    overflow: hidden;
}

.svc-btn::after,
.sab-btn-primary::after,
.start-btn::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 35%;
    height: 340%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .36), rgba(255, 255, 255, 0));
    transform: rotate(24deg);
    transition: left .55s ease;
}

.svc-btn:hover::after,
.sab-btn-primary:hover::after,
.start-btn:hover::after {
    left: 120%;
}

.quick-contact-desktop .qcd-item {
    animation: breathe 2.4s ease-in-out infinite;
}

.quick-contact-desktop .qcd-item:nth-child(2) {
    animation-delay: .15s;
}

.quick-contact-desktop .qcd-item:nth-child(3) {
    animation-delay: .3s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(14px) scale(1.04);
    }
}

@keyframes shineLine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes cardIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .svc-hero::before,
    .sab-hero::before,
    .svc-hero::after,
    .sab-hero::after,
    .svc-title::after,
    .sab-title::after,
    .svc-card,
    .sab-card,
    .quick-contact-desktop .qcd-item {
        animation: none !important;
    }

    .svc-btn::after,
    .sab-btn-primary::after,
    .start-btn::after {
        display: none;
    }
}

/* ===== UNIQUE MOBILE MENU (FINAL OVERRIDE) ===== */
@media (max-width: 992px) {
    .topnav {
        background: linear-gradient(120deg, #ffffff 0%, #f2f7ff 100%) !important;
        border-bottom: 1px solid #d4e1ef;
        box-shadow: 0 8px 22px rgba(7, 34, 64, .08);
        backdrop-filter: blur(8px);
    }

    .topnav .nav-flex {
        min-height: 74px !important;
        padding: 0 10px !important;
    }

    .topnav .mobile-brand {
        color: #002C54 !important;
        font-weight: 800 !important;
        letter-spacing: .2px;
    }

    .topnav .mobile-brand span {
        color: #0a4ea3 !important;
    }

    .topnav .nav-actions {
        gap: 8px;
    }

    .topnav .account-btn,
    .topnav .menu-toggle {
        width: 40px !important;
        height: 40px !important;
        border: 1px solid #c6d8eb !important;
        border-radius: 12px !important;
        background: linear-gradient(145deg, #ffffff, #edf4ff) !important;
        color: #0f3a66 !important;
        box-shadow: 0 8px 16px rgba(7, 52, 96, .08);
    }

    .topnav .menu-toggle i {
        transition: transform .24s ease;
    }

    .topnav .menu-toggle[aria-expanded="true"] i {
        transform: rotate(90deg) scale(1.05);
    }

    .topnav #myLinks {
        top: 74px !important;
        width: min(100vw, 420px) !important;
        height: calc(100svh - 74px) !important;
        padding: 14px 12px calc(28px + env(safe-area-inset-bottom)) !important;
        background:
            radial-gradient(520px 280px at 110% -20%, rgba(10, 78, 163, .14), rgba(10, 78, 163, 0)),
            linear-gradient(180deg, #f4f8fd 0%, #eaf1f9 100%) !important;
        border-left: 1px solid #cad9ea;
        box-shadow: -14px 0 34px rgba(8, 35, 63, .2) !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .topnav #myLinks.active {
        transform: translateX(0) !important;
    }

    .topnav #myLinks::before {
        content: "Explore Services";
        display: block;
        margin: 0 4px 12px;
        padding: 0 4px 10px;
        border-bottom: 1px solid rgba(18, 65, 108, .14);
        color: #123e69;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .topnav .menu>li {
        margin-bottom: 10px;
        border: 1px solid #d4e1ee !important;
        border-radius: 14px;
        background: rgba(255, 255, 255, .88) !important;
        box-shadow: 0 10px 24px rgba(9, 41, 74, .08);
        overflow: hidden;
    }

    .topnav .menu>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 56px;
        padding: 16px 16px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #153552 !important;
        line-height: 1.35;
    }

    .topnav .menu>li.active>a {
        background: linear-gradient(180deg, rgba(10, 78, 163, .08), rgba(10, 78, 163, .03)) !important;
        color: #0d447b !important;
    }

    .topnav .mega-dropdown>a::after {
        color: #0a4ea3 !important;
        font-size: 12px !important;
        flex: 0 0 auto;
    }

    .topnav .mega-menu {
        background: #f5f9ff !important;
        border-top: 1px solid #d9e6f3;
        padding: 8px 0 10px !important;
    }

    .topnav .mega-column {
        border-top: none !important;
        margin: 0 8px 10px;
        border: 1px solid #d9e5f1;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .topnav .mega-column h4 {
        background: linear-gradient(145deg, #f7fbff, #edf4ff);
        color: #194870 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 13px 14px 13px 18px !important;
        border-bottom: 1px solid #e6eef7;
        cursor: default;
    }

    .topnav .mega-column h4::after {
        display: none;
    }

    .topnav .mega-column ul {
        display: block;
        padding: 10px 12px 12px 18px !important;
    }

    .topnav .mega-column ul li {
        margin: 0 0 8px !important;
        border-radius: 8px;
    }

    .topnav .mega-column ul li a {
        display: block;
        padding: 10px 12px !important;
        border-radius: 8px;
        color: #325371 !important;
        font-size: 14px !important;
        line-height: 1.45;
        background: #f7fbff;
        border: 1px solid #e7eff8;
    }

    .topnav .mega-column ul li a:active {
        background: #e6f0ff;
        border-color: #c8defa;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(3, 16, 29, .28);
        backdrop-filter: blur(2px);
        z-index: 1090;
    }

    .topnav,
    .topnav #myLinks {
        z-index: 1100;
    }
}

/* ===== TOP BAR MINOR UP SHIFT ===== */
.top-bar {
    padding: 8px 0 !important;
}

.top-bar .container.flex-between {
    transform: translateY(-1px);
}

@media (min-width: 993px) {
    .top-bar .logo {
        margin-left: -55px !important;
    }

    .top-bar .top-bar-lite {
        margin-right: -70px !important;
    }
}

/* ===== TRUST SECTION DESIGN UPGRADE ===== */
.trust-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #e7eef7 0%, #ffffff 58%, #ffffff 100%);
    padding: 92px 20px !important;
}

.trust-content {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(246, 250, 255, .9));
    border: 1px solid rgba(122, 150, 185, .34);
    border-radius: 28px;
    padding: 42px 34px;
    box-shadow: 0 24px 56px rgba(8, 43, 79, .16);
    backdrop-filter: blur(10px);
}

.trust-content::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(10, 78, 163, .4), rgba(232, 229, 226, 0.32), rgba(10, 78, 163, .14));
    z-index: -1;
    opacity: .55;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.4fr .95fr;
    gap: 26px;
    align-items: stretch;
}

.trust-copy {
    text-align: left;
}

.trust-subtitle {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 999px;
    background: linear-gradient(90deg, #eff5ff, #e7f2ff);
    border: 1px solid #c1d5f2;
    color: #0a4ea3 !important;
    letter-spacing: 1.4px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
    box-shadow: 0 6px 16px rgba(10, 78, 163, .12);
}

.trust-section h2 {
    color: #072642 !important;
    font-size: 30px !important;
    line-height: 1.1;
    margin-bottom: 16px !important;
    letter-spacing: -0.5px;
}

.trust-text {
    color: #355775 !important;
    font-size: 19px !important;
    line-height: 1.8 !important;
    max-width: 740px !important;
    margin-left: 0 !important;
}

.trust-btn {
    margin-top: 20px !important;
    background: linear-gradient(90deg, #005db6 0%, #0c4f9f 48%, #15478c 100%);
    border: 1px solid #0a4ea3 !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 14px 30px !important;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(10, 78, 163, .32);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.trust-btn:hover {
    background: linear-gradient(90deg, #003f7a 0%, #0a4383 50%, #0a3a72 100%) !important;
    border-color: #003f7a !important;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
    filter: saturate(1.06);
}

.trust-panel {
    background: linear-gradient(155deg, #003f7a 0%, #003f7a 55%, #003a72 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #e8f1ff;
    padding: 24px 20px;
    box-shadow: 0 20px 38px rgba(8, 43, 79, .3);
}

.trust-panel h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.trust-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.trust-panel li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
    font-size: 14px;
    color: #d8e9ff;
}

.trust-panel li i {
    color: #71ffb5;
    margin-top: 2px;
}

.trust-kpis {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-kpis span {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-copy {
        text-align: center;
    }

    .trust-text {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .trust-panel {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 62px 14px !important;
    }

    .trust-content {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .trust-section h2 {
        font-size: clamp(26px, 8.2vw, 38px) !important;
    }

    .trust-text {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .trust-btn {
        width: 100%;
        font-size: 18px;
    }
}

/* ===== WHY SECTION DESIGN UPGRADE ===== */
.why-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(520px 220px at 12% 18%, rgba(10, 78, 163, 0.08), transparent 72%),
        radial-gradient(480px 240px at 88% 84%, rgba(242, 146, 28, 0.08), transparent 70%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 88px 20px !important;
}

.why-grid {
    display: block !important;
}

.why-cards {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px !important;
}

.why-card {
    position: relative;
    border: 1px solid #dbe6f1;
    border-radius: 22px !important;
    box-shadow: 0 16px 32px rgba(10, 41, 72, .08);
    text-align: left !important;
    padding: 28px !important;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-card i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(20, 57, 91, .14);
    margin-bottom: 18px !important;
}

.why-card h3 {
    color: #103454;
    font-size: 22px;
    margin-bottom: 12px !important;
}

.why-card p {
    color: #3a5670 !important;
    font-size: 15px;
    line-height: 1.7;
}

.why-card:nth-child(1) {
    grid-column: span 7;
    min-height: 280px;
}

.why-card:nth-child(2) {
    grid-column: span 5;
    min-height: 220px;
}

.why-card:nth-child(3) {
    grid-column: span 5;
    min-height: 220px;
}

.why-card:nth-child(4) {
    grid-column: span 7;
    min-height: 280px;
}

.why-card::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 96px;
    height: 96px;
    border-radius: 24px 24px 0 0;
    opacity: 0.12;
    background: linear-gradient(135deg, #ffffff, transparent);
    pointer-events: none;
}

@media (max-width: 900px) {
    .why-section {
        padding: 62px 14px !important;
    }

    .why-cards {
        grid-template-columns: 1fr !important;
    }

    .why-card:nth-child(1),
    .why-card:nth-child(2),
    .why-card:nth-child(3),
    .why-card:nth-child(4) {
        grid-column: auto;
        min-height: auto;
    }
}

/* ===== TESTIMONIAL SECTION (HUMAN TONE) ===== */
.testimonial-modern {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%) !important;
    animation: none !important;
    padding: 84px 20px;
}

.testimonial-modern h2 {
    color: #0d3153;
    font-size: 35px;
    line-height: 1.22;
}

.t-stars {
    animation: none !important;
    letter-spacing: 4px;
    color: #278f57;
    margin-bottom: 28px;
}

.testimonial-wrapper {
    max-width: 760px;
}

.testimonial-slide {
    background: #e2ebed !important;
    border: 1px solid #d9e4f1;
    box-shadow: 0 14px 34px rgba(10, 38, 66, .09);
    border-radius: 18px;
}

.quote {
    font-style: normal;
    color: #39566f;
}

.testimonial-slide h4 {
    color: #113a60;
}

.testimonial-slide span {
    color: #607990;
}

.dot {
    border-color: #98abc0;
}

.dot.active {
    background: #3c5e81;
}

/* ===== PARTNERS SECTION UPGRADE ===== */
.partners-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f8fc 0%, #edf3f8 100%) !important;
    padding: 80px 20px !important;
}

.partners-section .partner-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.partners-section .partner-small {
    display: inline-block;
    margin-bottom: 8px;
    color: #0a4ea3;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
}

.partners-section h2 {
    margin: 0 0 12px;
    color: #0d3153;
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.15;
}

.partners-section .partner-lead {
    margin: 0;
    color: #60778e;
    font-size: 17px;
    line-height: 1.7;
}

.partners-section .partner-shell {
    position: relative;
    background: #ffffff;
    border: 1px solid #d7e2ec;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(13, 49, 83, .08);
}

.partners-section .partner-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 78, 163, .10), rgba(10, 78, 163, .03));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.partners-section .partner-shell-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.partners-section .partner-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eef4fb;
    color: #0a4ea3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.partners-section .partner-note {
    margin: 0;
    max-width: 720px;
    color: #698095;
    font-size: 14px;
    line-height: 1.7;
}

.partners-section .partner-slider {
    position: relative;
    overflow: hidden;
    padding: 2px 0;
    margin-bottom: 22px;
    background: #f8fbfe;
    border: 1px solid #dde7f0;
    border-radius: 22px;
}

.partners-section .partner-slider::before,
.partners-section .partner-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 92px;
    z-index: 1;
    pointer-events: none;
}

.partners-section .partner-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f8fbfe 0%, rgba(248, 251, 254, 0) 100%);
}

.partners-section .partner-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbfe 0%, rgba(248, 251, 254, 0) 100%);
}

.partners-section .partner-track {
    gap: 18px;
    padding: 18px;
    animation-duration: 34s;
}

.partners-section .partner-name {
    flex: 0 0 280px;
    min-height: 88px;
    padding: 18px 20px;
    border: 1px solid #d7e3ee;
    border-radius: 18px;
    background: #ffffff;
    color: #14385e;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    white-space: normal;
    text-align: left;
    box-shadow: 0 8px 18px rgba(13, 49, 83, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.partners-section .partner-name:hover {
    transform: translateY(-3px);
    border-color: #b9cde2;
    box-shadow: 0 12px 24px rgba(13, 49, 83, .10);
}

.partners-section .partner-slider:hover .partner-track {
    animation-play-state: paused;
}

.partners-section .partner-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.partners-section .partner-meta {
    margin: 0;
    color: #61788e;
    font-size: 15px;
    line-height: 1.6;
}

.partners-section .partner-btn {
    margin-top: 0;
    border-radius: 14px;
    border: 1px solid #0a4ea3;
    color: #fff;
    background: #0a4ea3;
    box-shadow: 0 12px 24px rgba(10, 78, 163, .16);
}

.partners-section .partner-btn:hover {
    background: #083e82;
    color: #fff;
    border-color: #083e82;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 64px 16px !important;
    }

    .partners-section h2 {
        font-size: 32px;
    }

    .partners-section .partner-lead {
        font-size: 15px;
    }

    .partners-section .partner-shell {
        padding: 20px;
        border-radius: 22px;
    }

    .partners-section .partner-shell-copy,
    .partners-section .partner-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .partners-section .partner-slider::before,
    .partners-section .partner-slider::after {
        width: 36px;
    }

    .partners-section .partner-track {
        padding: 16px;
    }

    .partners-section .partner-name {
        flex-basis: 248px;
        min-height: 82px;
        padding: 16px 18px;
        font-size: 14px;
    }

    .partners-section .partner-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== INDIA MAP SECTION ===== */
.india-map-section {
    position: relative;
    overflow: hidden;
    padding: 84px 20px !important;
    background:
        radial-gradient(520px 260px at 8% 16%, rgba(10, 78, 163, 0.08), transparent 72%),
        radial-gradient(420px 240px at 92% 82%, rgba(242, 146, 28, 0.10), transparent 72%),
        linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.india-map-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(280px, 0.58fr);
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(197, 210, 224, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 30px rgba(102, 122, 145, 0.08);
}

.india-map-shell::before {
    display: none;
}

.india-map-copy {
    position: relative;
    z-index: 1;
    padding: 8px 8px 8px 10px;
}

.india-map-copy--panel {
    align-self: stretch;
    padding: 4px 4px 4px 18px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(197, 210, 224, 0.9);
    box-shadow: none;
    backdrop-filter: none;
}

.india-map-copy h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.05;
}

.india-map-copy p:last-child {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.india-map-panel-kicker {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.india-map-panel-title-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.india-map-panel-count {
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.india-map-panel-summary {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.india-map-panel-inline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 14px;
}

.india-map-panel-inline-meta strong {
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.india-map-panel-inline-meta span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.india-map-panel-cities {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 560px;
    overflow: auto;
}

.india-map-panel-cities li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.78);
}

.india-map-panel-note {
    margin: 14px 0 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}

.india-map-section .india-map-visual {
    position: relative;
    z-index: 1;
    min-height: clamp(620px, 54vw, 980px);
    padding: 0;
    border-radius: 12px;
    background: transparent !important;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.india-map-section .india-map-svg {
    display: block;
    width: 168%;
    height: auto;
    max-width: none;
    max-height: 980px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.08));
}

.india-map-counts {
    pointer-events: none;
}

.india-map-count {
    fill: #111111;
    font-size: 22px;
    font-weight: 700;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 5px;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.india-map-tooltip {
    display: none !important;
}

.india-map-tooltip[hidden] {
    display: none !important;
}

.india-map-svg .land {
    fill: #dbe9f8;
    stroke: rgba(255, 255, 255, 0.98);
    stroke-width: 1.4;
    vector-effect: non-scaling-stroke;
    transition: fill 0.22s ease, transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
    transform-box: fill-box;
    transform-origin: center;
    cursor: pointer;
}

.india-map-svg .land:hover,
.india-map-svg .land:focus-visible,
.india-map-svg .land.is-active {
    fill: #0a4ea3;
    filter: drop-shadow(0 8px 14px rgba(10, 78, 163, 0.16));
    transform: translateY(-1px) scale(1.01);
    outline: none;
}

@media (max-width: 1200px) {
    .india-map-shell {
        grid-template-columns: minmax(0, 1.36fr) minmax(260px, 0.64fr);
    }

    .india-map-section .india-map-visual {
        min-height: clamp(560px, 58vw, 820px);
    }

    .india-map-section .india-map-svg {
        width: 154%;
        max-height: 860px;
    }

    .india-map-count {
        font-size: 20px;
    }
}

@media (max-width: 960px) {
    .india-map-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .india-map-copy {
        max-width: 680px;
    }

    .india-map-copy--panel {
        width: 100%;
        max-width: none;
        padding: 18px 0 0;
        border-left: none;
        border-top: 1px solid rgba(197, 210, 224, 0.9);
    }

    .india-map-section .india-map-visual {
        min-height: 620px;
        padding: 0;
    }

    .india-map-section .india-map-svg {
        width: 138%;
        max-height: 760px;
    }

    .india-map-count {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .india-map-section {
        padding: 64px 16px !important;
    }

    .india-map-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .india-map-shell::before {
        border-radius: 22px;
    }

    .india-map-copy h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .india-map-panel-summary {
        font-size: 16px;
    }

    .india-map-section .india-map-visual {
        min-height: min(92vh, 820px);
        padding: 0;
        border-radius: 20px;
    }

    .india-map-section .india-map-svg {
        width: 210%;
        max-height: 880px;
    }

    .india-map-panel-title-row,
    .india-map-panel-inline-meta {
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .india-map-section {
        padding: 48px 12px !important;
    }

    .india-map-shell {
        padding: 16px;
        gap: 18px;
    }

    .india-map-copy--panel {
        padding-top: 16px;
    }

    .india-map-section .india-map-visual {
        min-height: min(94vh, 760px);
        padding: 2px;
    }

    .india-map-section .india-map-svg {
        width: 238%;
        max-height: 920px;
    }

    .india-map-panel-cities li {
        padding-inline: 10px;
    }

    .india-map-count {
        font-size: 16px;
        stroke-width: 4px;
    }
}

/* ===== FOOTER MOBILE ACCORDION ===== */
.footer-mobile-accordion {
    display: none;
}

@media (max-width: 768px) {
    .footer-desktop-links {
        display: none;
    }

    .footer-mobile-accordion {
        display: grid;
        gap: 12px;
        margin-top: 8px;
    }

    .footer-mobile-accordion details {
        border: 1px solid #3d4651;
        border-radius: 8px;
        background: #44484e;
        overflow: hidden;
    }

    .footer-mobile-accordion summary {
        list-style: none;
        cursor: pointer;
        color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        padding: 10px 30px;
        position: relative;
    }

    .footer-mobile-accordion summary::-webkit-details-marker {
        display: none;
    }

    .footer-mobile-accordion summary::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #e7edf4;
        transition: transform .2s ease;
    }

    .footer-mobile-accordion details[open] summary::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .footer-mobile-accordion ul {
        list-style: none;
        margin: 0;
        padding: 0 20px 14px;
        border-top: 1px solid rgba(255, 255, 255, .12);
        background: #3e4349;
    }

    .footer-mobile-accordion li {
        color: #d7dee6;
        font-size: 14px;
        line-height: 1.5;
        margin: 10px 0 0;
    }
}

/* ===== SERVICE DETAIL PAGES ===== */
.sdp-page {
    background: #f5f8fc;
}

.sdp-hero {
    background: linear-gradient(135deg, #e9f1fb 0%, #f7fbff 60%, #edf3fc 100%);
    padding: 84px 0 58px;
}

.sdp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: start;
}

.sdp-hero-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.sdp-eyebrow {
    color: #0a4ea3;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sdp-hero h1 {
    color: #082947;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.sdp-intro {
    color: #38546b;
    font-size: 16px;
    line-height: 1.8;
    max-width: 760px;
}

.sdp-hero-highlights {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sdp-hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #cfe0f1;
    background: rgba(255, 255, 255, 0.72);
    color: #1e4d74;
    font-size: 13px;
    font-weight: 600;
}

.sdp-hero-highlights i {
    color: #1ca86c;
    font-size: 14px;
}

.sdp-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sdp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 11px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.sdp-btn-primary {
    border: 1px solid #00529f;
    background: #00529f;
    color: #fff;
}

.sdp-btn-primary:hover {
    background: #003f7a;
    border-color: #003f7a;
}

.sdp-btn-outline {
    border: 1px solid #b9cbe0;
    background: #fff;
    color: #0f3a66;
}

.sdp-btn-outline:hover {
    border-color: #0a4ea3;
    color: #0a4ea3;
}

.sdp-hero-card {
    background: #fff;
    border: 1px solid #d8e4f1;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(10, 39, 67, .08);
}

.sdp-hero-card h2 {
    color: #0d3153;
    margin-bottom: 12px;
}

.sdp-hero-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sdp-hero-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #365067;
}

.sdp-hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0a4ea3;
}

.sdp-section {
    padding: 64px 0;
}

.sdp-alt {
    background: #eef4fb;
}

.sdp-title {
    color: #0d3153;
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 18px;
}

.sdp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sdp-card {
    background: #fff;
    border: 1px solid #d7e2ef;
    border-radius: 12px;
    padding: 20px;
}

.sdp-card h3 {
    color: #8f0f22;
    font-size: 20px;
    margin-bottom: 8px;
}

.sdp-card p {
    color: #3a566f;
    font-size: 14px;
    line-height: 1.7;
}

.sdp-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sdp-step {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid #d7e2ef;
    border-radius: 12px;
    padding: 16px;
}

.sdp-step-no {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0a4ea3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.sdp-step p {
    color: #3a566f;
    line-height: 1.55;
}

.sdp-docs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sdp-docs span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c9d9ea;
    background: #fff;
    color: #204361;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.sdp-head {
    margin-bottom: 14px;
}

.sdp-faq {
    display: grid;
    gap: 10px;
}

.sdp-faq details {
    background: #fff;
    border: 1px solid #d8e4f1;
    border-radius: 10px;
    padding: 14px 16px;
}

.sdp-faq summary {
    cursor: pointer;
    color: #0f3a66;
    font-weight: 700;
}

.sdp-faq p {
    margin-top: 8px;
    color: #45627a;
}

.sdp-cta-wrap {
    padding-top: 0;
}

.sdp-cta {
    background: #0f3a66;
    border-radius: 14px;
    padding: 28px;
}

.sdp-cta h2 {
    color: #fff;
    margin-bottom: 8px;
}

.sdp-cta p {
    color: #d6e3f3;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .sdp-hero-grid {
        grid-template-columns: 1fr;
    }

    .sdp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdp-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .sdp-hero {
        padding: 58px 0 42px;
    }

    .sdp-section {
        padding: 44px 0;
    }

    .sdp-grid {
        grid-template-columns: 1fr;
    }

    .sdp-hero-highlights {
        gap: 8px;
    }

    .sdp-hero-highlights span {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== SERVICE DETAIL HERO + SUBNAV ===== */
.sdp-breadcrumb {
    margin: 0 0 18px;
    color: #5a7289;
    font-size: 14px;
}

.sdp-breadcrumb a {
    color: #0a4ea3;
    text-decoration: none;
}

.sdp-hero-form {
    background: #f4f5f7;
    border: 1px solid #c9d8e8;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(8, 35, 62, .08);
}

.sdp-hero-form h3 {
    color: #8f0f22;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.sdp-hero-form>p {
    text-align: center;
    color: #2f4459;
    margin-bottom: 16px;
    font-size: 18px;
}

.sdp-hero-form>p strong {
    color: #0f2f4d;
}


.sdp-hero-form form {
    display: grid;
    gap: 10px;
}

.sdp-hero-form input,
.sdp-hero-form textarea {
    width: 100%;
    border: 1px solid #b8cada;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 14px;
    color: #2f4459;
    background: #f8fafc;
    font-family: inherit;
}

.sdp-hero-form select {
    width: 100%;
    border: 1px solid #b8cada;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 16px;
    color: #1f3550;
    background: #f8fafc;
    appearance: auto;
}

.sdp-hero-form textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.45;
}

.sdp-hero-form input:focus,
.sdp-hero-form select:focus,
.sdp-hero-form textarea:focus {
    outline: none;
    border-color: #0a7cf5;
    box-shadow: 0 0 0 3px rgba(10, 124, 245, 0.14);
}

.sdp-mobile-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
}

.sdp-hero-form button {
    margin-top: 4px;
    width: 100%;
    border: 1px solid #00529f;
    background: #00529f;
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.sdp-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sdp-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1ca86c;
    font-weight: 700;
    background: rgba(255, 255, 255, .66);
    border: 1px solid #d7e5f2;
    border-radius: 12px;
    padding: 10px 12px;
}

.sdp-stat i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #1ca86c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sdp-subnav {
    position: sticky;
    top: var(--sdp-subnav-top, 110px);
    z-index: 9000;
    background: #f2f3f5;
    border-top: 1px solid #d9dfe7;
    border-bottom: 1px solid #d9dfe7;
    box-shadow: 0 6px 14px rgba(8, 30, 55, .08);
}

body.navbar-compact .sdp-subnav {
    top: 60px;
}

.sdp-subnav-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.sdp-subnav-inner::-webkit-scrollbar {
    display: none;
}

.sdp-subnav-inner a {
    color: #8f0f22;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
    padding: 10px 4px;
    border-bottom: 3px solid transparent;
}

.sdp-subnav-inner a.active {
    border-bottom-color: #8f0f22;
}

.sdp-subnav-cta {
    margin-left: auto;
    padding: 8px 18px !important;
    border-radius: 8px;
    background: #ea8f13;
    color: #fff !important;
    border: 1px solid #ea8f13;
    border-bottom: 1px solid #ea8f13 !important;
}

.sdp-overview-text {
    color: #35526b;
    line-height: 1.8;
    margin-bottom: 12px;
}

.sdp-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sdp-compare-row {
    background: #fff;
    border: 1px solid #d8e4f1;
    border-radius: 12px;
    padding: 16px;
}

.sdp-compare-row h3 {
    color: #0d3153;
    margin-bottom: 8px;
}

.sdp-compare-row div {
    color: #3c5870;
    margin: 4px 0;
}

@media (max-width: 992px) {
    .sdp-stats {
        grid-template-columns: 1fr;
    }

    .sdp-subnav-inner {
        gap: 12px;
        padding: 10px 0;
    }

    .sdp-subnav-inner a {
        font-size: 13px;
    }

    .sdp-subnav {
        top: 72px;
    }

    .sdp-subnav-cta {
        margin-left: auto;
    }

    .sdp-compare {
        grid-template-columns: 1fr;
    }
}

/* ===== NEW HORIZONTAL SECTION MENU ===== */
.section-jump {
    position: sticky;
    top: var(--sdp-subnav-top, 110px);
    z-index: 9000;
    background: rgba(242, 245, 249, 0.96);
    border-top: 1px solid #d9dfe7;
    border-bottom: 1px solid #d9dfe7;
    box-shadow: 0 8px 18px rgba(9, 37, 66, 0.08);
    backdrop-filter: blur(6px);
}

body.navbar-compact .section-jump {
    top: 60px;
}

.section-jump-inner {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.section-jump-track {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 2px 0;
}

.section-jump-track::-webkit-scrollbar {
    display: none;
}

.section-jump-track a {
    color: #8f0f22;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 10px 4px;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.section-jump-track a:hover {
    color: #0d3153;
}

.section-jump-track a.active {
    border-bottom-color: #8f0f22;
}

.section-jump-cta {
    margin-left: auto;
    padding: 9px 16px !important;
    border-radius: 10px;
    background: #ea8f13;
    color: #fff !important;
    border: 1px solid #ea8f13;
    border-bottom: 1px solid #ea8f13 !important;
}

.section-jump-cta:hover {
    background: #cf7d0f;
    border-color: #cf7d0f;
}

.sj-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #d0dbe7;
    background: #fff;
    color: #36516a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background-color .2s ease;
}

.sj-btn:hover {
    background: #eef4fb;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .section-jump {
        top: 72px;
    }

    .section-jump-track a {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .section-jump-inner {
        grid-template-columns: 30px 1fr 30px;
        gap: 6px;
    }

    .sj-btn {
        width: 30px;
        height: 30px;
    }
}

/* ===== UNIFIED MENU PAGE REDESIGN (SVC + SDP) ===== */
:root {
    --menu-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --menu-bg: #edf3fb;
    --menu-surface: #ffffff;
    --menu-border: #d2deec;
    --menu-title: #0d3153;
    --menu-text: #38556e;
    --menu-accent: #0a4ea3;
    --menu-warm: #8f0f22;
    --menu-cta: #00529f;
    --menu-cta-hover: #003f7a;
}

.svc-page,
.sdp-page,
.svc-page *,
.sdp-page * {
    font-family: var(--menu-font);
}

.svc-page .fa-solid,
.svc-page .fa-regular,
.svc-page .fa-brands,
.sdp-page .fa-solid,
.sdp-page .fa-regular,
.sdp-page .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.svc-page,
.sdp-page {
    background:
        radial-gradient(700px 260px at 0% 0%, rgba(10, 78, 163, 0.08), transparent 70%),
        radial-gradient(760px 280px at 100% 0%, rgba(143, 15, 34, 0.07), transparent 72%),
        var(--menu-bg);
}

.svc-hero,
.sdp-hero {
    background: linear-gradient(145deg, #eaf2fc 0%, #f7fbff 62%, #edf4fd 100%);
    padding-top: 76px;
    padding-bottom: 56px;
    border-bottom: 1px solid #d6e1ee;
}

.svc-hero .container,
.sdp-hero .container {
    position: relative;
}

.svc-eyebrow,
.sdp-eyebrow {
    color: var(--menu-accent);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 800;
    font-size: 12px;
}

.svc-hero h1,
.sdp-hero h1 {
    color: var(--menu-title);
    font-size: 35px;
    line-height: 1.12;
    margin-bottom: 12px;
}

.svc-intro,
.sdp-intro {
    color: var(--menu-text);
    font-size: 18px;
    line-height: 1.75;
    max-width: 760px;
}

.svc-section,
.sdp-section {
    padding: 68px 0;
}

.svc-section-alt,
.sdp-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(243, 247, 253, 0.92) 100%);
}

.svc-title,
.sdp-title,
.svc-main-heading {
    color: var(--menu-title);
    letter-spacing: -0.2px;
}

.svc-title,
.sdp-title {
    font-size: clamp(30px, 3vw, 44px);
    margin-bottom: 20px;
}

.svc-main-block {
    margin-bottom: 24px;
    background: var(--menu-surface);
    border: 1px solid var(--menu-border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(7, 38, 69, 0.06);
}

.svc-main-heading {
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dce6f1;
}

.svc-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.svc-card,
.sdp-card,
.sdp-step,
.sdp-compare-row,
.sdp-faq details,
.svc-faq details {
    background: var(--menu-surface);
    border: 1px solid var(--menu-border);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(9, 40, 71, 0.06);
}

.svc-card {
    position: relative;
    padding: 22px 18px 18px;
}

.svc-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #0a4ea3, #8f0f22);
}

.svc-card h3,
.sdp-card h3 {
    color: var(--menu-warm);
}

.svc-card p,
.sdp-card p,
.sdp-overview-text,
.sdp-step p,
.sdp-compare-row div,
.sdp-faq p,
.svc-faq details p {
    color: var(--menu-text);
}

.svc-btn,
.sdp-btn-primary,
.sdp-hero-form button {
    background: var(--menu-cta);
    border-color: var(--menu-cta);
    color: #fff;
    border-radius: 10px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease;
}

.svc-btn:hover,
.sdp-btn-primary:hover,
.sdp-hero-form button:hover {
    background: var(--menu-cta-hover);
    border-color: var(--menu-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 63, 122, 0.26);
}

.svc-faq details,
.sdp-faq details {
    padding: 14px 16px;
}

.svc-faq summary,
.sdp-faq summary {
    color: var(--menu-title);
    font-weight: 700;
}

.sdp-hero-grid {
    gap: 28px;
}

.sdp-hero-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d4e0ee;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(7, 38, 69, 0.12);
}

.sdp-hero-form h3 {
    color: var(--menu-warm);
    font-size: 30px;
}

.sdp-hero-form>p {
    color: #2f4459;
}


.sdp-legal-note {
    margin: 8px 0 0;
    color: #51677d;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.sdp-legal-note a {
    color: var(--menu-cta);
    font-weight: 700;
    text-decoration: none;
}

.sdp-legal-note a:hover {
    text-decoration: underline;
}

.sdp-hero-form input,
.sdp-hero-form select,
.sdp-hero-form textarea {
    background: #f8fbff;
    border: 1px solid #b8cada;
    border-radius: 12px;
}

.sdp-subnav {
    background: rgba(242, 245, 249, 0.95);
    border-top: 1px solid #d7e0ea;
    border-bottom: 1px solid #d7e0ea;
    box-shadow: 0 8px 18px rgba(9, 37, 66, 0.08);
}

.sdp-subnav-inner a {
    color: var(--menu-warm);
    font-weight: 700;
}

.sdp-subnav-inner a.active {
    border-bottom-color: var(--menu-warm);
}

.sdp-subnav-cta {
    background: #ea8f13;
    border-color: #ea8f13;
}

@media (max-width: 992px) {

    .svc-hero,
    .sdp-hero {
        padding-top: 60px;
        padding-bottom: 44px;
    }

    .svc-section,
    .sdp-section {
        padding: 46px 0;
    }

    .svc-main-block {
        padding: 16px;
    }
}

/* ===== DIRECT MESSAGE (REFERENCE STYLE) ===== */
.lead-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9999;
}

.lead-popup-open {
    overflow: hidden;
}

.lead-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 48, .58);
}

.lead-popup__dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(10, 31, 56, .28);
}

.lead-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid #d7e3ee;
    border-radius: 999px;
    background: #fff;
    color: #264765;
    cursor: pointer;
}

.lead-popup__intro {
    margin-bottom: 16px;
    padding-right: 32px;
}

.lead-popup__eyebrow {
    margin: 0 0 8px;
    color: #0a4ea3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lead-popup__intro h2 {
    margin: 0 0 10px;
    color: #0d3153;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.2;
}

.lead-popup__intro p {
    margin: 0;
    color: #60768d;
    font-size: 15px;
    line-height: 1.7;
}

.lead-popup__form .dm-submit {
    min-height: 50px;
}

.message-success-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10060;
}

.message-success-popup.is-visible {
    display: flex;
}

.message-success-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 48, .58);
    backdrop-filter: blur(3px);
    z-index: 0;
}

.message-success-popup__dialog {
    position: relative;
    width: min(100%, 460px);
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #d7e3ee;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(10, 31, 56, .28);
    z-index: 1;
    pointer-events: auto;
}

.message-success-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid #d7e3ee;
    border-radius: 999px;
    background: #fff;
    color: #264765;
    cursor: pointer;
    z-index: 2;
}

.message-success-popup__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e8f9f1, #f4fff8);
    color: #1ca86c;
    font-size: 34px;
}

.message-success-popup__eyebrow {
    margin: 0 0 8px;
    color: #0a4ea3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.message-success-popup__dialog h2 {
    margin: 0 0 10px;
    color: #0d3153;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.2;
}

.message-success-popup__text {
    margin: 0 0 18px;
    color: #60768d;
    font-size: 15px;
    line-height: 1.7;
}

.message-success-popup__button {
    min-width: 120px;
    border: 1px solid var(--menu-cta);
    background: var(--menu-cta);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.message-success-popup__button:hover {
    background: var(--menu-cta-hover);
    border-color: var(--menu-cta-hover);
}

.dm-section {
    padding: 90px 0;
    background:
        radial-gradient(560px 240px at 8% 8%, rgba(10, 78, 163, 0.08), transparent 72%),
        radial-gradient(600px 260px at 92% 14%, rgba(234, 143, 19, 0.10), transparent 72%),
        #f4f6f9;
}

.dm-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 34px;
    align-items: center;
}

.dm-content h2 {
    margin: 10px 0 12px;
    font-size: 40px;
    line-height: 1.08;
    color: #0e2f55;
    letter-spacing: -0.5px;
    max-width: 700px;
}

.dm-eyebrow {
    color: #5f6770;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.dm-lead {
    color: #555f6b;
    font-size: 18px;
    line-height: 1.65;
    max-width: 820px;
}

.dm-benefits {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
}

.dm-benefits span {
    color: #4d555f;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dm-benefits :hover {
    color: #003f7a;
    cursor: pointer;
}

.dm-benefits i {
    color: #0d8c32;
}

.dm-card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e7ef;
    border-radius: 18px;
    padding: 22px 22px 18px;
    box-shadow: 0 12px 26px rgba(13, 41, 72, 0.14);
    animation: dmCardEnter .65s ease both;
}

/* .dm-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #db1324, #ea8f13);
} */

/* .dm-badge {
    position: absolute;
    top: -18px;
    right: 18px;
    background: #ef1f28;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(239, 31, 40, 0.22);
} */

.dm-card h3 {
    margin: 8px 0 14px;
    color: #222;
    font-size: 25px;
}

.dm-form {
    display: grid;
    gap: 10px;
}

.dm-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dm-field {
    display: grid;
    gap: 6px;
}

.dm-field label {
    color: #3e4a56;
    font-size: 13px;
    font-weight: 700;
}

.dm-field input,
.dm-field textarea,
.dm-field select {
    width: 100%;
    border: 1px solid #d1dbe8;
    border-radius: 11px;
    background: #f9fbff;
    padding: 12px;
    color: #1d2e42;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.dm-field input:focus,
.dm-field textarea:focus,
.dm-field select:focus {
    outline: none;
    border-color: #0a4ea3;
    box-shadow: 0 0 0 3px rgba(10, 78, 163, 0.16);
}

.dm-service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dm-service-buttons button {
    border: 1px solid #c7d5e8;
    background: #f2f6fb;
    color: #294969;
    border-radius: 999px;
    padding: 7px 11px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.dm-service-buttons button:hover,
.dm-service-buttons button.active {
    background: #0a4ea3;
    border-color: #0a4ea3;
    color: #fff;
}

.dm-submit-row {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 8px;
}

.dm-submit {
    border: none;
    border-radius: 15px;
    background: linear-gradient(160deg, #002C54, #A4A3AB);
    color: #fff;
    min-height: 45px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.dm-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(00, 3, 0, 0.35);
}

.dm-whatsapp {
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    background: #28cf62;
}

.dm-meta {
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.dm-meta span {
    color: #4c5660;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dm-meta i {
    color: #f89f00;
}

.dm-flash {
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.dm-flash.success {
    border: 1px solid #bfe6cd;
    background: #ebf9f0;
    color: #1f6b3d;
}

.dm-flash.error {
    border: 1px solid #f0c0c8;
    background: #fff0f2;
    color: #8c2030;
}

.dm-field input[aria-invalid="true"],
.dm-field textarea[aria-invalid="true"],
.dm-field select[aria-invalid="true"],
.sdp-hero-form input[aria-invalid="true"],
.sdp-hero-form textarea[aria-invalid="true"],
.sdp-hero-form select[aria-invalid="true"] {
    border-color: #b61d33;
}

.dm-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.dm-reveal.dm-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes dmCardEnter {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 992px) {
    .dm-grid {
        grid-template-columns: 1fr;
    }

    .dm-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .lead-popup {
        align-items: flex-start;
        padding: 10px 10px 84px;
    }

    .lead-popup__dialog {
        width: 100%;
        max-height: calc(100svh - 94px);
        margin-top: 8px;
        padding: 18px 16px 16px;
        border-radius: 16px;
        box-shadow: 0 18px 44px rgba(10, 31, 56, .22);
    }

    .lead-popup__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .lead-popup__intro {
        margin-bottom: 12px;
        padding-right: 52px;
    }

    .lead-popup__eyebrow {
        margin-bottom: 6px;
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .lead-popup__intro h2 {
        margin-bottom: 8px;
        font-size: clamp(19px, 7.2vw, 31px);
        line-height: 1.18;
    }

    .lead-popup__intro p {
        font-size: 13px;
        line-height: 1.6;
    }

    .message-success-popup {
        padding: 16px;
    }

    .message-success-popup__dialog {
        width: 100%;
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .message-success-popup__dialog h2 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .dm-section {
        padding: 66px 0;
    }

    .dm-card {
        padding: 14px 12px 12px;
        border-radius: 14px;
    }

    .dm-form {
        gap: 8px;
    }

    .dm-two-col {
        grid-template-columns: 1fr;
    }

    .dm-field {
        gap: 5px;
    }

    .dm-field label {
        font-size: 12px;
    }

    .dm-field input,
    .dm-field textarea,
    .dm-field select {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .dm-field textarea {
        min-height: 96px;
    }

    .dm-submit-row {
        grid-template-columns: 1fr 48px;
    }

    .dm-submit {
        min-height: 44px;
        font-size: 16px;
        border-radius: 12px;
    }

    .dm-whatsapp {
        font-size: 21px;
        border-radius: 12px;
    }
}

@media (max-width: 420px) {
    .lead-popup {
        padding: 8px 8px 82px;
    }

    .lead-popup__dialog {
        max-height: calc(100svh - 90px);
        padding: 16px 12px 14px;
        border-radius: 14px;
    }

    .lead-popup__intro {
        padding-right: 46px;
    }

    .lead-popup__intro h2 {
        font-size: clamp(18px, 7vw, 24px);
    }

    .lead-popup__intro p {
        font-size: 12px;
    }

    .message-success-popup__dialog {
        padding: 22px 16px 18px;
        border-radius: 16px;
    }

    .message-success-popup__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .message-success-popup__icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .dm-card {
        padding: 12px 10px 10px;
    }

    .dm-field input,
    .dm-field textarea,
    .dm-field select {
        padding: 9px 11px;
        font-size: 12px;
    }

    .dm-submit {
        font-size: 15px;
    }
}

/* ===== SATISFACTION GUARANTEE POLICY PAGE ===== */
.sgp-page {
    background: #f5f8fc;
}

.sgp-hero {
    padding: 72px 0 44px;
    background: linear-gradient(145deg, #eaf1fb 0%, #f7fbff 60%, #eef5fd 100%);
    border-bottom: 1px solid #d7e3f1;
}

.sgp-eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 12px;
    font-weight: 700;
    color: #0a4ea3;
}

.sgp-hero h1 {
    margin: 0 0 12px;
    color: #0d3153;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
}

.sgp-intro {
    margin: 0;
    max-width: 860px;
    color: #35526b;
    font-size: 16px;
    line-height: 1.8;
}

.sgp-section {
    padding: 46px 0;
}

.sgp-alt {
    background: #edf3fb;
    border-top: 1px solid #d8e4f1;
    border-bottom: 1px solid #d8e4f1;
}

.sgp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sgp-stack {
    display: grid;
    gap: 16px;
}

.sgp-card {
    background: #fff;
    border: 1px solid #d6e1ee;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(10, 39, 67, 0.06);
}

.sgp-card h2 {
    margin: 0 0 10px;
    color: #0f3a66;
    font-size: 25px;
}

.sgp-card p {
    margin: 0 0 10px;
    color: #3b5972;
    font-size: 15px;
    line-height: 1.75;
}

.sgp-card ul {
    margin: 0;
    padding-left: 20px;
    color: #3b5972;
}

.sgp-card li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.sgp-card a {
    color: #0a4ea3;
    text-decoration: none;
}

.sgp-card a:hover {
    text-decoration: underline;
}

.sgp-cta {
    background: #0f3a66;
    border: 1px solid #0f3a66;
    border-radius: 14px;
    padding: 24px;
}

.sgp-cta h2 {
    margin: 0 0 8px;
    color: #fff;
}

.sgp-cta p {
    margin: 0 0 14px;
    color: #d6e3f3;
}

.sgp-cta a {
    color: #ffd27f;
}

.sgp-cta a:hover {
    color: #ffffff;
}

.sgp-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sgp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ea8f13;
    background: #ea8f13;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.sgp-btn:hover {
    background: #d9820f;
    border-color: #d9820f;
}

.sgp-btn-outline {
    background: transparent;
    border-color: #88a8c8;
    color: #e5f0ff;
}

.sgp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #a5c1dd;
}

@media (max-width: 900px) {
    .sgp-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT MESSAGE BOX ===== */
.contact-message-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 16px;
}

.contact-info-box p {
    margin-bottom: 12px;
}

.contact-form-box .dm-form {
    margin-top: 8px;
}

.contact-form-box .dm-submit {
    min-height: 46px;
    font-size: 16px;
    padding: 10px 16px !important;
    border-radius: 10px !important;
}

.contact-form-box .dm-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 992px) {
    .contact-message-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contact-form-box .dm-two-col {
        grid-template-columns: 1fr;
    }
}
