﻿/* ═══════════════════════════════════════════
   FindMe Services — Design System & Styles
   Multi-Page Version
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


:root {
    --primary: #1A3C6E;
    --primary-light: #2563EB;
    --accent: #b51b3b;
    --accent-dark: #D97706;
    --success: #059669;
    --danger: #DC2626;
    --surface: #F8FAFC;
    --surface-dark: #0F172A;
    --text-primary: #1E293B;
    --text-muted: #64748B;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --gradient-hero: linear-gradient(135deg, #1A3C6E 0%, #2563EB 50%, #1A3C6E 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif !important;
    color: var(--text-primary);
    background: var(--surface);
    margin: 0;
    overflow-x: hidden;
    padding-top: 72px;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif !important;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3, h4, h5 {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.hindi {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* ─── Page Fade In ─── */
.page-content {
    animation: fadeInUp 0.4s ease;
}

.form-control {
    font-size: 0.9rem !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Navbar ─── */
.navbar-fm {
    background: #fff;
    box-shadow: 0 2px 16px rgba(26,60,110,0.08);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

    .navbar-fm.scrolled {
        box-shadow: 0 4px 24px rgba(26,60,110,0.15);
    }

    .navbar-fm .navbar-brand {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 800;
        font-size: 1.4rem;
    }

    .navbar-fm .brand-find {
        color: var(--primary);
    }

    .navbar-fm .brand-me {
        color: var(--accent);
    }

.nav-link-fm {
    color: var(--text-primary) !important;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 8px 12px !important;
}

    .nav-link-fm:hover, .nav-link-fm.active {
        color: var(--primary-light) !important;
    }

.btn-find-expert {
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff !important;
    border: none;
    border-radius: 24px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-find-expert:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
    }

.btn-join-pro {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    border-radius: 10px;
    padding: 6px 18px;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-join-pro:hover {
        transform: translateY(-1px);
        box-shadow: 0 1px 6px rgb(2 76 140);
    }

/* ─── DROPDOWN CSS  ─── */
.dropdown-menu-fm {
    min-width: 220px;
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

    .dropdown-menu-fm .dropdown-item {
        padding: 7px 15px;
        font-weight: 400;
        font-size: 0.9rem !important;
    }

        .dropdown-menu-fm .dropdown-item:hover {
            background: #f5f7fb;
            color: var(--primary);
        }

.dropdown-icon {
    font-size: small;
    font-weight: 800;
    text-shadow: 0px 0px 1px black;
}
/* ─── Hero ─── */
.hero-section {
    /*background: var(--gradient-hero);*/
    /*background-image: url();*/
    background-image: url('../image/hero-bg.png');
    background-size: cover;
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    margin-top: -72px;
   
}

  /*  .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px);
    }*/

   /* .hero-section h1 {
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 1.2;
        color: #1a3c6e;
    }*/

    .hero-section .lead {
        font-size: 1.1rem;
        opacity: 0.9;
        color: #1a3c6e;
    }

.hero-search {
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 30px auto 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

    .hero-search input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 1rem;
        padding: 10px 0;
        background: transparent;
        color: var(--text-primary);
    }

    .hero-search button {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 10px 24px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s;
    }

    .hero-search input:focus {
        box-shadow: none;
    }

/* ─── Trust Stats ─── */
.trust-stats {
   /* margin-top: -30px;
    position: relative;*/
    /*z-index: 2;*/
}

.trust-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 16px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    text-align: center;
    transition: all 0.3s ease;
}

    .trust-stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(26,60,110,0.15);
    }

    .trust-stat-card .icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .trust-stat-card .number {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--primary);
    }

    .trust-stat-card .label {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

/* ─── Cards ─── */
.fm-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all 0.3s ease;
}

    .fm-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.15);
    }

    .fm-card.no-hover:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    }

/* Category Cards */
.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

    .category-card:hover {
        border-color: #1557b0;
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(26,60,110,0.12);
        color: inherit;
    }

    .category-card.selected {
        border-color: var(--primary-light);
        background: #EFF6FF;
    }

    .category-card .cat-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
        display: block;
    }

    .category-card .cat-name {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-primary);
    }

    .category-card .cat-hindi {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

/* Professional Cards */
.pro-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    display: flex;
    flex-direction: column;
}

    .pro-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.18);
    }

.pro-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.badge-verified {
    background: #D1FAE5;
    color: #059669;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-consult {
    background: transparent !important;
    color: #b51b3b;
    border: 2px solid #b51b3b;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 7px 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.badge-premium {
    background: #FEF3C7;
    color: #D97706;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-annual {
    background: #DBEAFE;
    color: #2563EB;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-monthly {
    background: #F1F5F9;
    color: #64748B;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-spec {
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.stars {
    color: var(--accent);
    font-size: 0.85rem;
}

/* ─── How It Works ─── */
.how-step {
    text-align: center;
    padding: 20px;
}

    .how-step .step-num {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Montserrat", sans-serif !important;
        font-weight: 700;
        font-size: 1.3rem;
        margin: 0 auto 16px;
    }

    .how-step .step-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .how-step h5 {
        font-weight: 600;
    }

    .how-step p {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

/* ─── Testimonials ─── */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
}

.testimonial-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

    .testimonial-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .testimonial-scroll::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 3px;
    }

    .testimonial-scroll > div {
        scroll-snap-align: start;
        min-width: 300px;
        flex-shrink: 0;
    }

/* ─── Section ─── */
.section-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px !important;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 50px !important;
}

/* ─── Wizard / Consult ─── */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.wizard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}

    .wizard-dot.active {
        background: var(--primary-light);
        width: 32px;
        border-radius: 6px;
    }

    .wizard-dot.done {
        background: var(--success);
    }

.wizard-line {
    width: 40px;
    height: 2px;
    background: var(--border);
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.3s ease;
}

    .wizard-step.active {
        display: block;
    }

/* ─── Auth ─── */
.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-tabs .nav-link {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    color: var(--text-muted);
}

    .auth-tabs .nav-link.active {
        color: var(--primary);
        border-bottom: 3px solid var(--primary);
    }

/* ─── Dashboard ─── */
.dash-stat {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
    border-left: 4px solid var(--primary-light);
}

    .dash-stat .stat-val {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--primary);
    }

    .dash-stat .stat-label {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

/* Dashboard Sidebar */
.dash-sidebar {
    background: var(--surface-dark);
    color: #fff;
    min-height: calc(100vh - 72px);
    padding: 24px 16px;
    border-radius: 0;
}

    .dash-sidebar .sidebar-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        color: #CBD5E1;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.9rem;
        text-decoration: none;
        margin-bottom: 4px;
    }

        .dash-sidebar .sidebar-link:hover, .dash-sidebar .sidebar-link.active {
            background: rgba(37,99,235,0.2);
            color: #fff;
        }

.dash-content {
    padding: 24px;
}

/* ─── Pricing ─── */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.15);
    }

    .pricing-card.featured {
        border-color: var(--accent);
        transform: scale(1.03);
        box-shadow: 0 8px 40px rgba(245,158,11,0.2);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05);
        }

.price-amount {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-card .badge-popular {
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .pricing-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

        .pricing-card ul li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            margin-right: 8px;
        }

/* ─── Footer ─── */
.footer-fm {
    background: var(--surface-dark);
    color: #CBD5E1;
    padding: 48px 0 24px;
}

    .footer-fm h5 {
        color: #fff;
        font-family: "Montserrat", sans-serif !important;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-fm a {
        color: #94A3B8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

        .footer-fm a:hover {
            color: var(--accent);
        }

    .footer-fm .footer-disclaimer {
        font-size: 0.78rem;
        color: #64748B;
        border-top: 1px solid #1E293B;
        padding-top: 20px;
        margin-top: 24px;
    }

/* ─── Buttons ─── */
.btn-primary-fm {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary-fm:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
        background: linear-gradient(220deg, var(--primary-light), var(--primary));
    }

.btn-accent-fm {
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-accent-fm:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
    }

.btn-outline-fm {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    border-radius: 12px;
    padding: 8px 22px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-outline-fm:hover {
        background: var(--primary-light);
        color: #fff;
    }

/* ─── Forms ─── */
.form-control-fm {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

    .form-control-fm:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    }

.form-select-fm {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 10px 14px;
}

/* ─── Toast ─── */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.fm-toast {
    padding: 14px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 250px;
}

    .fm-toast.success {
        background: var(--success);
    }

    .fm-toast.error {
        background: var(--danger);
    }

    .fm-toast.info {
        background: var(--primary-light);
    }

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ─── FAB ─── */
.fab-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(245,158,11,0.5);
    transition: all 0.3s;
    display: none;
}

    .fab-btn:hover {
        transform: scale(1.1);
    }

/* ─── Mobile Bottom Nav ─── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 6px 0 env(safe-area-inset-bottom, 0);
    z-index: 1000;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}

    .mobile-bottom-nav a {
        flex: 1;
        text-align: center;
        padding: 6px 4px;
        cursor: pointer;
        color: var(--text-muted);
        font-size: 0.7rem;
        transition: color 0.3s;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .mobile-bottom-nav a.active {
            color: var(--primary-light);
        }

        .mobile-bottom-nav a .icon {
            font-size: 1.3rem;
            display: block;
        }

/* ─── Verified Pulse ─── */
@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.pulse {
    animation: pulse 2s ease infinite;
}

/* ─── Tables ─── */
.table-fm {
    font-size: 0.88rem;
}

    .table-fm th {
        background: #F8FAFC;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border);
        white-space: nowrap;
    }

    .table-fm td {
        vertical-align: middle;
    }

/* ─── Accordion FAQ ─── */
.accordion-fm .accordion-button {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    color: var(--text-primary);
}

    .accordion-fm .accordion-button:not(.collapsed) {
        background: #EFF6FF;
        color: var(--primary);
        box-shadow: none;
    }

    .accordion-fm .accordion-button:focus {
        box-shadow: none;
    }

/* ─── Why Choose ─── */
.feature-card {
    text-align: center;
    padding: 32px 20px;
}

    .feature-card .f-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 16px;
    }

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .dash-sidebar {
        min-height: auto;
        border-radius: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 40px;
        min-height: auto;
    }

        .hero-section h1 {
            font-size: 1.7rem;
        }

    .mobile-bottom-nav {
        display: flex;
    }

    .fab-btn {
        display: block;
    }

    body {
        padding-bottom: 64px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

        .hero-search input {
            padding: 12px;
            width: 100%;
        }

        .hero-search button {
            width: 100%;
            border-radius: 12px;
            padding: 12px;
        }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}





/*==========================================================================================================*/
/* CUSTOM CSS */

.main-logo {
    width: 10rem;
}

.footer-fm {
    background: #014d90;
    color: #d1d5db;
}

    .footer-fm h5 {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

    .footer-fm a {
        color: #d1d5db;
        text-decoration: none;
        transition: .3s;
    }

        .footer-fm a:hover {
            color: #fff;
            padding-left: 4px;
        }

    .footer-fm .small {
        line-height: 1.8;
    }

    .footer-fm hr {
        border-color: rgba(255,255,255,.1);
    }

.main-logo {
    height: 55px;
    width: auto;
}

.vision-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.err-message {
    font-size: 12px;
    color: #dc3545;
    margin-top: 0px;
    align-items: center;
    gap: 4px;
}


/* ------- LAYOUT PAGE CSS --------------*/

/*.fp-section {
    background: #F4F6FA;
}*/

/*.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}*/

/* ── Pro Card ── */
.pro-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06), 0 2px 16px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .15s, box-shadow .15s;
}

    .pro-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,.10);
    }

.pro-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.badge-premium {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-annual {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-monthly {
    background: #F5F3FF;
    color: #5B21B6;
    border: 1px solid #DDD6FE;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-verified {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-spec {
    background: #F1F5F9;
    color: #334155;
    border: 1px solid #E2E8F0;
    font-size: .76rem;
    font-weight: 500;
    border-radius: 7px;
    padding: 4px 10px;
    display: inline-block;
}

.pro-card .stars {
    color: #F59E0B;
    letter-spacing: 1px;
    font-size: .85rem;
}

.pro-card-loc {
    font-size: .85rem;
    color: #6B7280;
}

    .pro-card-loc i {
        color: #DC2626;
        margin-right: 3px;
    }

.btn-primary-fm {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 14px;
    transition: background .15s;
}

    .btn-primary-fm:hover {
        background: #1D4ED8;
        color: #fff;
    }

.btn-outline-fm {
    background: #fff;
    color: #2563EB;
    border: 1.5px solid #2563EB;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 14px;
    transition: all .15s;
}

    .btn-outline-fm:hover {
        background: #EFF6FF;
        color: #1D4ED8;
        border-color: #1D4ED8;
    }

/* ── Skeleton ── */
.fp-skel {
    display: inline-block;
    background: linear-gradient(90deg,#eef0f5 25%,#e2e5ee 50%,#eef0f5 75%);
    background-size: 200% 100%;
    animation: fpShimmer 1.4s infinite;
    border-radius: 6px;
}

@keyframes fpShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Pagination ── */
.fp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.fp-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid #D1D5DB;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .15s;
}

    .fp-page-btn:hover:not(:disabled) {
        background: #EFF6FF;
        border-color: #2563EB;
        color: #1D4ED8;
    }

    .fp-page-btn.active {
        background: #2563EB;
        border-color: #2563EB;
        color: #fff;
    }

    .fp-page-btn:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

/* ── Empty / Error ── */
.fp-empty {
    text-align: center;
    padding: 48px 20px;
    color: #6B7280;
    grid-column: 1 / -1;
}

    .fp-empty i {
        font-size: 2.4rem;
        display: block;
        margin-bottom: 10px;
        color: #D1D5DB;
    }

/* ── Mobile ── */
@media (max-width: 991.98px) {
    .fp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575.98px) {
    .fp-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .pro-card {
        padding: 16px;
    }

    .fp-pagination {
        gap: 6px;
    }

    .fp-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: .8rem;
        padding: 0 8px;
    }
}


/* ------- SERVICE PAGE CSS --------------*/
#toast-container > .toast {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    border-radius: 8px !important;
    opacity: 1 !important;
}

