﻿
/* ================= PALETTE & GLOBAL RESETS ================= */
:root {
    --stox-navy: #071c4d;
    --stox-navy-dark: #071b42;
    --stox-green: #10b981;
    --stox-green-hover: #059669;
    --stox-text-dark: #0f172a;
    --stox-text-muted: #64748b;
    --stox-bg-light: #f8fafc;
    --stox-card-border: #e2e8f0;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--stox-text-dark);
    background-color: #ffffff;
}

.form-control:focus, .form-select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
    border-color: var(--stox-green) !important;
}

/* Keyframe Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: floatAnimation 4.5s ease-in-out infinite;
}

/* Common Badges & Headings */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--stox-green-hover);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--stox-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

    .section-title span {
        color: var(--stox-green);
    }

.section-subtitle {
    font-size: 15px;
    color: var(--stox-text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* ================= 1. HERO LEAD SECTION ================= */
.hero-lead-section {
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.18), transparent 45%), linear-gradient(135deg, #0b2b68 0%, var(--stox-navy-dark) 100%);
    padding: 45px 0 55px;
    position: relative;
    overflow: hidden;
}

.hero-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #34d399;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-heading {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

    .hero-heading span {
        color: #34d399;
    }

.hero-desc {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--stox-green), var(--stox-green-hover));
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    border: none;
}

    .hero-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
    }

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 26px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

    .hero-btn-outline:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: #ffffff;
        transform: translateY(-2px);
    }

.hero-lead-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.35);
}

    .hero-lead-form-card h4 {
        font-size: 22px;
        font-weight: 800;
        color: var(--stox-navy);
        margin-bottom: 6px;
    }

/* ================= 2. ABOUT US SECTION ================= */
.about-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 18px;
}

    .about-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 14.5px;
        color: var(--stox-text-dark);
        line-height: 1.6;
    }

        .about-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--stox-green);
            font-size: 17px;
        }

.image-design .img-main {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.image-design:hover .img-main {
    transform: scale(1.02);
}

.image-design .img-main img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* ================= 3. PROBLEM SOLVING SECTION ================= */
.cartoon-feature-section {
    background: var(--stox-bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--stox-card-border);
    border-bottom: 1px solid var(--stox-card-border);
}

.cartoon-circle-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-interactive {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--stox-card-border);
    padding: 24px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .feature-card-interactive:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(11, 43, 104, 0.08);
        border-color: rgba(16, 185, 129, 0.4);
    }

.feature-icon-pill {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.feature-card-interactive:hover .feature-icon-pill {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-green {
    background: #d1fae5;
    color: #059669;
}

.icon-red {
    background: #fee2e2;
    color: #dc2626;
}

.icon-orange {
    background: #ffedd5;
    color: #d97706;
}

.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feature-card-interactive h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--stox-navy);
    margin-bottom: 8px;
}

.feature-card-interactive p {
    font-size: 13.5px;
    color: var(--stox-text-muted);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ================= 4. WHAT MAKES US DIFFERENT ================= */
.why-different-section {
    background: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid var(--stox-card-border);
}

/* ================= 5. SCREENSHOT STYLE SERVICES SECTION ================= */
.pro-service-strip {
    padding: 25px 0;
    border-bottom: 1px solid var(--stox-card-border);
}

   /* .pro-service-strip:nth-child(even) {
        background: var(--stox-bg-light);
    }*/

.pro-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f9f3;
    color: #0b9663;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(11, 150, 99, 0.2);
}

.pro-service-title {
    font-size: 32px;
    font-weight: 900;
    color: #071c4d;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.pro-service-lead {
    font-size: 15px;
    color: #556987;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 580px;
}

.pro-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .pro-check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 14.5px;
        color: #223354;
        font-weight: 500;
        line-height: 1.5;
    }

        .pro-check-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 1px;
            color: #10b981;
            font-size: 17px;
        }

.btn-pro-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #071c4d;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(7, 28, 77, 0.2);
    cursor: pointer;
}

    .btn-pro-book:hover {
        background: #10b981;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
    }

