

    /* Color Variables */
    :root {
        --construction-blue: #1e40af;
        --construction-orange: #ea580c;
        --construction-navy: #1e293b;
        --construction-gray: #64748b;
        --construction-light: #f8fafc;
    }

    /* Background Gradients */
    .construction-gradient {
        background: linear-gradient(135deg, var(--construction-blue) 0%, var(--construction-navy) 100%);
    }

    .construction-accent-gradient {
        background: linear-gradient(135deg, var(--construction-orange) 0%, #dc2626 100%);
        border: none;
    }

    .bg-construction-light {
        background-color: var(--construction-light);
    }

    /* Typography */
    .text-construction-blue {
        color: var(--construction-blue) !important;
    }

    .text-construction-orange {
        color: #1e3a8a !important;
    }

    .text-construction-navy {
        color: var(--construction-navy) !important;
    }

    .text-construction-gray {
        color: var(--construction-gray) !important;
    }


    .hero-icon {
        font-size: 4rem;
        display: block;
    }

    /* Section Spacing */
    .section-full {
        position: relative;
    }

    /* Stats */
    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--construction-gray);
        font-size: 1rem;
        font-weight: 500;
    }

    /* Cards */
    .benefit-card {
        border: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .benefit-icon {
        font-size: 2.5rem;
        display: block;
    }

    /* Buttons */
    .btn-primary {
        background: var(--construction-blue);
        border-color: var(--construction-blue);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background: var(--construction-navy);
        border-color: var(--construction-navy);
        transform: translateY(-2px);
    }

    .construction-accent-gradient:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    /* Accordion Styles */
    .accordion-button {
        font-weight: 600;
        color: var(--construction-navy);
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--construction-light);
        color: var(--construction-blue);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
    }



     @media (max-width: 768px) {
        .hero-section {
            padding: 80px 0;
        }

        .hero-icon {
            font-size: 3rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .display-2 {
            font-size: 2.5rem;
        }

        .display-4 {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            padding: 60px 0;
        }

        .stat-number {
            font-size: 2rem;
        }

        .display-2 {
            font-size: 2rem;
        }

        .benefit-icon {
            font-size: 2rem;
        }
    }

    /* Custom Utility Classes */
    .hover-lift {
        transition: transform 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
    }

    btn:focus,
    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
    }

    /* Loading Animation */
    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    .pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    /* Background Patterns */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Enhanced Card Shadows */
    .card-shadow {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .card-shadow:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    /* Border Utilities */
    .border-construction-blue {
        border-color: var(--construction-blue) !important;
    }

    .border-construction-orange {
        border-color: var(--construction-orange) !important;
    }

    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, var(--construction-blue) 0%, var(--construction-orange) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Enhanced Interactive Elements */
    .interactive-element {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .interactive-element:hover {
        transform: scale(1.05);
    }


    .req-box {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .req-box h4 {
        color: #000;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600
    }

    .req-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        font-size: 0.95rem;
        color: #696969;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        color: #fff;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Theme Colors */
    .basic .icon-circle {
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        /* Orange */
    }

    .preferred .icon-circle {
        background: linear-gradient(to right, #2563eb, #1d4ed8)
    }

    .coverage-section {
        padding: 60px 0;
        background: #f8fafc
    }

    .coverage-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 15px 0;
        border-bottom: 1px solid #eaeaea;
    }

    .coverage-item:last-child {
        border-bottom: none;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #fff;
        flex-shrink: 0;
        background: linear-gradient(to right, #2563eb, #1d4ed8)
    }

    .coverage-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1d4ed8;
    }

    .coverage-deals {
        font-weight: 700;
        margin-top: 5px;
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-step .icon-wrapper {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        color: #fff;
    }

    .process-step .step-number {
        position: absolute;
        top: 5px;
        right: 35%;
        background: #fff;
        ;
        color: #1d4ed8;
        font-weight: bold;
        font-size: 0.8rem;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 28%);
    }

    .process-step p {
        font-size: 16px;
        line-height: 24px;
        color: #696969;
    }

    /* Timeline Layout */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: auto;
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #e0e6f0;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }

    .timeline-item {
        padding: 20px 30px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 50%;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 22px;
        right: 3px;
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        top: 25px;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-item.right::after {
        left: -25px;
    }

    .timeline-content {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    .timeline-content p {
        color: #696969;
        line-height: 1.6;
    }

    .highlight {
        font-weight: 700;
        color: #0b3d91;
    }

    .stats-box {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 45%;
        background: #f9fafb;
        margin: 5px;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }

    .stats-box small {
        display: block;
        color: #696969;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .stat h4 {
        margin: 0;
        font-weight: bold;
    }

    /* .stat.blue { color: #0b3d91; }
    .stat.orange { color: #ff6b35; } */
    .quote {
        font-style: italic;
        margin-top: 20px;
        color: #444;
    }

    .quote-author {
        font-weight: 600;
        margin-top: 5px;
        color: #0b3d91;
    }