/* Success */
#toast-container > .toast-success {
    border-left: 4px solid #28a745 !important;
    background-image: none !important;
}

    #toast-container > .toast-success .toast-title,
    #toast-container > .toast-success .toast-message {
        color: #28a745 !important;
    }

/* Error */
#toast-container > .toast-error {
    border-left: 4px solid #dc3545 !important;
    background-image: none !important;
}

    #toast-container > .toast-error .toast-title,
    #toast-container > .toast-error .toast-message {
        color: #dc3545 !important;
    }

/* Warning */
#toast-container > .toast-warning {
    border-left: 4px solid #ffc107 !important;
    background-image: none !important;
}

    #toast-container > .toast-warning .toast-title,
    #toast-container > .toast-warning .toast-message {
        color: #e6a800 !important;
    }

/* Info */
#toast-container > .toast-info {
    border-left: 4px solid #17a2b8 !important;
    background-image: none !important;
}

    #toast-container > .toast-info .toast-title,
    #toast-container > .toast-info .toast-message {
        color: #17a2b8 !important;
    }

/* Close Button */
#toast-container > .toast .toast-close-button {
    color: #999999 !important;
    font-size: 18px !important;
}

    #toast-container > .toast .toast-close-button:hover {
        color: #333333 !important;
    }

/* Progress Bar */
#toast-container > .toast .toast-progress {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

.fe-page-content {
    background: #F4F6FA;
    min-height: 100vh;
}

/* ── Filter Sidebar (matches screenshot) ── */
.filter-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06), 0 2px 16px rgba(0,0,0,.04);
    position: sticky;
    top: 20px;
}

    .filter-sidebar h6 {
        font-size: 1rem;
        font-weight: 700;
        color: #1E293B;
    }

    .filter-sidebar .form-label {
        font-size: .8rem;
        font-weight: 700;
        color: #374151;
        margin-bottom: 6px;
    }

    .filter-sidebar .form-select,
    .filter-sidebar .form-control {
        border: 1.5px solid #D1D5DB;
        border-radius: 8px;
        font-size: .85rem;
        padding: 9px 12px;
    }

        .filter-sidebar .form-select:focus,
        .filter-sidebar .form-control:focus {
            border-color: #2563EB;
            box-shadow: 0 0 0 3px rgba(37,99,235,.10);
        }

/* ── Results count ── */
.fe-results-count {
    font-size: .95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

/* ── Pro Card grid ── */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.find-expert .fp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pro-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06), 0 2px 16px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .15s, box-shadow .15s;
}

    .pro-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,.10);
    }

.pro-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.badge-premium {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-annual {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-monthly {
    background: #F5F3FF;
    color: #5B21B6;
    border: 1px solid #DDD6FE;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-verified {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-spec {
    background: #F1F5F9;
    color: #334155;
    border: 1px solid #E2E8F0;
    font-size: .76rem;
    font-weight: 500;
    border-radius: 7px;
    padding: 4px 10px;
    display: inline-block;
}

.pro-card .stars {
    color: #F59E0B;
    letter-spacing: 1px;
    font-size: .85rem;
}

.pro-card-loc {
    font-size: .85rem;
    color: #6B7280;
}

    .pro-card-loc i {
        color: #DC2626;
        margin-right: 3px;
    }

.btn-primary-fm {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 14px;
    transition: background .15s;
}

    .btn-primary-fm:hover {
        background: #1D4ED8;
        color: #fff;
    }

.btn-outline-fm {
    background: #fff;
    color: #2563EB;
    border: 1.5px solid #2563EB;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 14px;
    transition: all .15s;
}

    .btn-outline-fm:hover {
        background: #EFF6FF;
        color: #1D4ED8;
        border-color: #1D4ED8;
    }

/* ── Skeleton ── */
.fp-skel {
    display: inline-block;
    background: linear-gradient(90deg,#eef0f5 25%,#e2e5ee 50%,#eef0f5 75%);
    background-size: 200% 100%;
    animation: fpShimmer 1.4s infinite;
    border-radius: 6px;
}

@keyframes fpShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Pagination ── */
.fp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.fp-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid #D1D5DB;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .15s;
}

    .fp-page-btn:hover:not(:disabled) {
        background: #EFF6FF;
        border-color: #2563EB;
        color: #1D4ED8;
    }

    .fp-page-btn.active {
        background: #2563EB;
        border-color: #2563EB;
        color: #fff;
    }

    .fp-page-btn:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

/* ── Empty / Error ── */
.fp-empty {
    text-align: center;
    padding: 48px 20px;
    color: #6B7280;
    grid-column: 1 / -1;
}

    .fp-empty i {
        font-size: 2.4rem;
        display: block;
        margin-bottom: 10px;
        color: #D1D5DB;
    }

/* ── Mobile ── */
/*@media (max-width: 991.98px) {
    .fp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }*/

.pro-card {
    padding: 16px;
}

.fp-pagination {
    gap: 6px;
}

.fp-page-btn {
    min-width: 34px;
    height: 34px;
    font-size: .8rem;
    padding: 0 8px;
}




/* ABOUT WEBSITE PAGE CSS */
/*
.hero {
    padding: 50px 0;
    background: linear-gradient(135deg,#0F172A,#1E40AF);
    color: #fff;
    text-align: center;
}*/

    .hero h5 {
        letter-spacing: 1px;
        color: #b21838;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .hero h1 {
        font-size: 47px;
        max-width: 900px;
        margin: auto;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .hero p {
        margin: auto;
        font-size: 16px;
        opacity: .9;
    }



/* COMPANY */

.company {
    padding: 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    background: #DBEAFE;
    padding: 8px 18px;
    border-radius: 30px;
    color: #2563EB;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.company h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.company p {
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/*==========================
 Mission & Vision
===========================*/

.mission {
    padding: 75px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 20px;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #666;
        font-size: 16px;
    }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e8eef7;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

    .box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d6efd,#00b4ff);
    }

    .box:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(13,110,253,.18);
    }

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    transition: .4s;
}

.trust-stat-card .icon {
    height: auto;
    width: auto;
}

.box:hover .icon {
    transform: rotate(12deg) scale(1.1);
}

.box h3 {
    font-size: 28px;
    color: #0d3b66;
    margin-bottom: 18px;
}

.box p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* Responsive */

@media(max-width:768px) {

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .box {
        padding: 35px 25px;
    }
}

/* VALUES */

.values {
    padding: 70px 0;
    text-align: center;
        background: #eee;
}


.value-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .card:hover {
        transform: translateY(-8px);
    }

    .card h3 {
        margin-bottom: 15px;
        color: #2563EB;
    }

/* WHY */

.why {
    padding: 100px 0;
    background: #fff;
}

    .why h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 40px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

    .why-grid div {
        background: #F3F4F6;
        padding: 30px;
        border-radius: 15px;
        font-weight: 600;
        text-align: center;
    }

/* CTA */

.cta {
    padding: 100px 20px;
    text-align: center;
    background: #0F172A;
    color: #fff;
}

    .cta h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .cta p {
        max-width: 700px;
        margin: auto;
        margin-bottom: 40px;
    }

/* Responsive */

@media(max-width:992px) {

    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .value-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 0px;
    }
    .hero .p-4 {
        padding: 1.5rem 1rem !important;
    }

    .hero h1 {
        font-size: 34px;
    }

    .company h2,
    .values h2,
    .why h2,
    .cta h2 {
        font-size: 30px;
    }
}

