:root {
    --primary-blue: #030c28;
    --dark-blue: #2D3B69;
    --gradient-start: #3A4A7A;
    --gradient-end: #2D3B69;
    --light-text: #E8EAED;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ===========================nAV Bar Css Start===================== */
.navbar {
    background-color: #303e6d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333 !important;
    font-weight: 600;
    font-size: 1.25rem;
}
.brand-icon {
    width: 32px;
    height: 32px;
    background-color: #00C8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00C8FF !important;
}

.btn-apply {
    background-color: #0D6EFD;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left: 1rem;
}

.btn-apply:hover {
    background-color: #0B5ED7;
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    .btn-apply {
        margin-left: 0;
        margin-top: 1rem;
        display: inline-block;
    }
}
/* ===========================nAV Bar Css End===================== */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(125deg, #4b9fff 46%, #aae0ff  100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.trusted-badge {
    background: rgb(0 0 0 / 21%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    color: #030c28;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #001146;
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 991.98px) {

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .stats-container {
        gap: 2rem;
    }

    .hero-section {
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }
}

@media (max-width: 767.98px) {

    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {

    .hero-title,
    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ========================Section-2 Css Start==================== */
.about-section {
    padding: 4rem 0;
    background-color: #ebebeb;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.main-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007BFF;
    margin: 1rem auto 0;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    margin-top: 2rem;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #030c28;
    margin-bottom: 0.5rem;
}

.stat-label-2 {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .content-heading {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .content-section {
        margin-top: 1.2rem;
    }

    .stats-section {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-heading {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ========================Section-2 Css End==================== */
/* ========================Section-3 Css Start==================== */
.main-container {
    min-height: 100vh;
    padding: 80px 0;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.main-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.loan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;

}

.loan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #aad3ff3f;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #2563eb;
}

.learn-more-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .loan-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .main-container {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.125rem;
    }
}

/* ========================Section-3 Css End==================== */
/* ========================Section-4 Css Start==================== */
.calculator-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.cal-con-bg{
    background-color: #f0f9ff;
}

.main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.form-label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.calculate-btn {
    background-color: #3498db;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.calculate-btn:hover {
    background-color: #2980b9;
}

.loan-summary {
    background-color: #f8fbff;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.summary-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8f4fd;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #2c3e50;
    font-weight: 500;
}

.summary-value {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .loan-summary {
        margin-top: 2rem;
    }
}

/* ========================Section-4 Css End==================== */
/* ========================Section-5 Css Start==================== */
.main-container-5 {
    padding: 80px;
    min-height: auto;
    background: #fff;
}

.section-title-5 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-icon.orange {
    background-color: #fff4e6;
    color: #ff8c00;
}

.step-icon.blue {
    background-color: #e6f3ff;
    color: #0066cc;
}

.step-icon.green {
    background-color: #e6f7e6;
    color: #00cc66;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 300px;
}

.bank-building {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    position: relative;
    margin-right: 2rem;
}

.bank-building::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 20px solid #90caf9;
}

.bank-columns {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    padding: 10px;
}

.column {
    width: 12px;
    background-color: #64b5f6;
    border-radius: 2px;
}

.column:nth-child(1) {
    height: 50px;
}

.column:nth-child(2) {
    height: 60px;
}

.column:nth-child(3) {
    height: 55px;
}

.column:nth-child(4) {
    height: 45px;
}

.mobile-phone {
    width: 80px;
    height: 140px;
    background-color: #333333;
    border-radius: 12px;
    position: relative;
    padding: 8px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rupee-symbol {
    width: 40px;
    height: 40px;
    background-color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.coin:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.coin:nth-child(2) {
    top: 40%;
    right: 20%;
    animation: float 3s ease-in-out infinite 1s;
}

.coin:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .main-container-5 {
        padding: 40px;
    }

    .section-title-5 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .illustration-container {
        margin-top: 3rem;
        min-height: 250px;
    }

    .bank-building {
        width: 100px;
        height: 70px;
        margin-right: 1.5rem;
    }

    .mobile-phone {
        width: 70px;
        height: 120px;
    }

    .rupee-symbol {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .coin {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* ========================Section-5 Css End==================== */
/* ========================Section-6 Css Start==================== */
.insurance-section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2185D5;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 25px;
}

.insurance-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #B3D7F7;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2185D5;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    color: #6c757d;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2185D5;
    font-weight: bold;
}

.quote-btn {
    background-color: #2185D5;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.quote-btn:hover {
    background-color: #1a6bb8;
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .insurance-section {
        padding: 60px 0;
    }

    .insurance-card {
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .insurance-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ========================Section-6 Css End==================== */
/* ========================Section-7 Css Start==================== */
.main-section {
    padding: 80px 0;
    background-color: #f0f9ff;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(even) {
    background: #f8faff;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .main-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* ========================Section-7 Css End==================== */
/* ========================Section-8 Css Start==================== */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    border: none;
}

.customer-image {
    width: 80px !important;
    height: 80px;
    border: 1px solid #007bff;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 25px;
}

.star {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.customer-role {
    font-size: 0.95rem;
    color: #6c757d;
}

.owl-nav {
    text-align: center;
    margin-top: 40px;
}

.owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #007bff !important;
    color: white !important;
    border: none;
    margin: 0 8px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #0056b3 !important;
    transform: translateY(-2px);
}

.owl-nav button span {
    font-size: 16px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    margin: 0 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #007bff;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .customer-image {
        width: 70px;
        height: 70px;
    }
}

/* ========================Section-8 Css End==================== */
/* ========================Section-9 Css Start==================== */

.footer-contact {
    height: 100vh;
    background: linear-gradient(135deg, rgba(52, 144, 220, 0.9), rgba(116, 185, 255, 0.8)),
        url('https://readdy.ai/api/search-image?query=professional%20business%20handshake%20meeting%20modern%20office%20financial%20consultation%20blue%20corporate%20environment%20clean%20minimal%20background&width=1920&height=1080&seq=hero-bg-001&orientation=landscape') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.left-content {
    color: white;
    padding-right: 40px;
}

.left-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.left-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.form-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #0D6EFD;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.btn-submit {
    background-color: #0D6EFD;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0b5ed7;
}

@media (max-width: 768px) {
    .footer-contact {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .left-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .left-content h1 {
        font-size: 2rem;
    }

    .form-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-contact {
        padding: 1rem 0;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .left-content h1 {
        font-size: 1.75rem;
    }

    .left-content p {
        font-size: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }
}

/* ========================Section-9 Css End==================== */
/* ========================Section-10 Css Start==================== */
.footer-section {
    background-color: #1e3a8a;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-section h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    margin-right: 0.5rem;
    width: 1rem;
}

.copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.copyright-section p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.copyright-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.copyright-section a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* ========================Section-10 Css ==================== */


.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #2185d5;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}


.carousel-wrapper {
    padding: 19px 170px;
}

.carousel-img {
    height: 74px;
    width: 114px !important;
    border-radius: 9px;
}

.carousel-img {
    height: 74px;
    width: 114px !important;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 19px 50px;
    }

    .carousel-img {
        width: 100% !important;
        height: 100px;
    }
}



.owl-carousel .item {
      background: #007bff;
      padding: 80px 0;
      text-align: center;
      color: #fff;
      /* font-size: 28px; */
      font-weight: bold;
      border-radius: 12px;
    }

    /* Custom Circle Arrows */
    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(0,0,0,0.6) !important;
      position: absolute;
      top: 40%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff !important;
      font-size: 18px !important;
      font-weight: bold;
      transition: 0.3s;
    }

    .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin:0 50px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 50px;
}

    .owl-nav button.owl-prev:hover,
    .owl-nav button.owl-next:hover {
      background: rgba(0,0,0,0.8) !important;
    }

    .owl-nav button.owl-prev {
      left: -60px;
    }
    .owl-nav button.owl-next {
      right: -60px;
    }

    .owl-dots {
      margin-top: 15px;
    }
    .owl-dot span {
      width: 12px;
      height: 12px;
      background: #999 !important;
      display: block;
      border-radius: 50%;
      margin: 5px;
    }
    
    .owl-carousel .item {
  background: none;  /* background hataya */
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.owl-carousel .item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* swiper */

    .loan-slider {
      width: 90%;
      max-width: 1000px;
      margin: auto;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .loan-slider .swiper-slide {
      position: relative;
      width: 100%;
      height: 400px;
    }

    .loan-slider .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    /* Overlay text */
    .loan-text {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 20px;
      font-weight: bold;
    }

    /* Circle arrows */
    .loan-slider .swiper-button-next,
    .loan-slider .swiper-button-prev {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s;
    }

    .loan-slider .swiper-button-next:hover,
    .loan-slider .swiper-button-prev:hover {
      background: rgba(0,0,0,0.8);
    }

    .loan-slider .swiper-button-next::after,
    .loan-slider .swiper-button-prev::after {
      font-size: 18px;
      font-weight: bold;
    }

    /* Dots */
    /* .loan-slider .swiper-pagination-bullet {
      background: #555;
      opacity: 0.7;
    }
    .loan-slider .swiper-pagination-bullet-active {
      background: #007bff;
      opacity: 1;
    } */



