/* Index Page CSS File */

/* Home Core CSS Start Here */
/* Hero Section CSS Start Here */
/* Hero Section - refreshed layout keeping the same content and theme */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            110deg,
            rgba(15, 23, 42, 0.86) 0%,
            rgba(15, 23, 42, 0.76) 42%,
            rgba(15, 23, 42, 0.64) 100%
        ),
        url('../assets/hero_section2.png') center center / cover no-repeat;
}

.hero-section.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(1000px 520px at 8% 12%, rgba(200, 16, 46, 0.2), transparent 58%),
        radial-gradient(720px 360px at 90% 88%, rgba(200, 16, 46, 0.14), transparent 65%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.45));
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 3.05rem);
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: clamp(1rem, 0.94vw, 1.02rem);
    font-weight: 500;
    opacity: 0.94;
    margin-bottom: 18px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.95);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.56);
    color: #ffffff;
    padding: 6px 13px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.verified-badge .badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    font-weight: 700;
    padding: 4px 9px;
    font-size: 0.74rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 540px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.stat-item {
    padding: 10px 9px;
    text-align: center;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: clamp(1.03rem, 1.24vw, 1.42rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.stat-label {
    margin-top: 4px;
    display: block;
    font-size: 0.77rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}

.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px;
}

.hero-buttons .btn {
    white-space: nowrap;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 9px 20px;
    font-weight: 700;
    font-size: 0.86rem;
    box-shadow: 0 10px 26px rgba(220, 38, 38, 0.32);
}

.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.38);
}

.hero-section .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    font-size: 0.86rem;
    padding: 9px 20px;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color:white;
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.58);
}

.journey-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 26px rgba(220, 38, 38, 0.32);
    padding: 18px;
}
.journey-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.38);
}

.view-all-theme-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(220, 38, 38, 0.32);
}

.view-all-theme-btn:hover,
.view-all-theme-btn:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.38);
}

.form-card {
    background: #ffffff;
    border-radius: 17px;
    padding: 18px 16px;
    box-shadow: 0 24px 44px rgba(2, 6, 23, 0.28);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.form-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.form-subtitle {
    color: #475569;
    font-size: 0.78rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 9px;
}

.form-label {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-control {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.82rem;
    transition: all 0.25s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.11);
    background: #ffffff;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.36);
}

.security-note {
    text-align: center;
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 8px;
}

/* Messages */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(209, 250, 229, 0.95);
    color: #065f46;
    border: 1px solid rgba(167, 243, 208, 0.9);
}