.section-title-1 {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.talk-expert-btn {
    background: linear-gradient( 269deg, var(--primary-light), var(--primary));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 1px 1px #2c72ea;
    text-shadow: 0px 0px 1px #000000;
    min-width: 180px;
}

.ask-question-btn {
    background: linear-gradient(135deg, #004e91, #064577);
    color: white !important;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none !important;
    /*box-shadow: 0px 0px 1px 1px white;
    text-shadow: 0px 0px 1px white;*/
    min-width: 180px;
}

.right-sidebar-sticky {
    position: sticky;
    top: 20px;
    height: fit-content;
}


    /* Optional: keep cards separated */
    .right-sidebar-sticky .fm-card {
        margin-bottom: 20px;
    }


/* Mobile responsive */
@media(max-width:991px) {

    .right-sidebar-sticky {
        position: static;
    }
}



.lawyer-hero {
    position: relative;
    padding: 40px 0px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../image/lawyer-banner.jpg');
}

/* Dark Blue Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 42, .90) 0%, rgba(10, 35, 74, .82) 45%, rgba(10, 35, 74, .45) 100%);
}

.lawyer-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.hero-feature {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

    .hero-feature i {
        color: #32d583;
        margin-right: 8px;
    }

.lawyer-hero h1 {
    font-size: 3.5rem;
}

.btn-find-expert {
    border-radius: 10px;
    padding: 7px 18px;
}

@media(max-width:991px) {
    .lawyer-hero {
        padding: 100px 0;
        min-height: auto;
        background-position: 65% center;
    }

        .lawyer-hero h1 {
            font-size: 2.5rem;
        }
}

/* OTHER SERVICES PAGE CSS */
audit-hero {
    background: linear-gradient(135deg,#0f172a,#1d4ed8) !important;
    padding: 90px 0;
    position: relative;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 15px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    animation: float 4s ease-in-out infinite;
}

.card1 {
    top: 8%;
    left: -20px;
}

.card2 {
    bottom: 18%;
    right: -20px;
}

.card3 {
    bottom: -15px;
    left: 15%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px) {
    .floating-card {
        position: static;
        margin-top: 15px;
    }

    .audit-hero {
        text-align: center;
    }
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .35s;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .service-list li {
        margin-bottom: 12px;
        color: #555;
    }

    .service-list i {
        color: #198754;
        margin-right: 8px;
    }



.contact-hero {
    background: linear-gradient(rgba(11,37,84,.88),rgba(11,37,84,.88)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600") center center/cover no-repeat !important;
    padding: 40px 0 !important;
}

    .contact-hero h1 {
        line-height: 1.2;
    }

    .contact-hero .btn {
        border-radius: 50px;
        padding: 14px 35px;
    }


/* BECOME PARTNER CSS */
.step-number {
   
    min-width: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}


.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 5px;
}



/*==========================================
OTP MODAL
==========================================*/
.otp-dialog {
    max-width: 460px;
}

.otp-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

/*==========================================
HEADER
==========================================*/
.otp-header {
    background: linear-gradient(135deg,#1E3A5F,#2563EB);
    padding: 28px;
    text-align: center;
    color: #fff;
}

.otp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.otp-header h4 {
    margin: 0;
    font-weight: 700;
}

.otp-header p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

/*==========================================
BODY
==========================================*/
.otp-body {
    padding: 30px;
}

/*==========================================
TEST OTP
==========================================*/
.otp-testing-card {
    background: #FFF8E8;
    border: 1px solid #FFD166;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-bottom: 22px;
}

.testing-title {
    font-size: 13px;
    font-weight: 600;
    color: #92400E;
}

.testing-otp {
    margin: 6px 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #B45309;
}

.otp-testing-card small {
    color: #92400E;
}

/*==========================================
INSTRUCTION
==========================================*/
.otp-info {
    margin-bottom: 22px;
    text-align: center;
    font-size: 14px;
    color: #64748B;
}

/*==========================================
OTP INPUT
==========================================*/
.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.otp-input {
    width: 52px;
    height: 58px;
    border: 2px solid #D6DCE5;
    border-radius: 12px;
    outline: none;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    transition: .25s;
}

    .otp-input:focus {
        border-color: #2563EB;
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
    }

    .otp-input.filled {
        border-color: #22C55E;
        background: #F0FDF4;
    }

/*==========================================
ERROR
==========================================*/
.otp-error {
    min-height: 20px;
    text-align: center;
    font-size: 13px;
    color: #DC2626;
}

/*==========================================
TIMER
==========================================*/
.otp-timer {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #64748B;
}

#otpTimer {
    font-weight: 700;
    color: #DC2626;
}

/*==========================================
RESEND
==========================================*/
.otp-resend {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #64748B;
}

    .otp-resend button {
        border: none;
        background: none;
        color: #2563EB;
        font-weight: 700;
        cursor: pointer;
    }

        .otp-resend button:disabled {
            color: #9CA3AF;
            cursor: not-allowed;
        }

/*==========================================
FOOTER
==========================================*/
.otp-footer {
    padding: 0 30px 30px;
}

.otp-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
}

/*==========================================
MOBILE
==========================================*/
@media (max-width:576px) {
    .otp-body {
        padding: 22px;
    }

    .otp-input {
        width: 44px;
        height: 52px;
        font-size: 22px;
    }
}

/* main container – split layout */
.auth-split {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 20, 40, 0.12);
    /*max-width: 1200px;*/
    width: 100%;
    margin: 20px;
    overflow: hidden;
    transition: all 0.2s;
}
/* left panel – brand & visuals */
.auth-visual {
    flex: 1 1 45%;
    background: linear-gradient(145deg, #0b2b5c, #1b4a8b);
    padding: 3rem 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 460px;
}

    .auth-visual .brand-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(4px);
        padding: 8px 18px 8px 14px;
        border-radius: 60px;
        width: fit-content;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

        .auth-visual .brand-badge i {
            font-size: 1.8rem;
        }

        .auth-visual .brand-badge span {
            font-weight: 600;
            letter-spacing: -0.3px;
            font-size: 1.25rem;
        }

    .auth-visual h1 {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

        .auth-visual h1 span {
            background: linear-gradient(120deg, #e52535, #c01135);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .auth-visual .lead-text {
        font-size: 1.1rem;
        opacity: 0.85;
        max-width: 360px;
        margin-bottom: 2rem;
        line-height: 1.6;
        font-weight: 400;
    }

    .auth-visual .feature-grid {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }

    .auth-visual .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        opacity: 0.9;
    }

        .auth-visual .feature-item i {
            font-size: 1.3rem;
            color: #f6d365;
            width: 28px;
        }

    .auth-visual .decor-float {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 6rem;
        opacity: 0.08;
        pointer-events: none;
    }
/* right panel – form */
.auth-form-wrapper {
    flex: 1 1 55%;
    padding: 2.5rem 2.8rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 460px;
}

    .auth-form-wrapper .section-title {
        font-weight: 700;
        font-size: 1.7rem;
        color: #0b2b5c;
        letter-spacing: -0.5px;
        margin-bottom: 0.2rem;
    }

    .auth-form-wrapper .section-subtitle {
        color: #5e6f8d;
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

.fm-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: 0 12px 40px rgba(26, 60, 110, 0.15);
}

    .fm-card h4 {
        font-weight: 600;
        color: #1a2e4a;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

.form-control-fm {
    border-radius: 16px;
    border: 1px solid #e2e9f2;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background: #f9fcff;
    transition: 0.2s;
}

    .form-control-fm:focus {
        border-color: #1b4a8b;
        box-shadow: 0 0 0 4px rgba(27, 74, 139, 0.12);
        background: #ffffff;
    }

.pwd-input-group {
    position: relative;
}

    .pwd-input-group .form-control {
        padding-right: 48px;
    }

.pwd-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: #8a9bb5;
    font-size: 1.2rem;
    padding: 4px 6px;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.2s;
}

    .pwd-toggle-btn:hover {
        color: #1b4a8b;
        background: rgba(27, 74, 139, 0.06);
    }

.btn-primary-fm {
    background: linear-gradient(135deg, rgb(0, 78, 145), rgb(6, 69, 119));
    border: none;
    border-radius: 10px;
    padding: 7px 18px;
    font-weight: 600;
    color: white;
    transition: 0.2s;
    box-shadow: 0 6px 18px rgba(11, 43, 92, 0.2);
}

    .btn-primary-fm:hover {
        background: linear-gradient(135deg, #064679, #014d8d);
        transform: translateY(-2px);
        box-shadow: 0px 2px 2px rgb(0 72 182 / 42%);
    }

.btn-outline-fm {
    background: transparent;
    border: 1px solid #d0dcec;
    border-radius: 40px;
    padding: 0.7rem 1.2rem;
    font-weight: 500;
    color: #1a2e4a;
    transition: 0.2s;
}

    .btn-outline-fm:hover {
        background: #f1f6fe;
        border-color: #1b4a8b;
    }

.divider-line {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #8fa0bb;
    font-size: 0.85rem;
    margin: 1.2rem 0 0.8rem;
}

    .divider-line hr {
        flex: 1;
        border: 0;
        height: 1px;
        background: #e2e9f2;
    }

.auth-form-wrapper a {
    color: #1b4a8b;
    font-weight: 500;
    text-decoration: none;
    transition: 0.15s;
}

    .auth-form-wrapper a:hover {
        text-decoration: underline;
        color: #0b2b5c;
    }

.d-none {
    display: none !important;
}
/* responsive */
@media (max-width: 768px) {
    .auth-split {
        flex-direction: column;
        border-radius: 28px;
        margin: 0px;
    }

    .auth-visual .lead-text {
        margin-bottom: 0px !important;
    }

    .auth-visual {
        padding: 2rem 1.8rem;
        min-height: 220px;
        border-radius: 28px 28px 0 0;
    }

        .auth-visual h1 {
            font-size: 1.4rem;
        }

        .auth-visual .lead-text {
            max-width: 100%;
        }

    .auth-form-wrapper {
        padding: 1.5rem 1.5rem;
        min-height: auto;
    }

    .auth-visual .feature-grid {
        display: block;
    }
    .auth-visual .feature-item{
        margin-bottom: 10px;
        padding: 10px 20px;
    }

    .auth-visual .brand-badge {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-form-wrapper .section-title {
        font-size: 1.4rem;
    }
}

.mobile-bottom-nav a .icon {
    height: 10px !important;
}


.footer-fm h5 {
    position: relative;
    display: inline-block;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

    .footer-fm h5::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 2px;
        background: #fff;
        border-radius: 10px;
    }

.trust-stat-card .icon i {
    color: #1557b0;
}

/*==================================================
            EXPERT CATEGORIES
==================================================*/

.expert-title {
    font-size: 2rem;
    font-weight: 700;
    color: #162447;
    margin-bottom: 6px;
    font-family: "Montserrat", sans-serif !important;
}

.expert-subtitle {
    color: #7b7b7b;
    font-size: 15px;
    margin-bottom: 0;
}

/* Card */

.expert-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    transition: .30s;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

    .expert-card:hover {
        transform: translateY(-6px);
        border: 2px solid #d62027;
        box-shadow: 0 15px 35px rgba(214,32,39,.15);
    }

.expert-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

    .expert-icon span {
        font-size: 34px;
    }

    /* Blue Circle */

    .expert-icon.blue {
        background: #E8F2FF;
        color: #2F80ED;
    }

    /* Red Circle */

    .expert-icon.red {
        background: #FFE9E9;
        color: #E74C3C;
    }

.expert-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.expert-card p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.expert-icon i {
    font-size: 30px;
}

/* Responsive */
@media(max-width:768px) {
    .expert-card {
        padding: 22px 12px;
    }

    .expert-icon {
        width: 60px;
        height: 60px;
    }

        .expert-icon span {
            font-size: 28px;
        }

    .expert-card h5 {
        font-size: 15px;
    }

    .expert-card p {
        font-size: 13px;
    }
}

/*====================================
BLOG SECTION
====================================*/

.blog-section {
    background: linear-gradient(135deg, #004e91, #064577);
    margin-bottom: 50px;
}

    .blog-section h2, .blog-section p{
        color: white !important;
    }


    /* Card */
    .blog-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid #edf2f7;
        transition: .35s;
        height: 100%;
        box-shadow: 0 10px 25px rgba(0,0,0,.05);
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

.blog-image {
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        transition: .5s;
    }

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 10px 25px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #014d90;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.blog-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef2f7;
    padding-top: 9px;
}

    .blog-footer span {
        color: #94a3b8;
        font-size: 13px;
    }

    .blog-footer a {
        text-decoration: none;
        color: #04457a;
        font-weight: 600;
        transition: .3s;
        font-size: 13px;
    }

        .blog-footer a:hover {
            color: #0d6efd;
        }

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #dc3545;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

    .btn-view-all:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-3px);
    }

@media(max-width:768px) {

    .blog-section .section-title {
        font-size: 1.4rem;
    }

    .blog-content {
        padding: 15px 20px;
    }

        .blog-content h4 {
            font-size: 15px;
        }

    .blog-image img {
        height: 120px;
    }

    .blog-footer {
        align-items: flex-start;
        gap: 2px;
    }

    .blog-content h4 {
        margin-bottom: 0px;
    }
}

.core-subhead {
    font-size: 28px !important;
    color: #0d3b66 !important;
    margin-bottom: 18px !important;
}

.badge {
    display: none !important;
}


.about-section {
    padding: 80px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Background Decorations */
    .about-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(181,27,59,0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* --- Header --- */
.about-header {
    margin-bottom: 50px;
    position: relative;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eef4ff, #e6edf9);
    color: var(--primary-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(37,99,235,0.12);
    animation: fadeInDown 0.8s ease;
}

    .about-tag i {
        font-size: 1.1rem;
    }

.about-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    display: inline-block;
}

    .about-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -8px;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-dark));
        border-radius: 4px;
    }

.about-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 16px;
    animation: fadeInUp 0.9s ease;
}

/* --- Content --- */
.about-content {
    animation: fadeInLeft 1s ease;
}

.about-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e9edf2;
    transition: all 0.4s ease;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

    .feature-item:hover {
        transform: translateY(-4px) scale(1.02);
        border-color: var(--primary-light);
        box-shadow: 0 8px 28px rgba(37,99,235,0.12);
    }

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary-light);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    transform: rotateY(180deg);
}

.feature-item h6 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

/* --- Image Section --- */
.about-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover .about-img {
    transform: scale(1.04);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.3);
    animation: float 4s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

    .float-card i {
        font-size: 1.2rem;
        color: var(--accent);
    }

.card-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: -15px;
    left: 30%;
    animation-delay: 3s;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 35px rgba(181,27,59,0.35);
    animation: pulseGlow 3s ease-in-out infinite;
}

.exp-number {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /*margin-top: 60px;*/
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e9edf2;
    position: relative;
}

.stat-block {
    text-align: left !important;
    padding: 10px;
    transition: all 0.4s ease;
}

    .stat-block:hover {
        transform: translateY(-6px);
    }

.stat-number {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 12px 35px rgba(181,27,59,0.35);
    }

    50% {
        box-shadow: 0 12px 50px rgba(181,27,59,0.5);
    }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .about-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .float-card {
        display: none;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
    }

    .exp-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0 40px;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .experience-badge {
        padding: 10px 14px;
    }

    .exp-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.4rem;
    }

    .about-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .feature-item {
        padding: 12px 14px;
    }

        .feature-item h6 {
            font-size: 0.85rem;
        }

    .experience-badge {
        display: none;
    }
}

.about-text p {
    color: #000000;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 15px;
    text-align: justify;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
}

/* --- Cards --- */
.mv-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .mv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    }

/* Mission Card Theme */
.mission-card {
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    border-bottom: 4px solid #2563EB;
}

    .mission-card:hover {
        border-color: #1D4ED8;
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    }

/* Vision Card Theme */
.vision-card {
    background: linear-gradient(145deg, #ffffff, #fff8f8);
    border-bottom: 4px solid #b51b3b;
}

    .vision-card:hover {
        border-color: #9c0222;
        box-shadow: 0 20px 60px rgba(181, 27, 59, 0.12);
    }

/* --- Inner Content --- */
.mv-card-inner {
    position: relative;
    z-index: 1;
}

/* --- Icon Container --- */
.mv-icon-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
}

.mv-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    position: relative;
    transition: all 0.5s ease;
    z-index: 2;
}

.mission-card .mv-icon {
    background: linear-gradient(135deg, #2563EB, #1A3C6E);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.30);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, #e5394f, #9c0222);
    box-shadow: 0 8px 30px rgba(181, 27, 59, 0.30);
}

.mv-card:hover .mv-icon {
    transform: scale(1.05) rotate(-3deg);
}

/* Rotating Ring */
.mv-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px dashed rgba(37, 99, 235, 0.15);
    animation: spinRing 20s linear infinite;
    z-index: 1;
}

.vision-card .mv-ring {
    border-color: rgba(181, 27, 59, 0.15);
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mv-card:hover .mv-ring {
    animation-duration: 8s;
}

/* Label Badge */
.mv-label {
    background: #f1f5f9;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mission-card .mv-label {
    background: #eef4ff;
    color: #2563EB;
}

.vision-card .mv-label {
    background: #fef2f2;
    color: #b51b3b;
}

/* --- Typography --- */
.mv-card h3 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.7rem;
    color: #0F172A;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.mv-card p {
    color: #000;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* --- Key Points --- */
.mv-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .mv-points li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: #334155;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 4px 0;
    }

        .mv-points li i {
            color: #2563EB;
            font-size: 1rem;
            font-weight: 700;
            opacity: 0.8;
        }