.pro-illustration-wrapper {
    /*      background: #ffffff;
        border-radius: 20px;
        border: 1px solid var(--stox-card-border);
        box-shadow: 0 12px 30px rgba(11, 43, 104, 0.05);*/
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

    .pro-illustration-wrapper::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .pro-illustration-wrapper img {
        width: 100%;
        height: 300px;
        /*  object-fit: contain;*/
        position: relative;
        z-index: 1;
        transition: transform 0.35s ease;
    }

    .pro-illustration-wrapper:hover img {
        transform: scale(1.05);
    }

/* ================= 6. SUPPORT CALLOUT ================= */
.support-callout-section {
    padding: 60px 0;
    background: #ffffff;
}

.support-dark-card {
    background: linear-gradient(135deg, #0b2b68 0%, #071b42 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 42px 34px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(11, 43, 104, 0.2);
}

    .support-dark-card h3 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .support-dark-card p {
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

.support-link {
    color: #34d399;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

    .support-link:hover {
        color: #6ee7b7;
        gap: 12px;
    }

/* ================= 7. TESTIMONIALS ================= */
.testimonial-section {
    background: var(--stox-bg-light);
    padding: 60px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--stox-card-border);
    padding: 34px 26px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(11, 43, 104, 0.04);
    text-align: center;
}

.quote-icon {
    font-size: 32px;
    color: rgba(16, 185, 129, 0.3);
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 15.5px;
    color: var(--stox-text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
}

.client-info h6 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--stox-navy);
    margin: 0;
}

.client-info small {
    font-size: 12.5px;
    color: var(--stox-green);
    font-weight: 600;
}

.testimonial-nav-btn {
    background: #ffffff;
    border: 1px solid var(--stox-card-border);
    color: var(--stox-navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .testimonial-nav-btn:hover {
        background: var(--stox-navy);
        color: #ffffff;
    }

@media (max-width: 991px) {
    .hero-heading {
        font-size: 28px;
    }

    .pro-service-title {
        font-size: 26px;
    }

    .pro-service-strip {
        padding: 45px 0;
    }
    /*  .pro-illustration-wrapper {
            margin-top: 20px;
            min-height: 220px;
        }*/
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-pro-book {
        width: 100%;
        justify-content: center;
    }
}


:root {
    --stox-navy: #0b2b68;
    --stox-navy-dark: #071b42;
    --stox-green: #10b981;
    --stox-green-hover: #059669;
    --stox-text-dark: #1e293b;
    --stox-text-muted: #64748b;
    --stox-bg-light: #f8fafc;
    --stox-border: #e2e8f0;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ================= 1. PRO HERO HEADER ================= */
.contact-hero-header {
    background: radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 45%), linear-gradient(135deg, #071630 0%, #0b2559 55%, #05142e 100%);
    padding: 65px 0 55px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.25);
    color: #ffffff;
}

.contact-hero-title {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

    .contact-hero-title span {
        color: #34d399;
    }

.contact-hero-desc {
    font-size: 15.5px;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 22px;
}

.contact-hero-btn {
    background: linear-gradient(135deg, var(--stox-green), var(--stox-green-hover));
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
}

    .contact-hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
    }

.contact-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 14px;
    font-size: 13.5px;
}

.contact-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .contact-breadcrumb .breadcrumb-item a:hover {
        color: #34d399;
    }

.contact-breadcrumb .breadcrumb-item.active {
    color: #f8fafc;
    font-weight: 700;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(203, 213, 225, 0.4);
}

.contact-hero-graphic {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    pointer-events: none;
}

/* ================= 2. SECTION TYPOGRAPHY & CARDS ================= */
.contactusform-section {
    padding: 60px 0 70px;
    background: var(--stox-bg-light);
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--stox-green-hover);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.contact-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--stox-navy);
    margin-bottom: 12px;
}

    .contact-heading h2 span {
        color: var(--stox-green);
    }

.contact-heading p {
    color: var(--stox-text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Information Cards */
.contact-info-cards {
    margin-bottom: 45px;
}

.contact-info-card {
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--stox-border);
    box-shadow: 0 4px 18px rgba(11, 43, 104, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 28px rgba(11, 43, 104, 0.08);
        border-color: rgba(16, 185, 129, 0.4);
    }

.contact-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--stox-green-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--stox-navy);
    color: #ffffff;
}

.contact-card-content h5 {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--stox-green);
}

.contact-card-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--stox-text-dark);
    line-height: 1.5;
    word-break: break-word;
}

.company-reg-details {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed var(--stox-border);
    font-size: 11.5px;
    line-height: 1.45;
    color: var(--stox-text-muted);
}

    .company-reg-details strong {
        color: var(--stox-navy);
    }

.contact-card-content a {
    color: var(--stox-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .contact-card-content a:hover {
        color: var(--stox-green);
    }

/* Map & Form Blocks */
.contact-main-row {
    align-items: stretch;
}

.contact-map-box,
.contact-form-box {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--stox-border);
    box-shadow: 0 6px 25px rgba(11, 43, 104, 0.06);
}

    .contact-map-box iframe {
        width: 100%;
        height: 100%;
        min-height: 480px;
        display: block;
        border: 0;
    }

.contact-form-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    margin-bottom: 24px;
}

    .contact-form-title h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--stox-navy);
        margin-bottom: 8px;
    }

    .contact-form-title p {
        margin: 0;
        color: var(--stox-text-muted);
        font-size: 14px;
        line-height: 1.6;
    }

.form-input-group {
    position: relative;
    margin-bottom: 18px;
}

    .form-input-group i {
        position: absolute;
        top: 18px;
        left: 18px;
        color: var(--stox-text-muted);
        font-size: 16px;
        transition: color 0.2s ease;
    }

.contactus-form .form-control {
    height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 18px 12px 48px;
    font-size: 14.5px;
    color: var(--stox-text-dark);
    background: #ffffff;
    transition: all 0.2s ease;
}