.alert-danger {
    background: rgba(254, 226, 226, 0.95);
    color: #991b1b;
    border: 1px solid rgba(254, 202, 202, 0.9);
}

    /* Hero Section CSS End Here */

    /* Existing styles for other sections */
    /* How It Works specific styles */
    .how-it-works-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #f1f5f9;
    }

    .how-it-works-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.12) !important;
    }

    .step-number {
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* Glass Card for Form */
    .glass-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        position: relative;
        z-index: 1;
    }

    /* Floating Labels Styling */
    .form-floating > .form-control {
        border-color: #e2e8f0;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .form-floating > .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
    }

    .gradient-text {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        margin: 0 auto 15px;
        transition: transform 0.3s ease;
    }

    .card-hover {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #f1f5f9;
    }
    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(200, 16, 46, 0.08) !important;
        border-color: rgba(200, 16, 46, 0.2);
    }
    .card-hover:hover .feature-icon-box {
        transform: scale(1.1);
    }

    /* Section Divider */
    .section-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        margin: 2rem 0;
    }
    
    /* Badge Styles using Root Variables */
    .badge.bg-success {
        background-color: #10b981 !important;
    }

    /* Border Color using Root Variables */
    .border-primary {
        border-color: var(--primary-color) !important;
    }

    .border-success {
        border-color: #10b981 !important;
    }

    .border-warning {
        border-color: #f59e0b !important;
    }

    /* Text Color using Root Variables */
    .text-primary {
        color: var(--primary-color) !important;
    }

    /* Background Color using Root Variables */
    .bg-primary {
        background-color: var(--primary-color) !important;
    }

    .bg-primary.bg-opacity-10 {
        background-color: rgba(200, 16, 46, 0.1) !important;
    }

    /* Button Styles using Root Variables */
    .btn-outline-primary {
        --bs-btn-color: var(--primary-color);
        --bs-btn-border-color: var(--primary-color);
        --bs-btn-hover-color: #ffffff;
        --bs-btn-hover-bg: var(--primary-color);
        --bs-btn-hover-border-color: var(--primary-color);
        --bs-btn-focus-shadow-rgb: 11, 8, 27;
        --bs-btn-active-color: #ffffff;
        --bs-btn-active-bg: var(--primary-dark);
        --bs-btn-active-border-color: var(--primary-dark);
        --bs-btn-disabled-color: var(--primary-color);
        --bs-btn-disabled-border-color: var(--primary-color);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

    .btn-outline-primary:active,
    .btn-outline-primary.active,
    .btn-check:checked + .btn-outline-primary,
    .btn-check:active + .btn-outline-primary,
    .show > .btn-outline-primary.dropdown-toggle {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #ffffff;
    }

    /* Alert Styles */
    .alert-success {
        background-color: #d1fae5;
        border-color: #10b981;
        color: #065f46;
    }

    .alert-danger {
        background-color: #fee2e2;
        border-color: #ef4444;
        color: #991b1b;
    }

    /* Animations */
    .animate-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
    .animate-delay-1 { animation-delay: 0.2s; }
    .animate-delay-2 { animation-delay: 0.4s; }
    
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Why Choose Us Section Styles */
    .why-choose-section {
        position: relative;
        background-attachment: fixed;
    }
    
    .why-choose-card {
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .why-choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
        border-color: rgba(200, 16, 46, 0.2);
    }
    
    .why-choose-icon {
        transition: transform 0.3s ease;
    }
    
    .why-choose-card:hover .why-choose-icon {
        transform: scale(1.1);
    }
    
    /* EMI Calculator */
    .emi-section .emi-card {
        border: 1px solid #f1f5f9;
    }

    .emi-input-card {
        background: #f8fafc;
        border-radius: 18px;
        padding: 22px;
        border: 1px solid #e2e8f0;
    }

    .emi-result-card {
        background: #f9fafb;
        border-radius: 18px;
        padding: 22px;
        border: 1px solid #e5e7eb;
    }

    .emi-highlight {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(200, 16, 46, 0.25);
    }

    .emi-section .form-range::-webkit-slider-thumb {
        background: var(--primary-color);
    }

    .emi-section .form-range::-moz-range-thumb {
        background: var(--primary-color);
        border: none;
    }

    .emi-section .form-range::-webkit-slider-runnable-track {
        height: 6px;
        background: #e5e7eb;
        border-radius: 999px;
    }

    .emi-section .form-range::-moz-range-track {
        height: 6px;
        background: #e5e7eb;
        border-radius: 999px;
    }

    .emi-section .form-range::-webkit-slider-thumb {
        margin-top: -5px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .emi-section .form-range::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .emi-action-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #ffffff;
        border: none;
        font-weight: 700;
        box-shadow: 0 10px 26px rgba(220, 38, 38, 0.32);
        text-decoration: none;
    }

    .emi-action-btn:hover,
    .emi-action-btn:focus {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(220, 38, 38, 0.38);
    }

    .emi-action-btn:active {
        transform: translateY(0);
    }

    /* FAQ */
    .faq-section {
        position: relative;
        background: #ffffff;
        overflow: hidden;
    }

    .faq-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(360px 220px at 12% 20%, rgba(200, 16, 46, 0.08), transparent),
            radial-gradient(320px 200px at 88% 80%, rgba(200, 16, 46, 0.06), transparent),
            repeating-linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0 1px, transparent 1px 10px);
        opacity: 0.6;
        pointer-events: none;
    }

    .faq-panel {
        position: relative;
        z-index: 1;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        background: #ffffff;
        padding: 28px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .faq-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(200, 16, 46, 0.1);
        color: var(--primary-color);
        font-weight: 700;
        font-size: 0.78rem;
    }

    .faq-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    .faq-stat {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 14px;
        text-align: left;
    }

    .faq-stat h5 {
        margin: 0 0 4px 0;
        font-weight: 800;
        color: #0f172a;
    }

    .faq-stat span {
        font-size: 0.85rem;
        color: #64748b;
    }

    .faq-section .accordion-item {
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        overflow: hidden;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        background: #ffffff;
    }

    .faq-section .accordion-item:hover {
        border-color: rgba(200, 16, 46, 0.25);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    .faq-section .accordion-button {
        padding: 18px 22px;
        position: relative;
        background: #ffffff;
        font-weight: 600;
    }

    .faq-section .accordion-button:not(.collapsed) {
        color: var(--primary-color);
        background: rgba(200, 16, 46, 0.08);
        box-shadow: none;
    }

    .faq-section .accordion-button::after {
        background-image: none;
        content: '+';
        font-weight: 800;
        color: var(--primary-color);
        font-size: 1.2rem;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .faq-section .accordion-button:not(.collapsed)::after {
        content: '–';
    }

    .faq-section .accordion-body {
        background: #fafafa;
        border-top: 1px solid #eef2f7;
        padding: 18px 22px;
    }


    /* Mobile Responsive */
    @media (max-width: 768px) {
        .why-choose-section {
            background-attachment: scroll;
        }
        
        .hero-section {
            min-height: auto;
            padding: 60px 0 32px;
        }
        
        .hero-title {
            font-size: 1.68rem;
        }
        
        .hero-stats {
            max-width: 100%;
            margin-bottom: 16px;
        }
        
        .stat-item {
            padding: 8px 8px;
        }
        
        .stat-number {
            font-size: 1.08rem;
        }
        
        .form-card {
            margin-top: 14px;
            padding: 15px 13px;
        }
        
        /* Mobile buttons - stack vertically */
        .hero-buttons {
            flex-direction: column !important;
            gap: 12px;
        }
        
        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.45rem;
        }
        
        .hero-subtitle {
            font-size: 0.82rem;
        }
        
        .form-card {
            padding: 13px 11px;
        }
        
        .hero-stats {
            grid-template-columns: 1fr;
            border-radius: 14px;
        }
        
        .stat-item:not(:last-child) {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .stat-number {
            font-size: 0.98rem;
        }

        .hero-section .btn-primary,
        .hero-section .btn-outline-light {
            font-size: 0.8rem;
            padding: 8px 15px;
        }
    }

    /* CTA Section */
    .cta-section {
        position: relative;
        background: #ffffff;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(300px 180px at 10% 20%, rgba(200, 16, 46, 0.12), transparent),
            radial-gradient(260px 160px at 90% 80%, rgba(200, 16, 46, 0.08), transparent),
            repeating-linear-gradient(45deg, rgba(200, 16, 46, 0.04) 0 2px, transparent 2px 10px);
        opacity: 0.6;
        pointer-events: none;
    }

    .cta-card {
        position: relative;
        z-index: 1;
        background: #ffffff;
        border: 1px solid #f1f5f9;
        border-radius: 24px;
        padding: 44px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    .cta-title {
        font-size: 2.1rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111827;
    }

    .cta-subtitle {
        font-size: 1.05rem;
        color: #6b7280;
        margin-bottom: 0;
    }

    .cta-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #ffffff;
        border: none;
        padding: 12px 26px;
        font-weight: 700;
        border-radius: 999px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 12px 24px rgba(200, 16, 46, 0.25);
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        color: #ffffff;
        box-shadow: 0 16px 30px rgba(200, 16, 46, 0.35);
    }

    .cta-outline {
        border: 2px solid rgba(200, 16, 46, 0.3);
        color: var(--primary-color);
        padding: 10px 22px;
        border-radius: 999px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        margin-left: 10px;
    }

    .cta-float {
        position: absolute;
        z-index: 0;
        opacity: 0.18;
        color: var(--primary-color);
        animation: floatY 6s ease-in-out infinite;
    }

    .cta-float.float-1 {
        top: 20%;
        left: 6%;
        font-size: 48px;
    }

    .cta-float.float-2 {
        bottom: 18%;
        right: 8%;
        font-size: 56px;
        animation-delay: 1.5s;
    }

    @keyframes floatY {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }


    /* why choose us section start here  */
       /* Unique Light Glassmorphism Design */
.ud-cap-feature-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

/* The semi-transparent light overlay */
.ud-cap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.ud-cap-container {
    position: relative;
    z-index: 2;
}

.ud-cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.ud-cap-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ud-cap-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(200, 16, 46, 0.15);
    border-color: #c8102e;
}

.ud-cap-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2a0a77;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ud-cap-card:hover .ud-cap-icon-wrapper {
    background: #c8102e;
    color: #ffffff;
    transform: scale(1.1);
}

.ud-cap-h5 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.ud-cap-p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Aesthetic accent line */
.ud-cap-accent {
    width: 50px;
    height: 4px;
    background: #c8102e;
    margin-bottom: 20px;
    border-radius: 2px;
}
    
    /* why choose us section end here  */
/* Home Core CSS End Here */

/* Testimonials Section CSS Start Here */
.partner-stories-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(11, 8, 27, 0.12), transparent 36%),
        radial-gradient(circle at 88% 85%, rgba(16, 11, 44, 0.1), transparent 32%),
        linear-gradient(135deg, #f6f7fb 0%, #ffffff 50%, #f2f4fb 100%);
    border-top: 1px solid rgba(11, 8, 27, 0.14);
    border-bottom: 1px solid rgba(11, 8, 27, 0.14);
}