.vision-card .mv-points li i {
    color: #b51b3b;
}

.mv-card:hover .mv-points li {
    transform: translateX(4px);
}

/* --- Decorative Line --- */
.mv-line {
    width: 50px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #2563EB, transparent);
    margin-top: 6px;
    transition: all 0.5s ease;
}

.vision-card .mv-line {
    background: linear-gradient(90deg, #b51b3b, transparent);
}

.mv-card:hover .mv-line {
    width: 80px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .mission-vision-grid {
        gap: 24px;
    }

    .mv-card {
        padding: 30px 25px 30px;
    }

        .mv-card h3 {
            font-size: 1.4rem;
        }

    .mv-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 1.6rem;
    }

    .mv-ring {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .mv-card {
        padding: 28px 22px 28px;
    }

        .mv-card h3 {
            font-size: 1.3rem;
        }

    .mv-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.4rem;
    }

    .mv-ring {
        width: 64px;
        height: 64px;
    }

    .mv-points li {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .mv-card {
        padding: 20px 16px 24px;
        border-radius: 18px;
    }

        .mv-card h3 {
            font-size: 1.1rem;
        }

        .mv-card p {
            font-size: 0.88rem;
        }

    .mv-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
        border-radius: 14px;
    }

    .mv-ring {
        width: 56px;
        height: 56px;
        top: -4px;
        left: -4px;
    }

    .mv-label {
        font-size: 0.65rem;
        padding: 3px 12px;
    }

    .mv-points li {
        font-size: 0.8rem;
    }

    .mv-line {
        width: 35px;
        height: 2px;
    }

    .mv-card:hover .mv-line {
        width: 55px;
    }
}

.core-values-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    /* Background Decoration */
    .core-values-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .core-values-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(181, 27, 59, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* --- Section Header --- */
.values-header {
    margin-bottom: 50px;
    position: relative;
}

.values-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.values-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0;
}

.values-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    margin: 12px auto 18px;
}

.values-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

/* --- Value Card --- */
.value-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px 28px;
    border: 1px solid #e9edf2;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    /* Different border colors for each card */
    .value-card:nth-child(1) {
        border-bottom: 3px solid #df344b;
    }

    .value-card:nth-child(2) {
        border-bottom: 3px solid #df344b;
    }

    .value-card:nth-child(3) {
        border-bottom: 3px solid #df344b;
    }

    .value-card:nth-child(4) {
        border-bottom: 3px solid #df344b;
    }

    .value-card:nth-child(1):hover {
        border-color: #b51b3b;
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.10);
    }

    .value-card:nth-child(2):hover {
        border-color: #b51b3b;
        box-shadow: 0 20px 50px rgba(217, 119, 6, 0.10);
    }

    .value-card:nth-child(3):hover {
        border-color: #b51b3b;
        box-shadow: 0 20px 50px rgba(5, 150, 105, 0.10);
    }

    .value-card:nth-child(4):hover {
        border-color: #b51b3b;
        box-shadow: 0 20px 50px rgba(181, 27, 59, 0.10);
    }

/* --- Card Inner --- */
.value-card-inner {
    position: relative;
    z-index: 1;
}

/* --- Icon Wrapper --- */
.value-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.value-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.5s ease;
}

/* Different icon colors */
.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, #e5394f, #9c0222);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #e5394f, #9c0222);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #e5394f, #9c0222);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #e5394f, #9c0222);
    box-shadow: 0 6px 20px rgba(181, 27, 59, 0.25);
}

.value-card:hover .value-icon {
    transform: scale(1.05) rotate(-5deg);
}

/* Value Number */
.value-number {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800;
    font-size: 2.2rem;
    color: #e9edf2;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    color: #d1d5db;
}

/* --- Typography --- */
.value-card h3 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0F172A;
    margin-bottom: 12px;
}

.value-card p {
    color: #000000;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Hover Line --- */
.value-hover-line {
    width: 0;
    height: 3px;
    border-radius: 3px;
    margin-top: 16px;
    transition: all 0.5s ease;
}

.value-card:nth-child(1) .value-hover-line {
    background: linear-gradient(90deg, #b51b3b, transparent);
}

.value-card:nth-child(2) .value-hover-line {
    background: linear-gradient(90deg, #b51b3b, transparent);
}

.value-card:nth-child(3) .value-hover-line {
    background: linear-gradient(90deg, #b51b3b, transparent);
}

.value-card:nth-child(4) .value-hover-line {
    background: linear-gradient(90deg, #b51b3b, transparent);
}

.value-card:hover .value-hover-line {
    width: 40px;
}

/* --- Background Icon --- */
.value-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 5rem;
    color: #f1f5f9;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon-bg {
    opacity: 0.6;
    transform: scale(1.1) rotate(-5deg);
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .values-title {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 28px 20px 24px;
    }

        .value-card h3 {
            font-size: 1.2rem;
        }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 50px 0 40px;
    }

    .values-title {
        font-size: 1.8rem;
    }

    .values-subtitle {
        font-size: 0.95rem;
    }

    .values-grid {
        gap: 16px;
    }

    .value-card {
        padding: 22px 18px 20px;
        border-radius: 16px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        border-radius: 14px;
    }

    .value-number {
        font-size: 1.8rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .value-icon-bg {
        font-size: 3.5rem;
        bottom: -10px;
        right: -5px;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-title {
        font-size: 1.5rem;
    }

    .values-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .value-card {
        padding: 20px 16px 18px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .value-number {
        font-size: 1.5rem;
    }
}

.life-at-findme {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

    /* Background Decorations */
    .life-at-findme::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .life-at-findme::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(181, 27, 59, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* --- Left Content --- */
.life-content {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.life-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #b51b3b;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(181, 27, 59, 0.12);
}

    .life-tag i {
        color: #b51b3b;
    }

.life-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.2;
}

.life-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    margin: 14px 0 20px;
}

.life-text {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
}

    .life-text:last-of-type {
        margin-bottom: 24px;
    }

/* --- Culture Highlights --- */
.culture-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
}

.culture-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e9edf2;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

    .culture-item:hover {
        transform: translateY(-4px);
        border-color: var(--primary-light);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    }

    .culture-item:nth-child(2):hover {
        border-color: #D97706;
        box-shadow: 0 8px 24px rgba(217, 119, 6, 0.08);
    }

    .culture-item:nth-child(3):hover {
        border-color: #059669;
        box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
    }

    .culture-item:nth-child(4):hover {
        border-color: #b51b3b;
        box-shadow: 0 8px 24px rgba(181, 27, 59, 0.08);
    }

.culture-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: var(--primary-light);
    font-size: 1rem;
    transition: all 0.4s ease;
}

.culture-item:hover .culture-icon {
    background: var(--primary-light);
    color: #fff;
    transform: scale(1.05);
}

.culture-item:nth-child(2) .culture-icon {
    background: #fef3c7;
    color: #D97706;
}

.culture-item:nth-child(2):hover .culture-icon {
    background: #D97706;
    color: #fff;
}

.culture-item:nth-child(3) .culture-icon {
    background: #d1fae5;
    color: #059669;
}

.culture-item:nth-child(3):hover .culture-icon {
    background: #059669;
    color: #fff;
}

.culture-item:nth-child(4) .culture-icon {
    background: #fef2f2;
    color: #b51b3b;
}

.culture-item:nth-child(4):hover .culture-icon {
    background: #b51b3b;
    color: #fff;
}

.culture-item h6 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 1px;
}

.culture-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

/* --- Right Side --- */
.life-right {
    position: relative;
}

/* Image Wrapper */
.life-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.life-image {
    position: relative;
    overflow: hidden;
}

    .life-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block;
    }

    .life-image:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

.life-image:hover .image-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

    .play-btn:hover {
        transform: scale(1.1);
        background: #ffffff;
    }

/* Floating Stats */
.float-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    animation: floatStat 4s ease-in-out infinite;
}

    .float-stat i {
        font-size: 1.1rem;
        color: var(--primary-light);
    }

.stat-1 {
    top: 20px;
    right: -15px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 30px;
    left: -15px;
    animation-delay: 1.5s;
}

.stat-1 i {
    color: var(--primary-light);
}

.stat-2 i {
    color: var(--accent);
}

@keyframes floatStat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Contact Card --- */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 18px 24px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid #e9edf2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-light), var(--accent));
        border-radius: 4px 0 0 4px;
    }

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    }

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary-light);
    font-size: 1.3rem;
}

.contact-content {
    flex: 1;
}

    .contact-content h5 {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-primary);
        margin-bottom: 2px;
    }

.contact-email {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .contact-email:hover {
        color: var(--primary);
        transform: translateX(4px);
    }

.contact-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--text-muted);
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.contact-card:hover .contact-arrow {
    background: var(--primary-light);
    color: #fff;
    transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .life-at-findme {
        padding: 60px 0 40px;
    }

    .life-title {
        font-size: 2.2rem;
    }

    .life-content {
        padding-right: 0;
    }

    .life-image img {
        height: 280px;
    }

    .float-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .life-title {
        font-size: 1.8rem;
    }

    .culture-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .culture-item {
        padding: 12px 14px;
    }

        .culture-item h6 {
            font-size: 0.8rem;
        }

        .culture-item p {
            font-size: 0.75rem;
        }

    .life-image img {
        height: 240px;
    }

    .contact-card {
        padding: 14px 18px;
        flex-wrap: wrap;
    }

    .contact-arrow {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .life-at-findme {
        padding: 40px 0 30px;
    }

    .life-title {
        font-size: 1.5rem;
    }

    .life-tag {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .life-text {
        font-size: 0.9rem;
    }

    .culture-highlights {
        grid-template-columns: 1fr;
    }

    .culture-item {
        padding: 10px 12px;
    }

    .life-image img {
        height: 200px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

        .contact-card::before {
            width: 100%;
            height: 4px;
            top: 0;
            left: 0;
            border-radius: 4px 4px 0 0;
        }

    .contact-arrow {
        display: none;
    }

    .play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}


.lawyer-register-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    /* Background Decorations */
    .lawyer-register-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .lawyer-register-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(181, 27, 59, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* --- Section Header --- */
.register-header {
    margin-bottom: 50px;
    position: relative;
}

.register-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

    .register-tag i {
        color: var(--primary-light);
    }

.register-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0;
}

.register-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    margin: 12px auto 18px;
}

.register-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Register Card --- */
.register-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px 40px;
    position: relative;
    border: 1px solid #e9edf2;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    overflow: hidden;
}

    .register-card:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        border-color: rgba(37, 99, 235, 0.15);
    }

/* Card Decorations */
.card-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.04;
}

.decor-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -80px;
    background: var(--primary-light);
}

.decor-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -60px;
    background: var(--accent);
}

.decor-3 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 20px;
    border: 2px solid var(--primary-light);
    background: transparent;
}

.register-card-inner {
    position: relative;
    z-index: 1;
}

/* --- Icon Wrapper --- */
.register-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.register-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.5s ease;
}

.register-card:hover .register-icon {
    transform: scale(1.05) rotate(-3deg);
}

.icon-badge {
    background: #f1f5f9;
    padding: 4px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- Content --- */
.register-content {
    margin-bottom: 28px;
}

.register-text {
    color: #475569;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 16px;
}

    .register-text:last-child {
        margin-bottom: 0;
    }

    .register-text strong {
        color: var(--primary);
        font-weight: 600;
    }

/* --- Why Choose Box --- */
.why-choose-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
    border-left: 4px solid var(--accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .why-choose-box::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(181, 27, 59, 0.04) 0%, transparent 70%);
        pointer-events: none;
    }

    .why-choose-box:hover {
        transform: translateX(6px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }

.why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #9c0222);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(181, 27, 59, 0.20);
    transition: all 0.4s ease;
}

.why-choose-box:hover .why-icon {
    transform: rotateY(180deg);
}

.why-content {
    flex: 1;
}

    .why-content h5 {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 600;
        font-size: 1rem;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .why-content p {
        color: #64748B;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

.why-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--text-muted);
    transition: all 0.4s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-choose-box:hover .why-arrow {
    background: var(--accent);
    color: #fff;
    transform: translateX(4px);
}

/* --- Actions --- */
.register-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.btn-register-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

    .btn-register-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 99, 235, 0.30);
        color: #fff;
    }

    .btn-register-primary i {
        font-size: 1.1rem;
    }

.btn-register-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    color: var(--primary-light);
    border: 2px solid #e9edf2;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

    .btn-register-outline:hover {
        border-color: var(--primary-light);
        background: #f8fbff;
        transform: translateY(-3px);
        color: var(--primary);
    }

    .btn-register-outline i {
        font-size: 1rem;
    }