.contactus-form textarea.form-control {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.contactus-form .form-control:focus {
    border-color: var(--stox-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

    .contactus-form .form-control:focus + i {
        color: var(--stox-green);
    }

.submit-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background: #25d366;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

    .submit-btn:hover {
        background: #1ebc59;
        color: #ffffff;
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contactusform-section {
        padding: 50px 0;
    }

    .contact-form-box {
        padding: 30px;
    }

    .contact-map-box iframe {
        min-height: 380px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 26px;
    }

    .contact-hero-desc {
        font-size: 14px;
    }

    .contact-hero-graphic {
        display: none;
    }

    .contact-heading h2 {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-map-box iframe {
        min-height: 300px;
        height: 300px;
    }

    .contact-hero-btn {
        width: 100%;
        text-align: center;
    }
}


:root {
    --stox-navy: #071b42;
    --stox-navy-light: #0b2b68;
    --stox-green: #10b981;
    --stox-green-hover: #059669;
    --stox-text-dark: #0f172a;
    --stox-text-muted: #64748b;
    --stox-bg-light: #f8fafc;
    --stox-border: #e2e8f0;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--stox-text-dark);
    background-color: #ffffff;
}

/* ================= 1. PAGE HERO HEADER ================= */
.service-hero-header {
    background: radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 45%), linear-gradient(135deg, #071630 0%, #0b2559 55%, #05142e 100%);
    padding: 65px 0 55px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.25);
    color: #ffffff;
}

.service-hero-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

    .service-hero-title span {
        color: #34d399;
    }

.service-hero-desc {
    font-size: 15.5px;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 22px;
}

.service-hero-btn {
    background: linear-gradient(135deg, var(--stox-green), var(--stox-green-hover));
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
}

    .service-hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
    }

.service-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 14px;
    font-size: 13.5px;
}

.service-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
}

    .service-breadcrumb .breadcrumb-item a:hover {
        color: #34d399;
    }

.service-breadcrumb .breadcrumb-item.active {
    color: #f8fafc;
    font-weight: 700;
}

.service-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(203, 213, 225, 0.4);
}

.service-hero-graphic {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    pointer-events: none;
}

/* ================= 2. STICKY QUICK-NAV BAR ================= */
.service-quicknav {
    background: #ffffff;
    border-bottom: 1px solid var(--stox-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.quicknav-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
}

    .quicknav-pills::-webkit-scrollbar {
        display: none;
    }

.quicknav-link {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--stox-navy);
    background: var(--stox-bg-light);
    border: 1px solid var(--stox-border);
    text-decoration: none;
    transition: all 0.25s ease;
}

    .quicknav-link:hover {
        background: var(--stox-navy);
        color: #ffffff;
        border-color: var(--stox-navy);
    }

/* ================= 3. BRIEFING SECTION (IMAGE + MINIMAL TEXT) ================= */
.brief-section {
    padding: 10px 0;
    border-bottom: 1px solid var(--stox-border);
}

    .brief-section:nth-child(even) {
        /*background: var(--stox-bg-light);*/
    }

.brief-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--stox-green-hover);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.brief-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--stox-navy);
    line-height: 1.3;
    margin-bottom: 10px;
}

.brief-lead {
    font-size: 14.5px;
    color: var(--stox-text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.brief-img-wrapper {
    /* border-radius: 18px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid var(--stox-border);
        box-shadow: 0 12px 30px rgba(11, 43, 104, 0.07);*/
    text-align: center;
    padding: 24px;
}

    .brief-img-wrapper img {
        width: 100%;
        height: 350px;
        object-fit: contain;
        transition: transform 0.35s ease;
    }

    .brief-img-wrapper:hover img {
        transform: scale(1.06);
    }

.brief-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .brief-checklist li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--stox-text-dark);
        line-height: 1.55;
    }

        .brief-checklist li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--stox-green);
            font-size: 15px;
        }

.btn-brief-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--stox-navy);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 43, 104, 0.2);
}

    .btn-brief-whatsapp:hover {
        background: var(--stox-green);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
    }

/* ================= 4. BOTTOM VALUE STRIP ================= */
.services-assurance-section {
    background: #ffffff;
    padding: 50px 0;
    border-top: 1px solid var(--stox-border);
}

.assurance-box {
    text-align: center;
    padding: 15px;
}

    .assurance-box i {
        font-size: 30px;
        color: var(--stox-green);
        margin-bottom: 12px;
    }

    .assurance-box h5 {
        font-size: 16px;
        font-weight: 700;
        color: var(--stox-navy);
        margin-bottom: 6px;
    }

    .assurance-box p {
        font-size: 13px;
        color: var(--stox-text-muted);
        line-height: 1.5;
        margin: 0;
    }