.testimonial-section-title {
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

.testimonial-section-subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.testimonial-display {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: testimonialFade 0.45s ease-in-out;
}

@keyframes testimonialFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-row {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 8, 27, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(11, 8, 27, 0.1);
    overflow: hidden;
}

.testimonial-image-wrapper {
    height: 320px;
    overflow: hidden;
    background: #d1d5db;
    margin-right: 0;
}

.testimonial-image {
    width: 100%;
    height: 320px;
    object-fit: fill;
    object-position: center;
}

.testimonial-placeholder-image {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content-wrapper {
    min-height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(11, 8, 27, 0.02) 0%, rgba(11, 8, 27, 0.06) 100%);
    padding: 18px 20px 18px 28px !important;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author-chip {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author-image,
.testimonial-author-fallback {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 8, 27, 0.12);
    color: var(--primary-color);
    font-size: 1.3rem;
}

.testimonial-author-meta h5 {
    margin: 0 0 4px;
    font-size: 1.28rem;
    color: #1f2937;
    font-weight: 700;
}

.testimonial-author-meta p {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
}

.testimonial-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 52px;
}

.testimonial-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(11, 8, 27, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}

.dot:hover,
.dot.active {
    background: var(--primary-color);
}

.dot.active {
    background: var(--primary-color);
}

.testimonial-arrows {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(11, 8, 27, 0.35);
    font-size: 1.4rem;
}

.arrow:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

@media (max-width: 768px) {
    .testimonial-section-subtitle {
        font-size: 1.25rem;
    }

    .testimonial-image-wrapper,
    .testimonial-image,
    .testimonial-placeholder-image {
        height: 230px;
        margin-right: 0;
        margin-bottom: 14px;
    }

    .testimonial-content-wrapper {
        min-height: auto;
        padding: 8px 0 !important;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        -webkit-line-clamp: 5;
    }

    .testimonial-author-image,
    .testimonial-author-fallback {
        width: 58px;
        height: 58px;
    }

    .testimonial-author-meta h5 {
        font-size: 1.05rem;
    }

    .testimonial-author-meta p {
        font-size: 0.9rem;
    }

    .testimonial-slider-container {
        padding-bottom: 68px;
    }

    .arrow {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}
/* Testimonials Section CSS End Here */

/* Partner Benefits Network Section CSS Start Here */
.partner-benefits-section {
        position: relative;
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 32%),
            radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.09), transparent 28%),
            linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        overflow: hidden;
    }

    .partner-benefits-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(30deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%, rgba(255, 255, 255, 0.08)),
            linear-gradient(150deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%, rgba(255, 255, 255, 0.08)),
            linear-gradient(90deg, rgba(255, 255, 255, 0.06) 2%, transparent 2.5%, transparent 97%, rgba(255, 255, 255, 0.06) 97.5%, rgba(255, 255, 255, 0.06));
        background-size: 80px 140px;
        background-position: 0 0, 0 0, 40px 70px;
        opacity: 0.3;
        pointer-events: none;
    }

    .partner-benefits-section .container {
        position: relative;
        z-index: 1;
    }

    .benefit-network {
        position: relative;
        max-width: 980px;
        margin: 20px auto 0;
        padding: 10px 0;
    }

    .network-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.72), rgba(255,255,255,0.2));
        border-radius: 99px;
    }

    .network-item {
        position: relative;
        display: flex;
        align-items: center;
        width: 50%;
        margin: 0 0 12px 0;
        z-index: 1;
    }

    .network-item.left {
        margin-right: auto;
        justify-content: flex-end;
        padding-right: 44px;
    }

    .network-item.right {
        margin-left: auto;
        justify-content: flex-start;
        padding-left: 44px;
    }

    .network-item.left::after,
    .network-item.right::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 44px;
        height: 2px;
        background: rgba(255, 255, 255, 0.72);
    }

    .network-item.left::after {
        right: 0;
    }

    .network-item.right::after {
        left: 0;
    }

    .network-node {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid rgba(11, 8, 27, 0.2);
        box-shadow: 0 8px 18px rgba(2, 6, 23, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 2;
    }

    .network-node i {
        font-size: 1.55rem;
        color: var(--primary-color);
    }

    .network-card {
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(11, 8, 27, 0.16);
        border-radius: 16px;
        padding: 14px 16px;
        min-width: 260px;
        max-width: 350px;
        box-shadow: 0 10px 22px rgba(2, 6, 23, 0.16);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .network-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(2, 6, 23, 0.22);
    }

    .network-card h6 {
        margin: 0;
        color: #0f172a;
        font-size: 1rem;
        font-weight: 700;
    }

    .network-card p {
        margin: 6px 0 0;
        font-size: 0.88rem;
        color: #475569;
        line-height: 1.45;
    }

    @media (max-width: 1199.98px) {
        .network-card {
            min-width: 220px;
        }
    }

    @media (max-width: 767.98px) {
        .network-line {
            left: 20px;
            transform: none;
        }

        .network-item,
        .network-item.left,
        .network-item.right {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            justify-content: flex-start;
            padding-left: 54px;
            padding-right: 0;
        }

        .network-item.left::after,
        .network-item.right::after {
            left: 20px;
            width: 34px;
        }

        .network-card {
            min-width: 0;
            width: 100%;
            max-width: 100%;
        }

        .network-node {
            width: 48px;
            height: 48px;
            position: absolute;
            left: -2px;
            top: 50%;
            transform: translateY(-50%);
        }

        .network-node i {
            font-size: 1.2rem;
        }
    }
/* Partner Benefits Network Section CSS End Here */

/* Brands Section CSS Start Here */
.brand-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9 !important;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color) !important;
}

.brand-logo {
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
}

/* Animation for cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#moreBrands .brand-card {
    animation: fadeIn 0.5s ease forwards;
}
/* Brands Section CSS End Here */

/* Latest Blogs Section CSS Start Here */
.blog-home-card {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        border: 1px solid #e2e8f0 !important;
    }
    .blog-home-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12) !important;
    }
/* Latest Blogs Section CSS End Here */