/* --- Responsive --- */
@media (max-width: 991px) {
    .register-title {
        font-size: 2.2rem;
    }

    .register-card {
        padding: 35px 30px 30px;
    }

    .register-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .lawyer-register-section {
        padding: 50px 0 40px;
    }

    .register-title {
        font-size: 1.8rem;
    }

    .register-subtitle {
        font-size: 0.95rem;
    }

    .register-card {
        padding: 28px 22px 25px;
        border-radius: 18px;
    }

    .register-text {
        font-size: 0.95rem;
    }

    .why-choose-box {
        flex-wrap: wrap;
        padding: 16px 18px;
    }

    .why-arrow {
        display: none;
    }

    .register-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-register-primary,
    .btn-register-outline {
        justify-content: center;
        padding: 12px 20px;
    }

    .register-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.4rem;
    }

    .card-decor {
        display: none;
    }
}

@media (max-width: 576px) {
    .register-title {
        font-size: 1.5rem;
    }

    .register-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .register-card {
        padding: 20px 16px 20px;
    }

    .register-text {
        font-size: 0.9rem;
    }

    .register-icon-wrapper {
        flex-wrap: wrap;
    }

    .icon-badge {
        font-size: 0.75rem;
        padding: 3px 14px;
    }

    .register-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
        border-radius: 14px;
    }

    .why-content h5 {
        font-size: 0.9rem;
    }

    .why-content p {
        font-size: 0.85rem;
    }
}

.consult-expert-card .card i {
    color: #1557b0 !important;
}

.how-work .card i {
    color: #1557b0 !important;
}

.trust-legal i {
    color: #1557b0 !important;
}

.expert-icon {
    background: linear-gradient(135deg, #004e91, #064577);
}

.expert-text {
    color: #9c0222;
}

.bg-expert-btn {
    background: linear-gradient(135deg, #004e91, #064577) !important;
    color: white;
}

    .bg-expert-btn:hover {
        transform: scale(1.02) !important;
        filter: brightness(1.1) !important;
        color: #fff;
    }


.feature-item {
    color: #014d8e !important;
    font-weight: 500 !important;
    
}

    .feature-item i {
        color: #014d8e !important;
        font-weight: 500 !important;
    }


.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    height: 40px !important;
    border: 1px solid #dfe5ec !important;
    border-radius: 9px !important;
    background: #fff !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 44px;
    line-height: 44px !important;
    padding-left: 13px !important;
    padding-right: 35px !important;
    color: #526276 !important;
    font-size: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 21px !important;
    right: 8px !important;
}
.hero-section {
    position: relative;
    overflow: visible;
    background-image: url('../image/hero-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 500px;
    padding: 70px 0 110px;
    color: #0c2340;
    display: flex;
    align-items: flex-start;
    margin-top: -72px;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-content {
    width: 52%;
    padding-top: 50px;
}
.hero-title {
    margin: 0;
    /*font-family: "Montserrat", sans-serif !important;*/
    font-size: 43px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #0c2340;
}
.hero-title span {
    /*display: block;*/
    color: #0756a8;
}
.hero-subtitle {
    max-width: 600px !important;
    margin-top: 22px;
    margin-bottom: 30px;
    color: #314863;
    /*font-family: "Montserrat", sans-serif !important;*/
    font-size: 18px !important;
    line-height: 1.55;
    text-align: left !important;
}
.hero-trust-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}
.hero-check-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border: 2px solid #4e91d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #377fc8;
    font-size: 13px;
}
.hero-trust-item strong {
    display: block;
    color: #10294a;
    /*font-family: "Montserrat", sans-serif !important;*/
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.hero-trust-item span {
    display: block;
    margin-top: 3px;
    color: #68788b;
    font-size: 14px;
    font-family: "Montserrat", sans-serif !important;
}
.hero-filter-container {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
}
.hero-filter-bar {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e8edf3;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(25, 55, 90, 0.13), 0 4px 12px rgba(25, 55, 90, 0.06);
    margin-top: -60px;
    position: relative;
}
.hero-filter-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.hero-filter-item label {
    margin: 0;
    color: #24384e;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    font-weight: 600;
}
.hero-filter-item select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #dfe5ec;
    border-radius: 9px;
    background: #fff;
    color: #526276;
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px;
    outline: none;
    transition: 0.2s ease;
}
.hero-filter-item select:hover {
    border-color: #bdc9d7;
}
.hero-filter-item select:focus {
    border-color: #4e91d9;
    box-shadow: 0 0 0 3px rgba(78, 145, 217, 0.10);
}
.hero-filter-apply-btn {
    height: 40px;
    padding: 0 24px;
    flex: 0 0 auto;
    border: none;
    border-radius: 9px;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(181, 27, 59, 0.20);
    transition: all 0.2s ease;
    margin-bottom: 20px;
}
    .hero-filter-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 1px 6px rgb(2 76 140);
    }
.hero-filter-apply-btn:active {
    transform: translateY(0);
}
.hero-filter-apply-btn i {
    font-size: 14px;
}
.err-message {
    min-height: 14px;
    font-size: 11px;
    line-height: 1.2;
}
.expert-stats-section {
    position: relative;
    z-index: 5;
    padding: 95px 0 35px;
    background: #fff;
}
.trust-stat-card {
    min-height: 105px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 13px;
    box-shadow: 0 3px 12px rgba(20, 45, 75, 0.06);
    transition: all 0.2s ease;
}
.trust-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 45, 75, 0.10);
}
.trust-stat-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0756a8;
    font-size: 30px;
}
.trust-stat-number {
    color: #10294a;
    /*font-family: "Montserrat", sans-serif !important;*/
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}
.trust-stat-label {
    margin-top: 4px;
    color: #68788b;
    font-size: 12px;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .hero-section {
        min-height: 560px;
        padding-top: 75px;
        background-position: 60% top;
    }
    .hero-content {
        width: 58%;
        padding-top: 45px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 17px;
    }
    .hero-filter-bar {
        gap: 12px;
        padding: 17px;
    }
    .hero-filter-apply-btn {
        padding: 0 17px;
    }
}
@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 55px 0 85px;
        margin-top: -60px;
        background-size: auto 520px;
        background-position: 68% top;
        background-color: #f7faff;
    }
    .hero-container {
        min-height: 480px;
    }
    .hero-content {
        width: 100%;
        padding-top: 30px;
        text-align: center;
    }
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        max-width: 500px;
    }
    .hero-trust-features {
        justify-content: center;
        gap: 18px;
    }
    .hero-filter-container {
        width: calc(100% - 30px);
        bottom: -210px;
    }
    .hero-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
    }
    .hero-filter-item {
        width: 100%;
        flex: none;
    }
    .hero-filter-apply-btn {
        width: 100%;
    }
    .expert-stats-section {
        padding-top: 230px;
    }

    .hero-filter-item{
        gap: 2px !important;
    }
}
@media (max-width: 640px) {
    .page-content .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .hero-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        max-width: 100%;
    }
    .hero-filter-item {
        min-width: 100%;
        flex: 1 1 10px;
    }
    .hero-filter-item select {
        font-size: 16px;
    }
    .hero-filter-apply-btn {
        width: 100%;
        justify-content: center;
    }
    #trust-stats-row .trust-stats {
        row-gap: 10px;
    }
    .trust-stat-card {
        padding: 12px 8px;
    }
    .trust-stat-card .icon {
        font-size: 1.4rem;
    }
    .trust-stat-card .number {
        font-size: 1.1rem;
    }
    .trust-stat-card .label {
        font-size: 0.7rem;
    }
    #home-categories > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .category-card {
        padding: 14px 8px;
    }
    .category-card .cat-icon {
        font-size: 1.6rem;
    }
    .category-card .cat-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    .how-step {
        padding: 16px 10px;
        text-align: center;
    }
    .how-step .step-icon {
        font-size: 1.6rem;
    }
    .fp-grid,
    #home-featured-pros {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    .pro-card {
        padding: 14px;
    }
    .pro-card h6 {
        font-size: 0.95rem;
    }
        .pro-card .pro-avatar {
            width: 48px !important;
            height: 48px !important;
            font-size: 0.85rem;
            min-width: 48px;
        }
    .pro-card .d-flex.gap-2.mt-auto {
        flex-direction: column;
    }
    .pro-card .d-flex.gap-2.mt-auto a {
        width: 100%;
        text-align: center;
    }
    .fp-pagination {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 6px;
        padding-bottom: 4px;
    }
    .fp-pagination .fp-page-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .testimonial-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
    }
    .testimonial-scroll > div {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    .testimonial-card {
        height: 100%;
    }
    .feature-card {
        padding: 14px 8px;
    }
    .feature-card .f-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .feature-card h5 {
        font-size: 0.95rem;
    }
    .page-content {
        overflow-x: hidden;
    }
}
@media (max-width: 575px) {
    .hero-section {
        min-height: 300px;
        padding-top: 45px;
        padding-bottom: 70px;
        background-size: auto 390px;
        background-position: 25% top;
    }

    .err-message {
        min-height: 0px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-size: 14px !important;
    }
    .hero-content .pt-5 {
        padding: 20px 5px !important;
    }
    .select2-container--default .select2-selection--single {
        height: 35px !important;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 17px !important;
        }
        .ask-question-btn {
            background: linear-gradient(135deg, #004e91, #064577);
            color: white !important;
            border-radius: 10px;
            padding: 6px 10px;
            font-weight: 500;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            border: none !important;
            min-width: 161px;
        }
    .hero-container {
        min-height: 430px;
    }
    .hero-content {
        padding-top: 25px;
    }
    .hero-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.5;
        margin-top: 14px;
        margin-bottom: 20px;
    }
    .hero-trust-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .hero-trust-item {
        gap: 5px;
        text-align: left;
    }
    .hero-check-icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        font-size: 10px;
    }
    .hero-trust-item strong {
        font-size: 13px;
    }
    .hero-trust-item span {
        font-size: 8px;
    }
    .hero-filter-container {
        width: calc(100% - 24px);
        bottom: -305px;
    }
    .hero-filter-bar {
        padding: 15px;
        border-radius: 14px;
        gap: 10px;
    }
    .hero-filter-item label {
        font-size: 13px;
    }
    .hero-filter-item select {
        height: 44px;
        font-size: 13px;
    }
    .hero-filter-apply-btn {
        height: 44px;
        font-size: 13px;
    }
    .expert-stats-section {
        padding-top: 330px;
        padding-bottom: 25px;
    }
    .trust-stat-card {
        min-height: 82px;
        padding: 10px;
        gap: 7px;
        border-radius: 10px;
    }
    .trust-stat-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 19px;
    }
    .trust-stat-number {
        font-size: 16px;
    }
    .trust-stat-label {
        font-size: 9px;
    }
}
@media (max-width: 380px) {
    .hero-title {
        font-size: 27px;
    }
    .hero-trust-item strong {
        font-size: 15px;
    }
    .hero-trust-item span {
        font-size: 9px;
    }
    .hero-filter-container {
        bottom: -305px;
    }
    #home-categories > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .category-card {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    .category-card .cat-icon {
        font-size: 1.4rem;
    }
}

/* ================= TRUST STATS ================= */

#trust-stats-row {
    position: relative;
    z-index: 5;
}

.trust-stats {
    align-items: stretch;
}

.trust-stat-card {
    min-height: 82px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(20, 55, 95, 0.05);
    transition: all 0.25s ease;
}

    .trust-stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(20, 55, 95, 0.09);
    }

.trust-stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef5ff;
    color: #0755a5;
    font-size: 27px;
}

.trust-stat-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;
}

.trust-stat-number {
    color: #102f56;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
}

.trust-stat-label {
    margin-top: 3px;
    color: #78869a;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}

/* ================= TABLET ================= */

@media (max-width: 767.98px) {
    .trust-stat-card {
        min-height: 78px;
        padding: 9px 11px;
        gap: 8px;
    }

    .trust-stat-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        flex-basis: 30px;
        font-size: 16px;
    }

    .trust-stat-number {
        font-size: 14px;
    }

    .trust-stat-label {
        font-size: 8px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 576px) {
    .trust-stat-card {
        padding: 8px;
        gap: 7px;
    }

    .expert-category-icon {
        height: 45px !important;
        width: 45px !important;
        min-width: 45px !important;
        font-size: 18px !important;
    }

    .trust-stat-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        flex-basis: 28px;
        font-size: 19px;
    }

    .trust-stat-number {
        font-size: 15px;
    }

    .trust-stat-label {
        font-size: 10.5px;
    }
}

/* =========================================================
   EXPERT CATEGORIES
========================================================= */

.expert-categories-section {
    position: relative;
    padding: 42px 0 48px;
    background: #fff;
}

/* Header */
.expert-section-header {
    margin-bottom: 24px;
}

.section-mini-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #ef3340;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .section-mini-title span {
        width: 18px;
        height: 1px;
        background: #1257a6;
        display: inline-block;
    }

.expert-section-header h2 {
    margin: 0;
    color: #102d52;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.expert-section-header p {
    margin: 5px 0 0;
    color: #7c8797;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 400;
}

/* Category Card */
.expert-category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 64px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(20, 65, 110, 0.05);
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

    /* Top subtle highlight */
    .expert-category-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: transparent;
        transition: all 0.25s ease;
    }

    .expert-category-card:hover {
        transform: translateY(-3px);
        border-color: #dbe8f8;
        box-shadow: 0 8px 20px rgba(20, 65, 110, 0.11);
    }

        .expert-category-card:hover::before {
            background: #1257a6;
        }