/* Responsive */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 32px;
    }

    .brief-title {
        font-size: 24px;
    }

    .brief-section {
        padding: 45px 0;
    }

    .brief-img-wrapper {
        margin-top: 20px;
        padding: 16px;
    }

        .brief-img-wrapper img {
            max-height: 200px;
        }
}

@media (max-width: 576px) {
    .service-hero-title {
        font-size: 26px;
    }

    .service-hero-desc {
        font-size: 14px;
    }

    .brief-title {
        font-size: 20px;
    }

    .service-hero-graphic {
        display: none;
    }

    .btn-brief-whatsapp {
        width: 100%;
        justify-content: center;
    }
}


/* ================= THEME BASE & COLOR SCHEME ================= */
:root {
    --stox-navy: #003870;
    --stox-navy-dark: #002550;
    --stox-green: #0b9640;
    --stox-green-light: #2ecc71;
    --stox-text-dark: #1a1a2e;
    --stox-text-muted: #6b6b80;
    --stox-bg-light: #f8fafc;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

img, video, iframe {
    max-width: 100% !important;
}

/* ================= NEW DISTINCT HEADER (ROYAL NAVY GRADIENT) ================= */
.pro-hero-header {
    background: radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.22) 0%, transparent 45%), linear-gradient(135deg, #071630 0%, #0b2559 55%, #05142e 100%);
    padding: 70px 0 65px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.25);
}

.pro-hero-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

    .pro-hero-title span {
        color: #34d399;
    }

.pro-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 24px;
}

.btn-hero-action {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
    border: none;
}

    .btn-hero-action:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
    }

.pro-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 16px;
    font-size: 13px;
}

.pro-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .pro-breadcrumb .breadcrumb-item a:hover {
        color: #34d399;
    }

.pro-breadcrumb .breadcrumb-item.active {
    color: #f8fafc;
    font-weight: 700;
}

.pro-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(203, 213, 225, 0.4);
}

.pro-hero-graphic {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    pointer-events: none;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: #ffffff;
    padding: 60px 0;
}

.about-content-box h2 {
    color: var(--stox-navy);
}

    .about-content-box h2 span {
        color: var(--stox-green);
    }

.image-design .img-main {
    border-radius: 20px;
    overflow: hidden;
   /* box-shadow: 0 16px 36px rgba(0, 56, 112, 0.12);
    background: var(--stox-bg-light);*/
}

    .image-design .img-main img {
        width: 100%;
        height: 390px;
        object-fit: cover;
    }

.image-design .img-small {
    width: 44%;
    transform: translate(-8%, -8%);
    border-radius: 14px;
    border: 4px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ================= VISION & MISSION ================= */
.vm-section {
    background: var(--stox-bg-light);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.vm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.25;
}

.vm-blob-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #003366, #1254a1);
    top: -80px;
    right: -80px;
}

.vm-blob-2 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #0b9640, #2ecc71);
    bottom: -60px;
    left: -60px;
}

.vm-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.vm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11, 150, 64, 0.1);
    color: var(--stox-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(11, 150, 64, 0.2);
}

.vm-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--stox-navy);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

    .vm-title span {
        color: var(--stox-green);
    }

.vm-subtitle {
    font-size: 15px;
    color: var(--stox-text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.vm-row {
    position: relative;
    z-index: 1;
    margin-bottom: 45px;
}

    .vm-row:last-child {
        margin-bottom: 0;
    }

.vm-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 56, 112, 0.12);
    background: #ffffff;
}

    .vm-image-box img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .vm-image-box:hover img {
        transform: scale(1.04);
    }

.vm-text-box {
    position: relative;
    padding: 15px;
}

.vm-number {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 68px;
    font-weight: 800;
    color: rgba(0, 56, 112, 0.05);
    line-height: 1;
    z-index: 0;
}

.vm-text-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--stox-navy);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.vm-text-box p {
    font-size: 15px;
    color: var(--stox-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.vm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

    .vm-tags span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #ffffff;
        border: 1px solid #eaeaf2;
        color: var(--stox-navy);
        font-size: 12px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 30px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    }

        .vm-tags span i {
            color: var(--stox-green);
        }

/* ================= BUSINESS INFO SECTION ================= */
.business-info-section {
    background: #ffffff;
    padding: 60px 0;
}

.business-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(11, 150, 64, 0.1);
    color: var(--stox-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    border: 1px solid rgba(11, 150, 64, 0.2);
}

.business-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--stox-navy);
    margin-bottom: 14px;
}

    .business-title span,
    .business-info-section h3 span {
        color: var(--stox-green);
    }

.business-subtitle {
    max-width: 680px;
    margin: auto;
    color: var(--stox-text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.business-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 56, 112, 0.1);
}

    .business-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

.business-label {
    color: var(--stox-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-info-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--stox-navy);
    margin: 10px 0 18px;
}

.business-info-section p {
    color: var(--stox-text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.business-card {
    height: 100%;
    background: #ffffff;
    padding: 26px 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .business-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 56, 112, 0.08);
        border-color: rgba(11, 150, 64, 0.4);
    }

.business-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(11, 150, 64, 0.1);
    color: var(--stox-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    background: var(--stox-navy);
    color: #ffffff;
}

.business-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--stox-navy);
    margin-bottom: 8px;
}

