   /* CSS variables strictly maintaining the premium corporate palette */
        :root {
            --navy-dark: #031A44;
            --navy-light: #0d2a5c;
            --navy-pale: #f0f4fc;
            --orange-primary: #FF6A00;
            --orange-hover: #e05c00;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --text-dark: #1e293b;
            --text-muted: #64748b;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--navy-dark);
        }

        /* Custom Utility Classes (Zero Inline Styling policy) */
        .bg-navy-dark { background-color: var(--navy-dark); }
        .bg-navy-light { background-color: var(--navy-light); }
        .bg-navy-pale { background-color: var(--navy-pale); }
        .bg-orange { background-color: var(--orange-primary); }
        .text-orange { color: var(--orange-primary); }
        .text-navy { color: var(--navy-dark); }

        /* Premium Buttons */
        .btn-custom-orange {
            background-color: var(--orange-primary);
            color: var(--white);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
        }

        .btn-custom-orange:hover {
            background-color: var(--orange-hover);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
        }

        .btn-outline-navy {
            border: 2px solid var(--navy-dark);
            color: var(--navy-dark);
            background-color: transparent;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-outline-navy:hover {
            background-color: var(--navy-dark);
            color: var(--white);
        }

        /* Floating/Sticky Action Button matching model.png */
        .sticky-enquire-btn {
            position: fixed;
            right: 0;
            top: 45%;
            transform: rotate(-90deg) translateX(50%);
            transform-origin: right bottom;
            background-color: var(--orange-primary);
            color: var(--white) !important;
            padding: 12px 24px;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 0.85rem;
            border-radius: 8px 8px 0 0;
            z-index: 1050;
            text-decoration: none;
            box-shadow: -4px 0 15px rgba(0,0,0,0.15);
            transition: background 0.3s ease, padding 0.3s ease;
        }

        .sticky-enquire-btn:hover {
            background-color: var(--orange-hover);
            padding-bottom: 28px;
        }

        /* Navigation Styles */
        .custom-navbar {
            background-color: var(--white);
            box-shadow: 0 4px 20px rgba(3, 26, 68, 0.05);
            transition: all 0.3s ease;
            padding: 12px 0;
        }

        .nav-link {
            font-weight: 600;
            color: var(--navy-dark) !important;
            font-size: 0.95rem;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--orange-primary) !important;
        }

        /* Submenu Dropdown customization matching model.png */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(3, 26, 68, 0.15);
            border-radius: 12px;
            padding: 15px;
            background-color: var(--white);
        }

        .dropdown-item {
            font-weight: 600;
            color: var(--navy-dark);
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background-color: var(--navy-pale);
            color: var(--orange-primary);
        }

        .nav-phone-btn {
            background-color: var(--navy-dark);
            color: var(--white) !important;
            border-radius: 50px;
            padding: 10px 24px !important;
            box-shadow: 0 4px 12px rgba(3, 26, 68, 0.15);
            transition: all 0.3s ease;
        }

        .nav-phone-btn:hover {
            background-color: var(--orange-primary);
            box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
            transform: translateY(-1px);
			color:#fff!important;
        }

        /* Hero Carousel Section Styling */
        .hero-carousel-container {
            position: relative;
            width: 100%;
            background-color: var(--navy-dark);
        }

        .hero-slide {
            height: 680px;
            min-height: 550px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* High contrast gradient overlay over the carousel images */
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(125deg, rgba(3, 26, 68, 0.95) 0%, rgba(3, 26, 68, 0.6) 50%, rgba(3, 26, 68, 0.3) 100%);
            z-index: 1;
        }

        .hero-slide-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            color: var(--white);
            padding-bottom: 120px; /* offset space for floating eligibility form */
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--white);
        }

        .hero-title span {
            color: var(--orange-primary);
        }

        .hero-badge-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hero-badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            padding: 14px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-badge-item i {
            font-size: 1.4rem;
            color: var(--orange-primary);
        }

        .hero-badge-item span {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--white);
        }

        /* Animation effects inside slider */
        .carousel-item .hero-title,
        .carousel-item .lead,
        .carousel-item .hero-badge-container,
        .carousel-item .d-flex {
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .carousel-item.active .hero-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .carousel-item.active .lead {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .carousel-item.active .hero-badge-container {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .carousel-item.active .d-flex {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        /* Custom Carousel Control Buttons */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 0.7;
            z-index: 10;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-control-icon-wrap {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .carousel-control-icon-wrap:hover {
            background-color: var(--orange-primary);
            border-color: var(--orange-primary);
        }

        /* Custom Indicators */
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--white);
            opacity: 0.5;
            margin: 0 6px;
            border: none;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: var(--orange-primary);
            transform: scale(1.25);
        }

        /* Floating Eligibility Wrapper */
        .eligibility-wrapper {
            margin-top: -85px;
            position: relative;
            z-index: 20;
        }

        .eligibility-container {
            background-color: var(--navy-dark);
            color: var(--white);
            border-radius: 16px;
            padding: 35px 40px;
            box-shadow: 0 15px 40px rgba(3, 26, 68, 0.25);
        }

        .eligibility-container h4 {
            color: var(--white);
            font-size: 1.6rem;
            font-weight: 700;
        }

        .eligibility-container .form-control,
        .eligibility-container .form-select {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 14px 16px;
            border-radius: 8px;
        }

        .eligibility-container .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .eligibility-container .form-control:focus,
        .eligibility-container .form-select:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--orange-primary);
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.25);
            color: var(--white);
        }

        .eligibility-container .form-select option {
            background-color: var(--navy-dark);
            color: var(--white);
        }

        /* Service Cards styling matching model.png */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header {
            font-size: 2.4rem;
            font-weight: 800;
            position: relative;
            display: block;
            padding-bottom: 15px;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--orange-primary);
            border-radius: 2px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid rgba(3, 26, 68, 0.06);
            border-radius: 16px;
            padding: 40px 10px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--orange-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(3, 26, 68, 0.08);
            border-color: rgba(3, 26, 68, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon-circle {
            width: 80px;
            height: 80px;
            background-color: var(--navy-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
            transition: all 0.4s ease;
        }

        .service-icon-circle i {
            font-size: 2rem;
            color: var(--navy-dark);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon-circle {
            background-color: var(--orange-primary);
        }

        .service-card:hover .service-icon-circle i {
            color: var(--white);
            transform: scale(1.1);
        }

        /* Why Choose Us & Process Section */
        .why-choose-us-card {
            background-color: var(--navy-dark);
            color: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 15px 40px rgba(3, 26, 68, 0.15);
            height: 100%;
        }

        .why-choose-us-card h3 {
            color: var(--white);
            font-weight: 800;
        }

        .why-list-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .why-list-item:last-child {
            margin-bottom: 0;
        }

        .why-icon-box {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-icon-box i {
            font-size: 1.3rem;
            color: var(--orange-primary);
        }

        .why-list-item h5 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        /* 5-Step Progress Flow matching model.png */
        .process-flow {
            position: relative;
        }

        .process-step {
            position: relative;
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            border: 1px solid rgba(3, 26, 68, 0.05);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: var(--orange-primary);
            transform: translateY(-2px);
        }

        .process-num {
            width: 45px;
            height: 45px;
            background-color: var(--orange-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        /* Document Checklist tab switcher design */
        .doc-tab-btn {
            border: 1px solid rgba(3, 26, 68, 0.15);
            background: var(--white);
            color: var(--navy-dark);
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            margin: 5px;
        }

        .doc-tab-btn.active, .doc-tab-btn:hover {
            background-color: var(--navy-dark);
            color: var(--white);
            border-color: var(--navy-dark);
        }

        /* Stats Strip Styling matching model.png footer metrics */
        .stats-strip {
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
            color: var(--white);
            padding: 60px 0;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--orange-primary);
            margin-bottom: 5px;
        }

        /* Contact Form Workspace Layout */
        .contact-info-block {
            background: var(--navy-pale);
            border-radius: 20px;
            padding: 45px;
            height: 100%;
        }

        .contact-method-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background-color: var(--white);
            color: var(--orange-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(3, 26, 68, 0.05);
        }

        /* Footer Styling */
        .footer-top {
            background-color: #02112d;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px 0;
        }

        .footer-heading {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--orange-primary);
        }

        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 12px;
        }

        .footer-link:hover {
            color: var(--orange-primary);
            transform: translateX(4px);
        }
		
		
		.footer-links li a{
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 12px;
        }

        .footer-links li a:hover {
            color: var(--orange-primary);
            transform: translateX(4px);
        }

        .footer-bottom {
            background-color: #010a1b;
            color: rgba(255,255,255,0.5);
            padding: 25px 0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Custom alert replacement (Never trigger standard alert blockades) */
        .custom-popup-alert {
            display: none;
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 2000;
            background-color: var(--navy-dark);
            color: var(--white);
            border-left: 5px solid var(--orange-primary);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 20px 25px;
            max-width: 400px;
            animation: slideInLeft 0.4s ease forwards;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @media (max-width: 991px) {
            .hero-slide {
                height: 580px;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .eligibility-wrapper {
                margin-top: -40px;
            }
        }
		
		
		
		 .jj-wp-container {
        font-family: 'Inter', sans-serif;
        color: #1e293b;
        background-color: #ffffff;
        --navy-dark: #031A44;
        --navy-light: #0d2a5c;
        --navy-pale: #f0f4fc;
        --orange-primary: #FF6A00;
        --orange-hover: #e05c00;
        --white: #ffffff;
        --text-dark: #1e293b;
        --text-muted: #64748b;
    }

    .jj-wp-container h1, 
    .jj-wp-container h2, 
    .jj-wp-container h3, 
    .jj-wp-container h4, 
    .jj-wp-container h5, 
    .jj-wp-container h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--navy-dark);
    }

    .jj-wp-container .bg-navy-dark { background-color: var(--navy-dark) !important; }
    .jj-wp-container .bg-navy-light { background-color: var(--navy-light) !important; }
    .jj-wp-container .bg-navy-pale { background-color: var(--navy-pale) !important; }
    .jj-wp-container .bg-orange { background-color: var(--orange-primary) !important; }
    .jj-wp-container .text-orange { color: var(--orange-primary) !important; }
    .jj-wp-container .text-navy { color: var(--navy-dark) !important; }

    /* Custom Buttons */
    .jj-wp-container .btn-custom-orange {
        background-color: var(--orange-primary);
        color: var(--white);
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 8px;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
        display: inline-block;
        text-decoration: none;
    }

    .jj-wp-container .btn-custom-orange:hover {
        background-color: var(--orange-hover);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    }

    /* Sticky Action Button for WordPress */
    .sticky-enquire-btn-wp {
        position: fixed;
        right: 0;
        top: 45%;
        transform: rotate(-90deg) translateX(50%);
        transform-origin: right bottom;
        background-color: var(--orange-primary);
        color: var(--white) !important;
        padding: 12px 24px;
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 0.85rem;
        border-radius: 8px 8px 0 0;
        z-index: 9999;
        text-decoration: none;
        box-shadow: -4px 0 15px rgba(0,0,0,0.15);
        transition: background 0.3s ease, padding 0.3s ease;
    }

    .sticky-enquire-btn-wp:hover {
        background-color: var(--orange-hover);
        padding-bottom: 28px;
    }

    /* Inner Page Banner Header */
    .page-header-banner-wp {
        background: linear-gradient(135deg, rgba(3, 26, 68, 0.95) 0%, rgba(13, 42, 92, 0.85) 100%), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
        padding: 80px 0 60px 0;
        color: var(--white);
        position: relative;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .page-header-banner-wp h1 {
        color: var(--white) !important;
        font-size: 2.8rem;
        font-weight: 800;
    }

    /* Section Title Standard */
    .jj-wp-container .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .jj-wp-container .section-header h2 {
        font-size: 2.4rem;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .jj-wp-container .section-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--orange-primary);
        border-radius: 2px;
    }

    /* Leadership Profile & Quote Card */
    .leadership-card {
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(3, 26, 68, 0.08);
        overflow: hidden;
        border: 1px solid rgba(3, 26, 68, 0.06);
		padding:40px 40px;
		width:80%;
		margin:0 auto;
    }

    .leadership-quote {
        background-color: var(--navy-pale);
        border-left: 5px solid var(--orange-primary);
        padding: 25px;
        border-radius: 0 12px 12px 0;
    }

    /* Vision & Mission Cards */
    .vm-card {
        background: var(--white);
        border: 1px solid rgba(3, 26, 68, 0.08);
        border-radius: 16px;
        padding: 40px 30px;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 20px rgba(0,0,0,0.02);
		margin-top:24px;
		
		
    }

    .vm-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(3, 26, 68, 0.08);
        border-color: var(--orange-primary);
    }

     .vm-icon {
       
        
        color: var(--orange-primary);
        border-radius: 16px;
        
        font-size: 1.8rem;
        margin-bottom: 24px;
        transition: all 0.3s ease;
		
    }

    .vm-card:hover .vm-icon {
        background-color: var(--orange-primary);
        color: var(--white);
    }

    /* MSME Badge Banner */
    .jj-wp-container .msme-banner {
        background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
        color: var(--white);
        border-radius: 20px;
        padding: 45px;
        box-shadow: 0 15px 40px rgba(3, 26, 68, 0.2);
        position: relative;
        overflow: hidden;
    }

    .jj-wp-container .msme-badge-tag {
        background-color: var(--orange-primary);
        color: var(--white);
        font-weight: 700;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    /* Timeline / Journey Section */
    .jj-wp-container .timeline-box {
        position: relative;
        padding-left: 35px;
        margin-bottom: 30px;
        border-left: 3px solid var(--navy-pale);
    }

    .jj-wp-container .timeline-box::before {
        content: '';
        position: absolute;
        left: -9px;
        top: 0;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--orange-primary);
        box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.2);
    }

    /* Stats Strip */
    .jj-wp-container .stats-strip {
        background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
        color: var(--white);
        padding: 50px 0;
        border-radius: 20px;
    }

    .jj-wp-container .stat-box {
        text-align: center;
    }

    .jj-wp-container .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--orange-primary);
        margin-bottom: 5px;
    }

    /* Custom Popup Notification */
    .custom-popup-alert-wp {
        display: none;
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 10000;
        background-color: var(--navy-dark);
        color: var(--white);
        border-left: 5px solid var(--orange-primary);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        padding: 20px 25px;
        max-width: 400px;
        animation: slideInLeftWP 0.4s ease forwards;
    }

    @keyframes slideInLeftWP {
        from { transform: translateX(-100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
	
	
	.subtitle{
	display: block;
    color: #FF6A00!important;      /* Same as Bootstrap's text-orange (adjust if needed) */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    letter-spacing: 1px;	
	}
	
	.innercontent p{
		
		 color: #6c757d;      /* Bootstrap text-muted */
    margin-bottom: 1rem; /* Bootstrap mb-3 */
    font-size: 1rem;     /* Bootstrap fs-6 */
		
	}
	
	
	.vms-box {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    border: 1px solid #dee2e6;
}

.title-text {
    font-weight: 700;
    color: #0b1f4d; /* Navy */
    margin-bottom: 0.5rem;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
    display: block;
}



/* Loan Content Typography */
.loan-content h4 {
    font-weight: 700;              /* fw-bold */
    color: #0f2d52;                /* text-navy */
    margin-bottom: 1rem;           /* mb-3 */
}

.loan-content h6 {
    font-weight: 700;              /* fw-bold */
    color: #0f2d52;                /* text-navy */
    margin-bottom: 1rem;           /* mb-3 */
}

.loan-content p {
    color: #6c757d;                /* text-muted */
    font-size: 0.875rem;           /* small */
    margin-bottom: 1.5rem;         /* mb-4 */
    line-height: 1.6;
}

/* Loan Checklist */
.loan-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.loan-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

.loan-content li:last-child {
    margin-bottom: 0;
}

.loan-content li::before {
    content: "\f14a";              /* fa-check-square */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 15px;
}



.inner-section-header {
            text-align: left;
            margin-bottom: 50px;
        }

        .inner-section-header {
            font-size: 2.4rem;
            font-weight: 800;
            position: relative;
            display: block;
            padding-bottom: 15px;
			padding-left:0px;
			margin-left:0px!important;
        }

        .inner-section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            
            width: 80px;
            height: 4px;
            background-color: var(--orange-primary);
            border-radius: 2px;
        }
		
		
		
		/* ==========================
   Sidebar Links
========================== */

.sidebar-links {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(3, 26, 68, 0.08);
}

.sidebar-links .list-group-item {
    padding: 0;
    border: none;
    border-bottom: 1px solid rgba(3, 26, 68, 0.08);
    background: var(--white);
    transition: all 0.3s ease;
}

.sidebar-links .list-group-item:last-child {
    border-bottom: none;
}

.sidebar-links .list-group-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Chevron Icon */
.sidebar-links .list-group-item a i {
    color: var(--orange-primary);
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Hover */
.sidebar-links .list-group-item:hover {
    background: var(--navy-pale);
}

.sidebar-links .list-group-item:hover a {
    color: var(--orange-primary);
    padding-left: 25px;
}

.sidebar-links .list-group-item:hover i {
    transform: translateX(5px);
    color: var(--orange-primary);
}

/* Active Item */
.sidebar-links .list-group-item.active {
    background: var(--navy-dark);
}

.sidebar-links .list-group-item.active a {
    color: var(--white);
    font-weight: 700;
}

.sidebar-links .list-group-item.active a i {
    color: var(--orange-primary);
}

/* Focus */
.sidebar-links .list-group-item a:focus {
    outline: none;
    box-shadow: inset 4px 0 0 var(--orange-primary);
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar-links .list-group-item a {
        padding: 14px 18px;
        font-size: 14px;
    }
}


 .wp-block-columns{
    margin-top: 10px!important;
    margin-bottom: 10px!important;
	padding-top:10px!important;
	padding-bottom:10px!important;
	
}

.top-btn {
    width: 48px;
    height: 48px;
    z-index: 1040;
    padding: 0;
    display: none;
}


/* --- Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-dark); /* Matches brand background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Higher than sticky buttons and modals */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 55px;
    height: 55px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-top: 5px solid var(--orange-primary); /* Brand accent color */
    border-radius: 50%;
    animation: spinLoader 0.9s linear infinite;
}

.loader-text {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 18px;
    text-transform: uppercase;
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Feature Highlight Cards Section */
        .highlights-section {
            background-color: var(--navy-pale);
            padding: 60px 0;
        }

        .highlight-card {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 25px rgba(3, 26, 68, 0.05);
            border: 1px solid rgba(3, 26, 68, 0.08);
            transition: all 0.35 ease;
            position: relative;
            overflow: hidden;
			
        }

        .highlight-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 35px rgba(255, 106, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .highlight-icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
            color: var(--orange-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 18px auto;
            transition: all 0.3s ease;
        }

        .highlight-card:hover .highlight-icon-box {
            background: var(--orange-primary);
            color: var(--white);
            transform: scale(1.1);
        }

        .highlight-card h5 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .highlight-badge {
            display: inline-block;
            background-color: rgba(255, 106, 0, 0.12);
            color: var(--orange-primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.service-card a{
text-decoration:none!important;
	

}

.vm-icon svg{
	font-size:12px!important;
	width:20px!important;
	
	
	
}