/* Icon */
.expert-category-icon {
    flex: 0 0 38px;
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    transition: all 0.25s ease;
}

    .expert-category-icon.blue {
        color: #1257a6;
        background: #edf5ff;
    }

    .expert-category-icon.red {
        color: #e5394f;
        background: #fff0f2;
    }

.expert-category-card:hover .expert-category-icon {
    transform: scale(1.08);
}

/* Content */
.expert-category-content {
    min-width: 0;
}

    .expert-category-content h5 {
        margin: 0 0 2px;
        color: #172f50;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
    }

    .expert-category-content span {
        display: block;
        color: #8a94a3;
        font-size: 14px;
        line-height: 1.2;
    }

/* View All */
.expert-view-all {
    margin-top: 16px;
}

.btn-view-categories {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 96px;
    height: 29px;
    padding: 0 13px;
    color: #1257a6;
    background: #fff;
    border: 1px solid #bcd4f2;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-view-categories i {
        font-size: 9px;
    }

    .btn-view-categories:hover {
        color: #fff;
        background: #1257a6;
        border-color: #1257a6;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .expert-categories-section {
        padding: 32px 0 38px;
    }

    .expert-section-header {
        margin-bottom: 20px;
    }

        .expert-section-header h2 {
            font-size: 18px;
        }

    .expert-category-card {
        min-height: 60px;
        padding: 8px 9px;
        gap: 8px;
    }

    .expert-category-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .expert-category-content h5 {
        font-size: 10px;
    }

    .expert-category-content span {
        font-size: 11.5px;
    }
}

@media (max-width: 576px) {

    .expert-category-card {
        min-height: 58px;
        padding: 7px;
    }

    .expert-category-icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        font-size: 14px;
    }

    .expert-category-content h5 {
        font-size: 13px;
    }

    .expert-category-content span {
        font-size: 10.5px;
    }

    .how-icon-circle i {
        color: #075eb6;
        font-size: 25px !important;
    }

    .how-icon-circle {
        width: 70px !important;
        height: 70px !important;
    }
    .how-step-card h4 {
        margin: 0;
        color: #102c52;
        font-size: 18px !important;
    }

    .how-step-card p {
        margin: 0;
        color: #68788c;
        font-size: 12px !important;
    }



}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 42px;
    background: radial-gradient(circle at 5% 55%, rgba(237,242,252,.75), transparent 20%), radial-gradient(circle at 96% 60%, rgba(237,242,252,.75), transparent 20%), #fff;
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.how-bg-dot {
    position: absolute;
    width: 55px;
    height: 55px;
    background-image: radial-gradient(#dce7f6 1.3px, transparent 1.3px);
    background-size: 8px 8px;
    opacity: .75;
    pointer-events: none;
}

.how-dot-left {
    top: 45px;
    left: 20px;
}

.how-dot-right {
    right: 20px;
    bottom: 35px;
}

.how-bg-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 16px solid #edf4fc;
    border-radius: 50%;
    pointer-events: none;
}

.how-circle-left {
    left: -52px;
    bottom: 55px;
}

.how-circle-right {
    right: -52px;
    top: 55px;
}

/* =========================================================
   STEPS WRAPPER
========================================================= */

.how-steps-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

/* =========================================================
   STEP ITEM
========================================================= */

.how-step-item {
    position: relative;
    width: 375px;
    padding-top: 19px;
    flex-shrink: 0;
}

/* =========================================================
   STEP NUMBER
========================================================= */

.how-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #0756a3;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(7,86,163,.22);
}

/* =========================================================
   STEP CARD
========================================================= */

.how-step-card {
    position: relative;
    min-height: 190px;
    padding: 25px 15px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 15px;
    box-shadow: 0 7px 20px rgba(21,62,105,.08);
}

    /* Bottom curved blue line */

    .how-step-card::after {
        content: "";
        position: absolute;
        left: 4%;
        right: 4%;
        bottom: -5px;
        height: 12px;
        border-bottom: 3px solid #075db3;
        border-radius: 0 0 50% 50%;
    }

/* =========================================================
   MAIN ICON
========================================================= */

.how-icon-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 10px;
    border-radius: 50%;
    background: #edf6ff;
    box-shadow: inset 0 0 0 7px rgba(255,255,255,.65);
}

    .how-icon-circle i {
        color: #075eb6;
        font-size: 40px;
    }

/* =========================================================
   CARD CONTENT
========================================================= */

.how-step-card h4 {
    margin: 0;
    color: #102c52;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.how-title-line {
    width: 50px;
    height: 2px;
    margin: 15px auto 7px;
    background: #075db3;
}

.how-step-card p {
    margin: 0;
    color: #68788c;
    font-size: 14px;
    line-height: 1.55;
}

/* =========================================================
   BOTTOM FLOATING ICON
========================================================= */

.how-bottom-icon {
    position: absolute;
    left: 50%;
    bottom: -35px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border: 1px solid #e3ebf4;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(16,54,91,.12);
    z-index: 5;
}

    .how-bottom-icon i {
        color: #075eb6;
        font-size: 30px;
    }

/* =========================================================
   CONNECTING ARROW
========================================================= */

.how-arrow {
    width: 80px;
    display: flex;
    align-items: center;
    margin: 0 4px;
    transform: translateY(4px);
}

    .how-arrow span {
        flex: 1;
        height: 0;
        border-top: 4px dotted #1768b7;
    }

    .how-arrow i {
        margin-left: -1px;
        color: #1768b7;
        font-size: 18px;
    }

/* =========================================================
   TRUST BAR
========================================================= */

.how-trust-bar {
    position: relative;
    z-index: 3;
    max-width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 22px 18px;
    border: 1px solid #edf1f5;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(30,69,111,.07);
    margin-top: 50px;
}

.how-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.how-trust-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .how-trust-icon i {
        font-size: 30px;
    }

    .how-trust-icon.verified i,
    .how-trust-icon.secure i {
        color: #135da9;
    }

    .how-trust-icon.response i,
    .how-trust-icon.network i {
        color: #ed2634;
    }

.how-trust-item strong {
    display: block;
    color: #243b58;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.how-trust-item small {
    display: block;
    margin-top: 6px;
    color: #8290a0;
    font-size: 14px;
    line-height: 1.3;
}

.how-trust-divider {
    width: 1px;
    height: 27px;
    flex-shrink: 0;
    background: #e7ebf0;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .how-it-works-section {
        padding: 45px 0 40px;
    }

    .how-steps-wrapper {
        max-width: 720px;
    }

    .how-step-item {
        width: 180px;
    }

    .how-arrow {
        width: 40px;
    }

    .how-trust-bar {
        max-width: 700px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .how-it-works-section {
        padding: 40px 15px;
    }

    .how-steps-wrapper {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 42px;
    }

    .how-step-item {
        width: 100%;
        max-width: 260px;
    }

    .how-step-card {
        min-height: 185px;
    }

    /* Vertical arrow */

    .how-arrow {
        width: 2px;
        height: 25px;
        flex-direction: column;
        margin: 0;
        transform: none;
    }

        .how-arrow span {
            width: 0;
            height: 20px;
            flex: none;
            border-top: 0;
            border-left: 2px dotted #1768b7;
        }

        .how-arrow i {
            margin: -2px 0 0;
            transform: rotate(90deg);
        }

    /* Trust bar */

    .how-trust-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .how-trust-item {
        width: 100%;
        justify-content: flex-start;
    }

    .how-trust-divider {
        width: 80%;
        height: 1px;
    }

    .how-bg-dot {
        opacity: .45;
    }
}

.blog-image img {
    position: relative;
    overflow: visible;
}

    /* Curved bottom border */
.blog-image img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 18px;
    border-bottom: 3px solid #075db3;
    border-radius: 0 0 50% 50%;
}

/* =========================================================
   FOOTER CTA STRIP
========================================================= */

.footer-cta-section {
    position: relative;
    z-index: 10;
    margin-bottom: -48px;
}

/* Main CTA */

.footer-cta {
    position: relative;
    min-height: 170px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 25px 220px 25px 50px;
    background: linear-gradient(105deg, #001f3b 0%, #0757a5 55%, #073f7e 100%);
    border-radius: 20px;
    box-shadow: 1px 4px 9px 1px rgb(0 35 69);
}

    /* =========================================================
   LEFT BACKGROUND PATTERN
========================================================= */

    .footer-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 260px;
        height: 100%;
        opacity: .22;
        background-image: repeating-linear-gradient( 135deg, transparent 0, transparent 8px, rgba(255,255,255,.18) 9px, rgba(255,255,255,.18) 10px );
        pointer-events: none;
    }

/* =========================================================
   CONTENT
========================================================= */

.footer-cta-content {
    position: relative;
    z-index: 3;
}

    .footer-cta-content h2 {
        margin: 0 0 6px;
        color: #ffffff;
        font-size: 25px;
        line-height: 1.25;
        font-weight: 800;
    }

    .footer-cta-content p {
        margin: 0 0 14px;
        color: rgba(255,255,255,.88);
        font-size: 14px;
        line-height: 1.4;
    }

/* =========================================================
   CTA BUTTON
========================================================= */

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 145px;
    padding: 9px 18px;
    border-radius: 6px;
    background: #e52535;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    transition: all .25s ease;
}

    .footer-cta-btn i {
        font-size: 11px;
        transition: transform .2s ease;
    }

    .footer-cta-btn:hover {
        background: #d51d2c;
        color: #ffffff;
        transform: translateY(-2px);
    }

        .footer-cta-btn:hover i {
            transform: translateX(3px);
        }

/* =========================================================
   PERSON IMAGE
========================================================= */

.footer-cta-person {
    position: absolute;
    right: 45px;
    bottom: 0;
    z-index: 4;
    width: 190px;
    height: 185px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .footer-cta-person img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom center;
        display: block;
    }

/* =========================================================
   FOOTER POSITION
========================================================= */

.footer-fm {
    position: relative;
    z-index: 1;
    padding-top: 95px !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-cta-section {
        margin-bottom: -40px;
    }

    .footer-cta {
        min-height: 155px;
        padding: 25px 180px 25px 35px;
    }

    .footer-cta-content h2 {
        font-size: 21px;
    }

    .footer-cta-content p {
        font-size: 11px;
    }

    .footer-cta-person {
        right: 25px;
        width: 160px;
        height: 160px;
    }

    .footer-fm {
        padding-top: 80px !important;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-cta-section {
        margin-bottom: -30px;
        padding: 0 15px;
    }

    .footer-cta {
        min-height: 180px;
        padding: 25px 25px;
        border-radius: 16px;
    }

    .footer-cta-content {
        max-width: 65%;
    }

        .footer-cta-content h2 {
            font-size: 18px;
        }

        .footer-cta-content p {
            font-size: 10px;
        }

    .footer-cta-btn {
        min-width: 125px;
        padding: 8px 13px;
        font-size: 9px;
    }

    .footer-cta-person {
        right: 5px;
        width: 130px;
        height: 145px;
    }

    .footer-fm {
        padding-top: 65px !important;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .footer-cta {
        min-height: 165px;
        padding: 22px 18px;
    }

    .footer-cta-content {
        max-width: 67%;
    }

        .footer-cta-content h2 {
            font-size: 18px;
        }

        .footer-cta-content p {
            font-size: 13px;
            margin-bottom: 10px;
        }

    .footer-cta-btn {
        min-width: 110px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .footer-cta-person {
        width: 105px;
        height: 125px;
        right: 0;
    }
}

.contact-hero .breadcrumb {
    font-size: 14px;
}

.contact-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

.contact-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.8) !important;
}

.contact-hero .breadcrumb a:hover {
    color: #6ca8ff !important;
}

.bg-box {
    background: linear-gradient(135deg, #eef4ff, #dbeafe) !important;
}

.text-box {
    color: #1350d4 !important;
}

.career-why .bg-white {
    /*border: 2px solid #b51b3b;*/
    box-shadow: 0px 0px 2px 1px #b51b3b !important;
}

.help-section {
    background: linear-gradient(135deg, #004e91, #064577) !important;
    position: relative;
}

    .help-section h2{
        color: white !important;
    }

    .help-section-badge {
        display: inline-flex;
        align-items: center;
        padding: 7px 15px;
        border-radius: 50px;
        background: #eef4ff;
        color: #2457a6;
        font-size: 12px;
        font-weight: 600;
    }

.help-section-title {
    color: #14213d;
    font-size: 34px;
    font-weight: 800;
}

.help-card {
    position: relative;
    height: 100%;
    min-height: 140px;
    padding: 24px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(20, 33, 61, .06);
    transition: all .3s ease;
}

    .help-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2457a6, #4f8cff);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .help-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(20, 33, 61, .11);
        border-color: transparent;
    }

        .help-card:hover::before {
            transform: scaleX(1);
        }

.help-card-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e9edf5;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.help-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf4ff, #dce9ff);
    color: #2457a6;
    font-size: 23px;
    transition: all .3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, #2457a6, #4f8cff);
    color: #fff;
}

.help-card h5 {
    position: relative;
    z-index: 1;
    color: #17243d;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    padding-right: 35px;
}

.help-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f5fa;
    color: #2457a6;
    font-size: 14px;
    transition: all .3s ease;
}