.business-card p {
    font-size: 13.5px;
    color: var(--stox-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.business-feature {
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--stox-bg-light);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    align-items: flex-start;
}

    .business-feature > i {
        font-size: 24px;
        color: var(--stox-green);
        margin-top: 3px;
        flex-shrink: 0;
    }

    .business-feature h5 {
        font-size: 17px;
        font-weight: 700;
        color: var(--stox-navy);
        margin-bottom: 6px;
    }

    .business-feature p {
        margin: 0;
        font-size: 13.5px;
        color: var(--stox-text-muted);
        line-height: 1.6;
    }

.business-cta {
    background: linear-gradient(135deg, var(--stox-navy-dark) 0%, var(--stox-navy) 100%);
    border-radius: 18px;
    padding: 40px 35px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 16px 36px rgba(0, 56, 112, 0.18);
}

    .business-cta h3 {
        color: #ffffff !important;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 8px !important;
    }

    .business-cta p {
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.65;
        margin: 0;
    }

.business-cta-btn {
    white-space: nowrap;
    background: var(--stox-green);
    color: #ffffff !important;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(11, 150, 64, 0.4);
}

    .business-cta-btn:hover {
        background: var(--stox-green-light);
        transform: translateY(-2px);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .pro-hero-title {
        font-size: 34px;
    }

    .pro-hero-graphic {
        opacity: 0.18;
        right: -60px;
    }

    .business-title, .vm-title {
        font-size: 28px;
    }

    .business-info-section h3, .vm-text-box h3 {
        font-size: 24px;
    }

    .business-image img, .vm-image-box img {
        height: 300px;
    }

    .image-design .img-main img {
        height: 300px;
    }

    .business-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .business-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pro-hero-header {
        padding: 45px 0 40px;
    }

    .pro-hero-title {
        font-size: 28px;
    }

    .pro-hero-desc {
        font-size: 14px;
    }

    .pro-hero-graphic {
        display: none;
    }

    .btn-hero-action {
        width: 100%;
        text-align: center;
    }

    .business-title, .vm-title {
        font-size: 22px;
    }

    .business-subtitle, .vm-subtitle {
        font-size: 14px;
    }

    .image-design .img-small {
        display: none;
    }

    .image-design .img-main img {
        height: 230px;
    }

    .vm-image-box img, .business-image img {
        height: 230px;
    }

    .vm-blob {
        display: none;
    }

    .about-section, .vm-section, .business-info-section {
        padding: 45px 0;
    }

    .business-cta h3 {
        font-size: 20px;
    }
}




:root {
    --stox-navy: #071c4d;
    --stox-navy-light: #0b2b68;
    --stox-green: #10b981;
    --stox-green-hover: #059669;
    --stox-text-dark: #0f172a;
    --stox-text-muted: #556987;
    --stox-bg-light: #f8fafc;
    --stox-border: #e2e8f0;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--stox-text-dark);
    background-color: #ffffff;
}

/* ================= 1. PRO HERO HEADER (ROYAL NAVY & EMERALD GLOW) ================= */
.portfolio-hero-header {
    background: radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 45%), linear-gradient(135deg, #071630 0%, #0b2559 55%, #05142e 100%);
    padding: 65px 0 55px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.25);
    color: #ffffff;
}

.portfolio-hero-title {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

    .portfolio-hero-title span {
        color: #34d399;
    }

.portfolio-hero-desc {
    font-size: 15.5px;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 22px;
}

.btn-hero-action {
    background: linear-gradient(135deg, var(--stox-green), var(--stox-green-hover));
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
    border: none;
}

    .btn-hero-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
    }

.portfolio-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 14px;
    font-size: 13.5px;
}

.portfolio-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .portfolio-breadcrumb .breadcrumb-item a:hover {
        color: #34d399;
    }

.portfolio-breadcrumb .breadcrumb-item.active {
    color: #f8fafc;
    font-weight: 700;
}

.portfolio-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(203, 213, 225, 0.4);
}

.portfolio-hero-graphic {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    pointer-events: none;
}

/* ================= 2. SPLIT SECTION (SIDEBAR + DETAILED STRIPS) ================= */
.portfolio-split-section {
    padding: 70px 0 90px;
    background: #ffffff;
}

/* Left Sidebar Filter */
.portfolio-sidebar-box {
    position: sticky;
    top: 100px;
}

.portfolio-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .portfolio-sidebar-menu li {
        margin-bottom: 30px;
    }

.portfolio-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    display: block;
    transition: all 0.25s ease;
    position: relative;
}

    .portfolio-nav-link:hover {
        color: var(--stox-navy);
        padding-left: 6px;
    }

    .portfolio-nav-link.active {
        color: var(--stox-navy);
        font-weight: 800;
        font-size: 20px;
    }

        .portfolio-nav-link.active::before {
            content: "";
            position: absolute;
            left: -14px;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 20px;
            background: var(--stox-green);
            border-radius: 4px;
        }