.help-card:hover .help-arrow {
    background: #2457a6;
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .help-section-title {
        font-size: 29px;
    }

    .help-card {
        min-height: 175px;
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .help-card {
        min-height: 165px;
    }
    .nav-actions {
        margin-left: 0px !important;
        margin-top: 15px;
        gap: 15px; 
        display: flex;
    }
}

.nav-actions {
    margin-left: 35px;
    gap: 15px;
    display: flex;
}

.expert-category-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*min-height: 580px;*/
    overflow: hidden;
    background-image: url('../image/insuranc-banner.jpeg');
}

    .expert-category-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(96deg, rgb(4 71 124 / 70%), rgb(0 77 143 / 32%), rgb(5 70 124 / 85%));
        z-index: 1;
    }

    .expert-category-bg > * {
        position: relative;
        z-index: 2;
    }

    .expert-category-bg .section-title, .expert-category-bg .section-subtitle {
        color: white !important;
        text-shadow: -1px 0px 4px black;
    }


/* ================= Advisor CTA Section ================= */

.advisor-cta-section {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f4f8fc 0%, #eef5fb 50%, #f8fbfe 100%);
    border-top: 1px solid rgba(15, 82, 145, 0.08);
}

.advisor-cta-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* Icon */

.advisor-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0759a5, #0b72cf);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(7, 89, 165, 0.22);
}

.advisor-cta-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #0759a5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Heading */

.advisor-cta-content h2 {
    margin: 0 0 18px;
    color: #102a43;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.advisor-cta-content p {
    max-width: 850px;
    margin: 0 auto;
    color: #536577;
    font-size: 18px;
    line-height: 1.75;
}

/* Features */

.advisor-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin: 28px 0 30px;
}

.advisor-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #263b50;
    font-size: 15px;
    font-weight: 600;
}

    .advisor-feature i {
        color: #0a66b7;
        font-size: 18px;
    }

/* Button */

.advisor-cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.advisor-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    color: #fff;
    background: linear-gradient(135deg, #0759a5, #0b70c9);
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(7, 89, 165, 0.22);
    transition: all 0.3s ease;
}

    .advisor-cta-button i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .advisor-cta-button:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(7, 89, 165, 0.3);
    }

        .advisor-cta-button:hover i {
            transform: translateX(4px);
        }

/* Security Note */

.advisor-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    color: #718096;
    font-size: 13px;
}

    .advisor-cta-note i {
        color: #0759a5;
    }

/* Decorative Circles */

.advisor-cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -100px;
    background: rgba(7, 89, 165, 0.06);
}

.circle-two {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -190px;
    background: rgba(7, 89, 165, 0.06);
}

    .circle-one::after,
    .circle-two::after {
        content: "";
        position: absolute;
        inset: 35px;
        border: 1px solid rgba(7, 89, 165, 0.08);
        border-radius: 50%;
    }

/* ================= Responsive ================= */

@media (max-width: 767px) {
    .advisor-cta-section {
        padding: 60px 18px;
    }

    .advisor-cta-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .advisor-cta-content h2 {
        font-size: 28px;
    }

    .advisor-cta-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .advisor-cta-features {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: fit-content;
        margin: 25px auto 28px;
    }

    .advisor-cta-button {
        width: 100%;
        max-width: 330px;
        padding: 13px 18px;
        font-size: 15px;
    }

    .advisor-cta-note {
        font-size: 12px;
    }

}

.audit-process-section {
    background: #f8fafc;
}

.process-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
}

.audit-process {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 0;
}

.process-step {
    width: 180px;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #0d6efd;
    font-size: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2);
}

.step-number {
    font-size: 15px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 4px;
}

.process-step h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #172033;
}

.process-step p {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

.step-line {
    width: 45px;
    height: 2px;
    background: #dbe3ed;
    margin-top: 31px;
    position: relative;
}

    .step-line::after {
        content: "";
        position: absolute;
        right: -2px;
        top: 50%;
        width: 6px;
        height: 6px;
        border-top: 2px solid #b8c4d3;
        border-right: 2px solid #b8c4d3;
        transform: translateY(-50%) rotate(45deg);
    }

@media (max-width: 991px) {
    .audit-process {
        flex-wrap: wrap;
        gap: 30px 10px;
    }

    .step-line {
        display: none;
    }

    .process-step {
        width: 30%;
    }
}

@media (max-width: 575px) {
    .audit-process {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }

    .process-step {
        width: 100%;
    }

        .process-step p {
            font-size: 12px;
        }
}

.audit-challenges {
    background: #f7faff;
    overflow: hidden;
}

.challenge-content {
    max-width: 620px;
}

.challenge-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 30px;
    background: #eaf2ff;
    color: #1769d1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.challenge-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
    margin-bottom: 15px;
}

    .challenge-title span {
        color: #1769d1;
        position: relative;
    }

        .challenge-title span::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -3px;
            height: 3px;
            border-radius: 10px;
            background: #d9e8ff;
        }

.challenge-text {
    color: #687386;
    font-size: 15px;
    line-height: 1.7;
    max-width: 570px;
    margin-bottom: 25px;
}

.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 5px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: #fff;
    box-shadow: 0 8px 25px rgba(30, 75, 130, 0.07);
}

    .challenge-item:hover {
        background: #fff;
        box-shadow: 0 8px 25px rgba(30, 75, 130, 0.07);
        transform: translateX(4px);
    }

.challenge-icon {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #e8f2ff;
    color: #1769d1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 17px;
    font-weight: 800;
}

.challenge-item h6 {
    margin-bottom: 0px !important;
    color: #202938;
    font-size: 15px;
    font-weight: 500;
}

.challenge-item p {
    margin: 0;
    color: #7a8494;
    font-size: 13px;
    line-height: 1.5;
}

/* ================= IMAGE ================= */

.challenge-image-wrapper {
    position: relative;
    padding: 18px;
}

.challenge-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(31, 68, 115, 0.14);
    z-index: 2;
}

    .challenge-image img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .challenge-image:hover img {
        transform: scale(1.03);
    }

/* Decorative shapes */
.image-accent {
    position: absolute;
    border-radius: 18px;
    z-index: 1;
}

.accent-top {
    width: 110px;
    height: 110px;
    top: 0;
    right: 0;
    background: #dceaff;
}

.accent-bottom {
    width: 130px;
    height: 130px;
    bottom: 0;
    left: 0;
    background: #e8f3ff;
}

/* Image Badge */
.image-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eaf2ff;
    color: #1769d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.image-badge strong {
    display: block;
    color: #202938;
    font-size: 13px;
}

.image-badge small {
    display: block;
    color: #7b8492;
    font-size: 11px;
    margin-top: 2px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .challenge-title {
        font-size: 32px;
    }

    .challenge-image-wrapper {
        margin-top: 15px;
    }

    .challenge-image img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .audit-challenges {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .challenge-title {
        font-size: 28px;
    }

    .challenge-text {
        font-size: 14px;
    }

    .challenge-item {
        padding: 9px 5px;
    }

        .challenge-item h6 {
            font-size: 14px;
        }

        .challenge-item p {
            font-size: 12px;
        }

    .challenge-image-wrapper {
        padding: 10px;
    }

    .challenge-image img {
        height: 300px;
    }

    .image-badge {
        left: 15px;
        bottom: 15px;
    }
}


/* ================= DIGITAL BENEFITS ================= */
.digital-benefits-section {
    background: linear-gradient(135deg, #004e91, #064577);
    overflow: hidden;
}

    .digital-benefits-section h2{
        color: white !important;
    }
    /* ================= IMAGE ================= */
    .digital-image-wrapper {
        position: relative;
        padding: 15px;
    }

.digital-image-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #dceaff;
    border-radius: 30px;
    left: 0;
    bottom: 0;
}

.digital-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 50, 100, 0.12);
}

    .digital-image img {
        width: 100%;
        height: 510px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .digital-image:hover img {
        transform: scale(1.03);
    }

/* Image Badge */

.digital-image-badge {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    font-size: 19px;
}

.digital-image-badge strong {
    display: block;
    color: #172033;
    font-size: 13px;
    font-weight: 700;
}

.digital-image-badge span {
    display: block;
    color: #7a8492;
    font-size: 11px;
    margin-top: 2px;
}

/* ================= CONTENT ================= */

.digital-content {
    padding-left: 10px;
}

.digital-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 30px;
    background: #e7f0fc;
    color: #004e91;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.digital-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
    margin: 15px 0 10px;
}

    .digital-title span {
        color: #004e91;
    }

.digital-description {
    color: #6c7788;
    font-size: 14px;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 24px;
}

/* ================= BENEFIT CARDS ================= */

.benefit-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(24, 62, 105, 0.04);
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-4px);
        border-color: #cbdcf0;
        box-shadow: 0 12px 28px rgba(24, 62, 105, 0.10);
    }

.benefit-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 5px 12px rgba(0, 78, 145, 0.18);
}

.benefit-card h5 {
    color: #172033;
    font-size: 16px;
    font-weight: 500;
    margin: 1px 0 0px;
}

.benefit-card p {
    color: #7a8492;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .digital-content {
        padding-left: 0;
    }

    .digital-image img {
        height: 430px;
    }

    .digital-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .digital-benefits-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .digital-image-wrapper {
        padding: 10px;
    }

    .digital-image img {
        height: 360px;
    }

    .digital-title {
        font-size: 27px;
    }

    .digital-description {
        font-size: 13px;
    }

    .digital-image-badge {
        left: 5px;
        bottom: 25px;
    }

    .benefit-card {
        padding: 14px;
    }
}

/* ================= WHO SHOULD USE ================= */
.users-section {
    background: #f7faff;
}

.users-label {
    display: inline-block;
    color: #004e91;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.users-title {
    color: #172033;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* ================= GRID ================= */

.users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.user-card {
    position: relative;
    min-height: 135px;
    padding: 15px 15px;
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .user-card::before {
        content: "";
        position: absolute;
        width: 65px;
        height: 65px;
        right: -25px;
        top: -25px;
        border-radius: 50%;
        background: #edf5ff;
        transition: all 0.3s ease;
    }

    .user-card:hover {
        transform: translateY(-5px);
        border-color: #bcd4ed;
        box-shadow: 0 12px 28px rgba(0, 78, 145, 0.10);
    }

        .user-card:hover::before {
            width: 110px;
            height: 110px;
            background: #e4f0ff;
        }

.user-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 5px 12px rgba(0, 78, 145, 0.18);
    margin-bottom: 15px;
}

.user-card h5 {
    position: relative;
    z-index: 1;
    color: #172033;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    margin: 0;
}

/* ================= IMAGE ================= */

.users-image {
    position: relative;
    height: 100%;
    min-height: 326px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 50, 100, 0.12);
}

    .users-image img {
        width: 100%;
        height: 100%;
        min-height: 326px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .users-image:hover img {
        transform: scale(1.04);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 55%, rgba(0, 50, 100, 0.12) );
}

/* ================= BOTTOM TEXT ================= */

.users-bottom-text {
    max-width: 900px;
    margin-top: 22px;
    color: #526174;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .users-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .users-image {
        min-height: 400px;
    }

        .users-image img {
            min-height: 400px;
        }

    .users-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .users-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .users-title {
        font-size: 28px;
    }

    .users-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .user-card {
        min-height: 125px;
        padding: 18px;
    }

    .users-image {
        min-height: 300px;
    }

        .users-image img {
            min-height: 300px;
        }

    .users-bottom-text {
        font-size: 13px;
    }
}

.audit-cta-section {
    background: #f8fafc;
}

.audit-cta-card {
    position: relative;
    overflow: hidden;
    padding: 38px 42px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
    border: 1px solid #e3ebf7;
    box-shadow: 0 12px 35px rgba(30, 80, 140, 0.08);
}

    /* Decorative shape */
    .audit-cta-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(52, 115, 235, 0.05);
        top: -120px;
        right: 70px;
    }

    .audit-cta-card::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(52, 115, 235, 0.04);
        bottom: -90px;
        left: 35%;
    }

/* Icon */
.audit-cta-icon {
    position: relative;
    z-index: 2;
    width: 82px;
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #edf4ff;
    border: 1px solid #dce9ff;
    color: #2463c7;
    font-size: 38px;
}

/* Badge */
.audit-cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: #edf4ff;
    color: #2463c7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .7px;
}

/* Heading */
.audit-cta-title {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    color: #172b4d;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

/* Description */
.audit-cta-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
}

/* Button */
.audit-cta-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border-radius: 11px;
    background: #2463c7;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(36, 99, 199, 0.20);
    transition: all .25s ease;
}

    .audit-cta-btn:hover {
        color: #fff;
        background: #1954b2;
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(36, 99, 199, 0.25);
    }