/* Right Showcase Cards */
.pro-service-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--stox-border);
    padding: 28px 32px;
    margin-bottom: 35px;
    box-shadow: 0 8px 24px rgba(11, 43, 104, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pro-service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(11, 43, 104, 0.08);
        border-color: rgba(16, 185, 129, 0.35);
    }

    .pro-service-card:last-child {
        margin-bottom: 0;
    }

/* Pill Badge */
.pro-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f9f3;
    color: #0b9663;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(11, 150, 99, 0.2);
}

/* Title & Lead */
.pro-service-title {
    font-size: 26px;
    font-weight: 700;
    color: #071c4d;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.pro-service-lead {
    font-size: 14.5px;
    color: #556987;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Green Checkmark Bullets */
.pro-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .pro-check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #223354;
        font-weight: 500;
        line-height: 1.5;
    }

        .pro-check-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 1px;
            color: #10b981;
            font-size: 16px;
        }

/* Dark Pill Action Button */
.btn-pro-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #071c4d;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(7, 28, 77, 0.2);
    cursor: pointer;
}

    .btn-pro-book:hover {
        background: #10b981;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
    }

/* Illustration Box */
.pro-illustration-wrapper {
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

    .pro-illustration-wrapper::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .pro-illustration-wrapper img {
        max-width: 100%;
        height: 320px;
        position: relative;
        z-index: 1;
        transition: transform 0.35s ease;
    }

.pro-service-card:hover .pro-illustration-wrapper img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .portfolio-hero-title {
        font-size: 32px;
    }

    .portfolio-hero-graphic {
        opacity: 0.18;
        right: -60px;
    }

    .portfolio-sidebar-box {
        position: static;
        margin-bottom: 30px;
    }

    .portfolio-sidebar-menu {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
    }

        .portfolio-sidebar-menu li {
            margin-bottom: 0;
        }

    .portfolio-nav-link.active::before {
        display: none;
    }

    .portfolio-nav-link.active {
        color: var(--stox-green);
        font-size: 17px;
    }

    .pro-service-card {
        padding: 24px 20px;
    }

    .pro-illustration-wrapper img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .portfolio-hero-title {
        font-size: 26px;
    }

    .portfolio-hero-desc {
        font-size: 14px;
    }

    .portfolio-hero-graphic {
        display: none;
    }

    .btn-hero-action {
        width: 100%;
        text-align: center;
    }

    .pro-service-title {
        font-size: 22px;
    }

    .btn-pro-book {
        width: 100%;
        justify-content: center;
    }
}



:root {
    --primary-navy: #0c1e3d;
    --primary-blue: #16428c;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Header & Navigation Styling */
.header {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(12, 30, 61, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-nav {
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

    .main-nav li a {
        font-size: 15px;
        font-weight: 600;
        color: var(--primary-navy);
        padding: 10px 18px;
        border-radius: 6px;
        transition: all 0.25s ease-in-out;
        text-decoration: none;
        position: relative;
    }

        .main-nav li a:hover {
            color: var(--accent-green);
            background-color: rgba(16, 185, 129, 0.08);
        }

        /* Dynamic Active State */
        .main-nav li.active a,
        .main-nav li a.active {
            color: var(--primary-navy) !important;
            font-weight: 700;
            background: #f1f5f9;
        }

            .main-nav li.active a::after,
            .main-nav li a.active::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 18px;
                right: 18px;
                height: 3px;
                background: var(--accent-green);
                border-radius: 2px;
            }

.header-cta-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .header-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
        color: #ffffff;
    }

/* Mobile Toggle Button */
.mobile-toggle-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 6px;
    cursor: pointer;
}

.bar-icon {
    display: inline-block;
    width: 25px;
}

    .bar-icon span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary-navy);
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* Mobile Drawer (< 992px) */
@media (max-width: 991.98px) {
    .main-menu-wrapper {
        position: fixed;
        top: 0;
        left: -290px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 1050;
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        padding: 20px;
    }

    .menu-opened .main-menu-wrapper {
        transform: translateX(290px);
    }

    .menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 15px;
    }

    .menu-close {
        font-size: 20px;
        color: var(--primary-navy);
        text-decoration: none;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 6px;
    }

        .main-nav li {
            width: 100%;
        }

            .main-nav li a {
                display: block;
                width: 100%;
                padding: 12px 14px;
                border-radius: 8px;
            }

            .main-nav li.active a::after {
                display: none;
            }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(12, 30, 61, 0.55);
        z-index: 1040;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-opened .sidebar-overlay {
        /*  display: block;*/
        opacity: 1;
    }
}

/* Footer Styling */
.footer {
    background-color: var(--primary-navy);
    color: #e2e8f0;
    padding-top: 60px;
}