/* Responsive */
@media (max-width: 991px) {
    .audit-cta-card {
        padding: 35px 25px;
        text-align: center;
    }

    .audit-cta-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    .audit-cta-title {
        font-size: 24px;
    }

    .audit-cta-text {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .audit-cta-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .audit-cta-title {
        font-size: 21px;
    }

    .audit-cta-btn {
        width: 100%;
    }
}

.core-audit .card {
    border: 2px solid #004e91 !important;
}

.use-case-section {
    background: #fff;
}

.use-case-heading {
    margin-bottom: 45px;
}

    .use-case-heading span {
        display: block;
        color: #0068c9;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: .3px;
    }

    .use-case-heading p {
        color: #0068c9;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

.with-dms h5 {
    font-size: 1.1rem !important;
    margin-bottom: 0px !important;
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
    gap: 26px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.use-case-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.center-column {
    flex-direction: row;
    gap: 26px;
}

.use-case-card {
    min-height: 122px;
    background: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .13);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 18px;
    transition: all .3s ease;
}

    .use-case-card h5 {
        color: #050505;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 600;
        margin: 0;
    }

    .use-case-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
    }

.center-column .use-case-card {
    flex: 1;
    min-height: 122px;
}

@media (max-width: 991px) {
    .use-case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .center-column {
        flex-direction: column;
    }

    .use-case-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-column,
    .center-column {
        gap: 20px;
    }

        .use-case-card,
        .center-column .use-case-card {
            min-height: 100px;
        }

            .use-case-card h5 {
                font-size: 18px;
            }

    .use-case-heading h2 {
        font-size: 28px;
    }

    .use-case-heading p {
        font-size: 14px;
    }
}

.started-section {
    background: #fff;
}

.started-image {
    position: relative;
    height: 425px;
    border-radius: 75px 0 0 75px;
    overflow: hidden;
    border-left: 23px solid #075b9f;
    border-bottom: 12px solid #075b9f;
}

    .started-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.started-content h2 {
    font-size: 32px;
    color: #111;
}

.started-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.started-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 18px 8px 12px;
    background: #f1f1f1;
    border-radius: 12px;
    transition: all .25s ease;
}

    .started-item:hover {
        background: #e9f4fc;
        transform: translateX(4px);
    }

.started-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #075b9f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 800;
}

.started-item span {
    color: #111;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 991px) {
    .started-image {
        height: 350px;
    }

    .started-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .started-image {
        height: 280px;
        border-left-width: 14px;
        border-bottom-width: 8px;
        border-radius: 45px 0 0 45px;
    }

    .started-item {
        padding: 8px 12px 8px 10px;
    }

        .started-item span {
            font-size: 16px;
        }

    .started-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 20px;
    }
}

.expert-register-bg {
    background-image: url('../image/partner-benefits.webp');
}

    .expert-register-bg h2 {
        margin-bottom: 30px !important;
    }

.contact-section {
    background: #f8fafc;
}

.contact-subtitle,
.map-label {
    display: inline-block;
    color: #075b9f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-section h2 {
    color: #111827;
    font-size: 34px;
}

.contact-info-card,
.contact-map-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e8edf2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

    .contact-info-card h4,
    .contact-map-card h4 {
        color: #111827;
    }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #edf0f3;
}

    .contact-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #eaf4fc;
    color: #075b9f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.contact-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #20252b;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
}

    .contact-item a:hover {
        color: #075b9f;
    }

.contact-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-map-card {
    padding: 26px;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.map-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #eaf4fc;
    color: #075b9f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.map-wrapper {
    height: 365px;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #e5e9ed;
}

    .map-wrapper iframe {
        display: block;
    }

@media (max-width: 991px) {
    .contact-info-card,
    .contact-map-card {
        padding: 25px;
    }

    .map-wrapper {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .contact-section h2 {
        font-size: 28px;
    }

    .contact-info-card,
    .contact-map-card {
        padding: 20px;
        border-radius: 16px;
    }

    .map-wrapper {
        height: 280px;
    }
}

.pm-badge i {
    color: #0d6efd;
    margin-right: 5px;
    font-size: 16px;
}

.badge-consult {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    color: #183b63;
    border: 1px solid #cfe2ff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.10);
    transition: all 0.3s ease;
}

    .badge-consult strong {
        color: #0d6efd;
        font-weight: 600;
        font-size: 15px;
    }

    .badge-consult i {
        color: #0d6efd;
        font-size: 16px;
    }

    .badge-consult:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(13, 110, 253, 0.18);
        border-color: #0d6efd;
    }


.stats-section {
    width: 100%;
    padding: 55px 0;
    margin: 0px 0;
    background: linear-gradient(135deg, #004e91, #064577);
    border-top: 1px solid #e1ebf7;
    border-bottom: 1px solid #e1ebf7;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e1eaf5;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(30, 80, 130, 0.08);
    transition: all 0.3s ease;
}

    .stat-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(30, 80, 130, 0.14);
    }

.stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #004e91, #064577);
    color: #fff;
    font-size: 23px;
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.20);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #064577;
}

.stat-label {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #66788a;
}

/* Tablet */
@media (max-width: 991px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .stats-section {
        padding: 40px 15px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-block {
        padding: 20px;
    }

    .stat-number {
        font-size: 25px;
    }
}

/* ================= HOW IT WORKS - DARK SECTION ================= */

.audit-process-section {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #004e91 0%, #064577 100%) !important;
    padding: 70px 20px !important;
}

    /* ================= DECORATIVE BACKGROUND ================= */

    .audit-process-section::before {
        content: "" !important;
        position: absolute !important;
        width: 420px !important;
        height: 420px !important;
        left: -180px !important;
        top: -220px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        pointer-events: none !important;
    }

    .audit-process-section::after {
        content: "" !important;
        position: absolute !important;
        width: 500px !important;
        height: 500px !important;
        right: -220px !important;
        bottom: -300px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        pointer-events: none !important;
    }

    .audit-process-section .container {
        position: relative !important;
        z-index: 2 !important;
    }

    /* ================= SECTION HEADING ================= */

    .audit-process-section .text-center h2 {
        color: #ffffff !important;
        font-size: 34px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
    }

    .audit-process-section .text-center p {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 16px !important;
    }

/* ================= PROCESS ================= */

.audit-process {
    display: flex !important;
    align-items: flex-start !important;
    /*justify-content: space-between !important;*/
    gap: 0 !important;
}

/* ================= STEP ================= */

.process-step {
    width: 210px !important;
    text-align: center !important;
    position: relative !important;
}

/* ================= ICON ================= */

.step-icon {
    width: 66px !important;
    height: 66px !important;
    margin: 0 auto 14px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    font-size: 25px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

.process-step:hover .step-icon {
    background: #ffffff !important;
    color: #004e91 !important;
    border-color: #ffffff !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

/* ================= STEP NUMBER ================= */

.step-number {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 5px !important;
}

/* ================= TITLE ================= */

.process-step h5 {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
    color: #ffffff !important;
}

/* ================= DESCRIPTION ================= */

.process-step p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 0 !important;
}

/* ================= CONNECTING LINE ================= */

.step-line {
    width: 45px !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    margin-top: 32px !important;
    position: relative !important;
}

    .step-line::after {
        content: "" !important;
        position: absolute !important;
        right: -2px !important;
        top: 50% !important;
        width: 7px !important;
        height: 7px !important;
        border-top: 2px solid rgba(255, 255, 255, 0.45) !important;
        border-right: 2px solid rgba(255, 255, 255, 0.45) !important;
        transform: translateY(-50%) rotate(45deg) !important;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .audit-process-section {
        padding: 60px 20px !important;
    }

    .audit-process {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 35px 10px !important;
    }

    .step-line {
        display: none !important;
    }

    .process-step {
        width: 30% !important;
    }
}

@media (max-width: 575px) {

    .audit-process-section {
        padding: 50px 18px !important;
    }

        .audit-process-section .text-center h2 {
            font-size: 27px !important;
        }

        .audit-process-section .text-center p {
            font-size: 14px !important;
        }

    .audit-process {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px 15px !important;
    }

    .process-step {
        width: 100% !important;
    }

    .step-icon {
        width: 58px !important;
        height: 58px !important;
        font-size: 22px !important;
    }

    .process-step h5 {
        font-size: 17px !important;
    }

    .process-step p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .step-number {
        font-size: 12px !important;
    }
}

.process-label {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    padding: 7px 15px !important;
    border-radius: 30px !important;
}


/* ================= BUSINESS SERVICE MAIN - DARK SECTION ================= */

.business-service-main {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #003f76 0%, #064577 50%, #052f52 100%) !important;
    padding: 75px 20px !important;
    color: #ffffff !important;
}

    /* ================= DECORATIVE OBJECTS ================= */

    .business-service-main::before {
        content: "" !important;
        position: absolute !important;
        width: 380px !important;
        height: 380px !important;
        left: -60px !important;
        top: -220px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.045) !important;
        pointer-events: none !important;
    }

    .business-service-main::after {
        content: "" !important;
        position: absolute !important;
        width: 500px !important;
        height: 500px !important;
        right: -260px !important;
        bottom: -320px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        pointer-events: none !important;
    }

    /* ================= CONTAINER ================= */

    .business-service-main > .container {
        position: relative !important;
        z-index: 2 !important;
    }

    /* ================= IMAGE WRAPPER ================= */

    .business-service-main .position-relative {
        position: relative !important;
    }

    /* ================= MAIN IMAGE ================= */

    .business-service-main img {
        border-radius: 22px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30) !important;
    }

    /* ================= FLOATING ICON ================= */

    .business-service-main .expert-icon {
        width: 70px !important;
        height: 70px !important;
        background: linear-gradient(135deg, #0b72cf, #0759a5) !important;
        border: 5px solid #064577 !important;
        color: #ffffff !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30) !important;
    }

        /* ================= ICON ================= */

        .business-service-main .expert-icon i {
            color: #ffffff !important;
        }

    /* ================= HEADING ================= */

    .business-service-main h2 {
        color: #ffffff !important;
        font-size: 38px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }

    /* ================= SUB HEADING ================= */

    .business-service-main h4 {
        color: #8dccff !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
    }

    /* ================= PARAGRAPHS ================= */

    .business-service-main p {
        color: rgba(255, 255, 255, 0.76) !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    /* ================= DECORATIVE CONTENT OBJECT ================= */

    .business-service-main .col-lg-6:last-child {
        position: relative !important;
        z-index: 2 !important;
    }

        .business-service-main .col-lg-6:last-child::after {
            content: "" !important;
            position: absolute !important;
            width: 120px !important;
            height: 120px !important;
            right: -30px !important;
            top: -30px !important;
            border-radius: 50% !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            pointer-events: none !important;
            z-index: -1 !important;
        }

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .business-service-main {
        padding: 60px 20px !important;
    }

        .business-service-main h2 {
            font-size: 32px !important;
        }

        .business-service-main h4 {
            font-size: 20px !important;
        }

        .business-service-main .expert-icon {
            right: 0 !important;
        }

    .navbar-collapse {
        padding: 20px 0px;
    }
}

@media (max-width: 767px) {

    .business-service-main {
        padding: 50px 18px !important;
    }

        .business-service-main img {
            border-radius: 16px !important;
        }

        .business-service-main .expert-icon {
            width: 58px !important;
            height: 58px !important;
            font-size: 22px !important;
            border-width: 4px !important;
        }

        .business-service-main h2 {
            font-size: 28px !important;
        }

        .business-service-main h4 {
            font-size: 18px !important;
        }

        .business-service-main p {
            font-size: 14px !important;
            line-height: 1.7 !important;
        }
}

@media (max-width: 575px) {

    .business-service-main {
        padding: 45px 15px !important;
    }

        .business-service-main h2 {
            font-size: 26px !important;
        }

        .business-service-main h4 {
            font-size: 17px !important;
        }

        .business-service-main .expert-icon {
            width: 54px !important;
            height: 54px !important;
            font-size: 20px !important;
        }

    .card {
        background: #fff;
        padding: 5px;
        text-align: justify !important;
    }

}

.payment-summary-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}

.payment-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

    .payment-summary-row strong {
        font-size: 18px;
        color: #222;
    }

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.payment-logo {
   
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
}

    .payment-logo img {
        max-width: 100%;
        max-height: 28px;
        object-fit: contain;
    }

.payment-secure-note {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .payment-secure-note i {
        color: #198754;
        font-size: 14px;
    }


@media(max-width:768px) {
    .auth-left .lead-text {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 0rem;
        position: relative;
        z-index: 1;
        line-height: 1.6;
    }

    .fm-card {
        padding: 0px !important;
        border: none !important;
        box-shadow: none !important
    }

    .section-subtitle {
        margin-bottom: 20px !important;
    }

    .order1{
        order: 1;
    }

    .order2 {
        order: 2;
        margin-top: 25px !important;
    }

    .col-lg-6{
        margin-top: 25px !important;
    }

    .mobile-bottom-nav a i{
        font-size: 0.9rem;
    }
}