.footer-logo img {
    max-height: 65px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-content p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--accent-green);
        border-radius: 2px;
    }

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-menu ul li {
        margin-bottom: 12px;
    }

        .footer-menu ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.2s;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }

            .footer-menu ul li a:hover {
                color: var(--accent-green);
                transform: translateX(4px);
            }

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

    .footer-address i {
        color: var(--accent-green);
        font-size: 18px;
        margin-top: 4px;
    }

    .footer-address p {
        margin: 0;
        font-size: 14px;
        color: #cbd5e1;
    }

        .footer-address p span {
            font-weight: 700;
            color: #ffffff;
            display: block;
        }

    .footer-address a {
        color: #cbd5e1;
        text-decoration: none;
    }

        .footer-address a:hover {
            color: var(--accent-green);
        }

.footer-bottom {
    background-color: #061124;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 45px;
    font-size: 14px;
    color: #94a3b8;
}

    .footer-bottom a {
        color: var(--accent-green);
        text-decoration: none;
    }

/* Floating Contact Actions */
.contact-widget {
    position: fixed;
    right: 24px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
}

    .contact-btn.call-btn {
        background-color: var(--primary-blue);
    }

    .contact-btn.whatsapp-btn {
        background-color: #25D366;
    }

    .contact-btn:hover {
        transform: scale(1.12);
        color: #ffffff;
    }



/* Fullscreen Backdrop */
.loader-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Container */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Logo & Glow */
.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    max-width: 280px;
    width: 80vw;
    height: auto;
    object-fit: contain;
    animation: stoxPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 77, 168, 0.15));
}

.glow-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 175, 35, 0.18) 0%, rgba(2, 75, 168, 0.08) 45%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite alternate;
    z-index: -1;
}

/* Linear Progress Bar (Matching Green & Blue Theme) */
.loader-bar {
    width: 180px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #0b4594, #27ae60);
    border-radius: 999px;
    position: absolute;
    animation: barSlide 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* Animations */
@keyframes stoxPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes barSlide {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}

/* Class to hide loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* ================= STOX CLAIM BRAND MODAL ================= */
.stox-modal-container {
    z-index: 10555 !important;
}

.modal-backdrop {
    z-index: 10550 !important;
}

.stox-modal-container .modal-dialog {
    margin-top: 95px;
    margin-bottom: 35px;
    max-width: 860px;
}

.stox-modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(11, 59, 112, 0.3);
    background: #ffffff;
    overflow: hidden;
    border-top: 4px solid #00a859; /* Stox Vibrant Green Top Border */
}

/* Brand Header */
.stox-modal-header {
    background: linear-gradient(135deg, #072549 0%, #0b3b70 60%, #0d47a1 100%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1.5px solid rgba(0, 168, 89, 0.4);
}

.stox-modal-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .stox-modal-title i {
        color: #00a859; /* Stox Green Icon */
    }

.stox-modal-subtitle {
    color: #94a3b8;
    font-size: 12px;
    margin: 3px 0 0 0;
    letter-spacing: 0.2px;
}

/* Stox Brand Close Button */
.stox-btn-close {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .stox-btn-close:hover {
        background: #dc2626;
        border-color: #dc2626;
        transform: rotate(90deg);
    }

/* Form Fields */
.stox-modal-body {
    padding: 24px 28px;
    background: #f8fafc;
}

.stox-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #072549;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .stox-label i {
        color: #00a859;
    }

    .stox-label span {
        color: #e11d48;
    }

.stox-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13.5px;
    color: #0f172a;
    width: 100%;
    transition: all 0.2s ease;
}

    .stox-input:focus {
        background: #ffffff;
        border-color: #00a859;
        box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
        outline: none;
    }

/* Footer Buttons */
.stox-modal-footer {
    padding: 14px 28px 18px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-stox-cancel {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: 6px;
    transition: 0.2s;
}

    .btn-stox-cancel:hover {
        background: #e2e8f0;
        color: #0f172a;
    }

.btn-stox-save {
    background: linear-gradient(135deg, #00a859 0%, #008746 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.25);
    transition: all 0.2s ease;
}

    .btn-stox-save:hover {
        background: linear-gradient(135deg, #00b862 0%, #009950 100%);
        box-shadow: 0 6px 16px rgba(0, 168, 89, 0.35);
        color: #ffffff;
        transform: translateY(-1px);
    }
.stox-modal-container {
    z-index: 10555 !important; /* Navbar ke upar priority */
}

.modal-backdrop {
    z-index: 10550 !important;
    background-color: rgba(7, 37, 73, 0.65) !important; /* Premium Blue-Black Dimming */
    backdrop-filter: blur(4px);
}

.stox-modal-container .modal-dialog {
    margin-top: 90px;
    margin-bottom: 30px;
    max-width: 860px;
}

/* =======================================================
       2. MODAL CARD CONTAINER & HEADER
    ======================================================= */
.stox-modal-content {
    border: none;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(11, 59, 112, 0.35);
    background: #ffffff;
    overflow: hidden;
    border-top: 4px solid #00a859; /* Brand Accent Top Line */
}

.stox-modal-header {
    background: linear-gradient(135deg, #072549 0%, #0b3b70 60%, #0d47a1 100%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(0, 168, 89, 0.35);
}

.stox-modal-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .stox-modal-title i {
        color: #00a859;
    }

.stox-modal-subtitle {
    color: #94a3b8;
    font-size: 12px;
    margin: 3px 0 0 0;
}

/* Modal Top Close Button */
.stox-btn-close {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .stox-btn-close:hover {
        background: #dc2626;
        border-color: #dc2626;
        transform: rotate(90deg);
    }

/* =======================================================
       3. MODAL BODY & FORM CONTROLS
    ======================================================= */
.stox-modal-body {
    padding: 24px 28px;
    background: #f8fafc;
}

.stox-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #072549;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .stox-label i {
        color: #00a859;
    }

    .stox-label span {
        color: #e11d48;
    }

.stox-input {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13.5px;
    color: #0f172a;
    width: 100%;
    transition: all 0.2s ease;
}

    .stox-input:focus {
        background: #ffffff;
        border-color: #00a859;
        box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
        outline: none;
    }

    /* File Input Specific */
    .stox-input[type="file"] {
        padding: 6px 10px;
    }

/* =======================================================
       4. MODAL FOOTER BUTTONS
    ======================================================= */
.stox-modal-footer {
    padding: 14px 28px 18px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-stox-cancel {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: 6px;
    transition: 0.2s;
}

    .btn-stox-cancel:hover {
        background: #e2e8f0;
        color: #0f172a;
    }

.btn-stox-save {
    background: linear-gradient(135deg, #00a859 0%, #008746 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.25);
    transition: all 0.2s ease;
}

    .btn-stox-save:hover {
        background: linear-gradient(135deg, #00b862 0%, #009950 100%);
        box-shadow: 0 6px 16px rgba(0, 168, 89, 0.35);
        color: #ffffff;
        transform: translateY(-1px);
    }

/* =======================================================
       5. SWEETALERT2 BRAND THEMING (SCREENSHOT FIX)
    ======================================================= */
.swal2-container {
    z-index: 999999 !important; /* Navbar aur modal sabhi ke upar center me aayega */
}

.stox-swal-popup {
    border-radius: 16px !important;
    padding: 28px 24px !important;
    border: 1px solid rgba(0, 168, 89, 0.25) !important;
    box-shadow: 0 25px 50px -12px rgba(11, 59, 112, 0.35) !important;
    background: #ffffff !important;
}

.stox-swal-title {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #072549 !important;
    margin-top: 10px !important;
    margin-bottom: 6px !important;
}

.stox-ref-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 8px;
}

.stox-swal-btn {
    background: linear-gradient(135deg, #00a859 0%, #008746 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 10px 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3) !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

    .stox-swal-btn:hover {
        background: linear-gradient(135deg, #00b862 0%, #009950 100%) !important;
        transform: translateY(-1px) !important;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .stox-modal-container .modal-dialog {
        margin-top: 75px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .stox-modal-body {
        padding: 18px 16px;
    }
}

.instant-enquiry-modal {
    z-index: 10555 !important;
}

    .instant-enquiry-modal .modal-dialog {
        max-width: 520px;
        margin-top: 85px;
    }

.instant-enquiry-content {
    border: none;
    border-radius: 14px;
    box-shadow: 0 25px 50px -12px rgba(11, 59, 112, 0.35);
    overflow: hidden;
    border-top: 4px solid #00a859;
}

.instant-enquiry-header {
    background: linear-gradient(135deg, #072549 0%, #0b3b70 100%);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(0, 168, 89, 0.3);
}

.instant-enquiry-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .instant-enquiry-title i {
        color: #00a859;
    }

.instant-enquiry-subtitle {
    color: #94a3b8;
    font-size: 12px;
    margin: 2px 0 0 0;
}

.instant-btn-close {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .instant-btn-close:hover {
        background: #dc2626;
        border-color: #dc2626;
        transform: rotate(90deg);
    }

.instant-enquiry-body {
    padding: 22px 24px;
    background: #ffffff;
}

.instant-form-label {
    font-size: 12px;
    font-weight: 700;
    color: #072549;
    margin-bottom: 4px;
    display: block;
}

.instant-form-control {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13.5px;
    color: #0f172a;
    transition: all 0.2s;
}

    .instant-form-control:focus {
        border-color: #00a859;
        box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
        outline: none;
    }

.btn-instant-submit {
    background: linear-gradient(135deg, #00a859 0%, #008746 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.25);
    transition: all 0.25s;
}

    .btn-instant-submit:hover {
        background: linear-gradient(135deg, #00b862 0%, #009950 100%);
        box-shadow: 0 6px 16px rgba(0, 168, 89, 0.35);
        transform: translateY(-1px);
    }