
:root {
    --accent: #4caf50;
    --light: #f8f9fa;
    --dark: #343a40;
    --primary: #1a4b8c;
    --secondary: #ff9a3d;
    --primary-color: #0ea09e;
    --secondary-color: #0ea09e;
    --accent-color: #10b981;
    --light-bg: #f0f9ff;
    --medical-red: #ef4444;
    --road-gray: #6b7280;
    --sky-color: #0ea09e;
    --light-green: #34c969;
    --darkblue-color: #04114b
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
}

 h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--sky-color);
}

h1 {
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(30px,6vw,50px);
}

h2 {
    font-size: clamp(25px,5vw,30px);
}

h3 {
    font-size: clamp(16px,5vw,22px);
}

p {
    font-size: clamp(17px, 1.5vw,18px);
    line-height: 1.6;
    font-weight: 400
}

li {
    font-size: clamp(17px, 1.5vw,18px);
    font-weight: 500
}

.header, .footer, .color-blue {
    background-color: #04112b;
}

ul > li > a {
    color: #0186bc !important;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

    ul > li > a:after {
        content: "";
        width: 0%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #0186bc;
        transition: width .5s ease-in-out;
    }
  

        ul > li > :hover:after {
            width: 100%
        }

p > a {
    color: #0186bc !important;
    text-decoration:none
}


.dropdown-menu {
    border: 2px solid #0186bc;
    background-color: #04112b;
}

.dropdown-menu  > li > a:active {
    background: #34c969;
}

.dropdown:hover .dropdown-menu {
    display: block !important
}

.signUp {
    border: 2px solid #0186bc;
    color: #0186bc;
    background-color: transparent;
    padding: 5px 10px;
    display: inline-block;
    transition: transform .3s ease-in-out;
}

.buton {
    border: 2px solid #04112b;
    color: #04112b;
    background-color: transparent;
    padding: 5px 10px;
    display: inline-block;
    transition: transform .3s ease-in-out;
}

.signUp:active {
    color: #34c969;
    transform-origin: center;
    transform: scale(.9);
}

.buton:hover:active {
    color: #04112b;
    transform-origin: center;
    transform: scale(.9);
}

.buton:hover {
    color: #fff;
}

.theme-color-blue {
    color: #0186bc;
}

.theme-color-green {
    color: #34c969;
}

.text-blue {
    color: #04114b;
}

.navbar-toggler {
    color: #34c969 !important;
    border-color: #34c969 !important;
}


/* Index */
@media(max-width:768px) {
    .section_1 {
        padding-top: 50px;
        padding-bottom: 20px
    }
}

@media(min-width:768px) {
    .section_1 {
        padding-top: 50px;
        padding-bottom: 20px
    }
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 150px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    }

.image {
    height: 200px;
    object-fit: fill
}

@media(min-width:768px) {
    .image {
        height: 400px
    }
}

.loan-service-card {
    border-radius: 10px;
    box-shadow: 2px 2px 7px 1px rgba(0,0,0.05);
    padding: 20px;
}

.loan-service-count {
    background-color: #033869;
    border-radius: 100px;
    padding: 7px 10px;
    color: #fff
}
/* Index End */


/* About */
.about-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.about-content-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 50px;
    margin: -50px auto 50px;
    position: relative;
}

.about-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .about-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.vision-mission-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--success-color);
    text-align: center;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.insurance-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-color);
    text-align: center;
}

    .insurance-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.insurance-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s;
}
    

    .benefit-item:hover {
        background: #f0f9ff;
        transform: translateX(5px);
    }

.benefit-icon {
    font-size: 1.5rem;
    color: var(--success-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
    margin: 50px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.commitment-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid #a7f3d0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
    }

        .feature-list li:before {
            content: "✓";
            color: var(--success-color);
            font-weight: bold;
            display: inline-block;
            width: 1.5em;
            margin-right: 10px;
            font-size: 1.2rem;
        }

.consultation-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, #818cf8 100%);
    border-radius: 15px;
    padding: 40px;
    color: white;
    text-align: center;
    margin: 50px 0;
}




@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin: -30px 15px 30px;
    }

    .about-hero-section {
        padding: 80px 0;
    }
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.partner-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

    .partner-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
/* About End */


/* Home_Loan */

.homeLoan-hero-section {
    background: linear-gradient(rgba(60, 83, 88, 0.9), rgba(44, 85, 48, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .homeLoan-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.homeLoan-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .homeLoan-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.homeLoan-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-color);
    text-align: center;
}

    .homeLoan-benefit-card:hover {
        transform: translateY(-10px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.suitable-for-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
}

.suitable-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

    .suitable-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

.suitable-icon {
    font-size: 1.8rem;
    color: var(--darkblue-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.homeLoan-process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.homeLoan-why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

    .homeLoan-why-us-card:hover {
        border-bottom-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.homeLoan-cta-section {
    background: linear-gradient(rgba(44, 85, 20, 0.9), rgba(44, 85, 48, 0.9)), url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}





.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: bold;
    color: var(--primary-color);
}

/* Home_Loan End*/


/* Personal_Loan*/
.personalLoan-hero-section {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    border-radius: 0 0 20px 20px;
}

.personalLoan-section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

    .personalLoan-section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--secondary);
    }

.personalLoan-benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    background-color: white;
}

    .personalLoan-benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.loan-type-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

    .loan-type-card:hover {
        border-left-color: var(--secondary);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.loan-type-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.personalLoan-process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.personalLoan-why-us-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}



.personalLoan-cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
}

.highlight {
    color: var(--secondary);
    font-weight: 600;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

    .feature-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 30px;
    }

        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }
/* Personal_Loan End*/


/* Group_Loan*/
.groupLoan-hero-section {
    background: linear-gradient(rgba(42, 110, 63, 0.85), rgba(42, 110, 63, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    border-radius: 0 0 20px 20px;
}

.groupLoan-section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

    .groupLoan-section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--secondary);
    }

.groupLoan-benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    background-color: white;
}

    .groupLoan-benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.loan-type-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

    .loan-type-card:hover {
        border-left-color: var(--secondary);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.loan-type-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.groupLoan-process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.groupLoan-why-us-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}


.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
    }

.groupLoan-cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
}

.highlight {
    color: var(--secondary);
    font-weight: 600;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

    .feature-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 30px;
    }

        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }

.img-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

    .img-container img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .img-container:hover img {
        transform: scale(1.05);
    }

.benefits-section {
    background: linear-gradient(rgba(42, 110, 63, 0.05), rgba(42, 110, 63, 0.1));
}
/* Group_Loan End*/


/* Vehicle_Loan*/
.vehicleLoan-hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .vehicleLoan-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, white 50%);
    }

.vehicleLoan-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .vehicleLoan-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--secondary-color);
    }

.vehicleLoan-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--secondary-color);
}

    .vehicleLoan-benefit-card:hover {
        transform: translateY(-10px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.loan-type-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: none;
}

    .loan-type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.loan-type-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vehicleLoan-process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}



.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-check {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.vehicleLoan-why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

    .why-us-card:hover {
        border-bottom-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vehicleLoan-cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}





.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
/* Vehicle_Loan End*/


/* Business_Loan*/

.BusinessLoan-hero-section {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.businessLoan-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.businessLoan-hero-section-benefit-card {
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

.loan-type-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .loan-type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.businessLoan-process-step {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    height: 100%;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.5rem;
}

.businessLoan-why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s;
}

    .businessLoan-why-us-card:hover {
        background-color: var(--primary-color);
        color: white;
    }

        .businessLoan-why-us-card:hover i {
            color: var(--light-green) ;
        }
        .businessLoan-why-us-card:hover h4 {
            color: var(--light-green) ;
        }

.icon-container {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.businessLoan-cta-section {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}



.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.benefit-list li {
    margin-bottom: 10px;
}
/* Business_Loan End*/


/* Business_Insurance*/
.business-hero-section {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .business-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.business-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .business-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.business-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-left: 4px solid var(--success-color);
    text-align: center;
}

    .business-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.importance-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
}

.importance-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

    .importance-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

.importance-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.insurance-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.3s;
}

    .insurance-card:hover {
        border-top-color: var(--accent-color);
        transform: translateY(-10px);
    }

.insurance-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.insurance-feature {
    text-align: left;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .insurance-feature i {
        color: var(--success-color);
        margin-right: 10px;
    }

.business-process-step {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.4rem;
}

.industry-section {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.industry-logo {
    height: 60px;
    margin: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

    .industry-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

.business-why-us-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-right: 4px solid transparent;
}

    .business-why-us-card:hover {
        border-right-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.business-cta-section {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}





.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-name {
    font-weight: bold;
    color: var(--primary-color);
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #818cf8 100%);
    border-radius: 12px;
    padding: 40px 35px;
    color: white;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.protection-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.consultation-badge {
    display: inline-flex;
    align-items: center;
    background: var(--success-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.industry-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.security-graphic {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--corporate-gray), transparent);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

    .security-graphic::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        animation: securityMove 2s linear infinite;
    }

@keyframes securityMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.risk-meter {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 20px 0;
}

.risk-level {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #f59e0b, #ef4444);
    border-radius: 5px;
    width: 30%;
}
/* Business_Insurance End*/


/* Travel_Insurance*/
.travel-hero-section {
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.travel-section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

    .travel-section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--secondary);
    }

.travel-benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

    .travel-benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.audience-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

    .audience-card:hover {
        background-color: var(--primary);
        color: white;
    }

        .audience-card:hover .audience-icon {
            color: white;
        }

.audience-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.travel-cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}



.btn-outline-light {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}
/* Travel_Insurance End*/


/* Life_Insurance */
.life-hero-section {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .life-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.life-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .life-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.life-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

    .life-benefit-card:hover {
        transform: translateY(-10px);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.coverage-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
}

.coverage-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

    .coverage-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

.coverage-icon {
    font-size: 1.8rem;
    color: var(--darkblue-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.life-plan-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.3s;
}

    .life-plan-card:hover {
        border-top-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.plan-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.plan-feature {
    text-align: left;
    margin-bottom: 10px;
}

    .plan-feature i {
        color: var(--accent-color);
        margin-right: 10px;
    }

.life-process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-bottom: 4px solid var(--accent-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.life-why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-right: 4px solid transparent;
}

    .life-why-us-card:hover {
        border-right-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.life-cta-section {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}





.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: bold;
    color: var(--primary-color);
}




/* Life_Insurance End*/


/* Vehicle_Insurance */
.vehicle-hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .vehicle-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.vehicle-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .vehicle-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.vehicle-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

    .vehicle-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vehicle-types-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
}

.vehicle-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

    .vehicle-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

.vehicle-icon {
    font-size: 2rem;
    color: var(--darkblue-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.coverage-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.3s;
}

    .coverage-card:hover {
        border-top-color: var(--accent-color);
        transform: translateY(-10px);
    }

/*.coverage-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}*/

.coverage-feature {
    text-align: left;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .coverage-feature i {
        color: var(--accent-color);
        margin-right: 10px;
    }

.vehicle-process-step {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.4rem;
}

.garage-network-section {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.garage-logo {
    height: 60px;
    margin: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

    .garage-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

.vehicle-why-us-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-right: 4px solid transparent;
}

    .vehicle-why-us-card:hover {
        border-right-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vehicle-cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}




.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-name {
    font-weight: bold;
    color: var(--primary-color);
}




.emergency-badge {
    display: inline-flex;
    align-items: center;
    background: #ef4444;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ncb-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.road-animation {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--road-gray), transparent);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

    .road-animation::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        animation: roadMove 2s linear infinite;
    }

@keyframes roadMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}
/* Vehicle_Insurance End*/


/* Health_Insurance*/
.health-hero-section {
    background: linear-gradient(rgba(37, 99, 235, 0.85), rgba(37, 99, 235, 0.9)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .health-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.health-section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .health-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background-color: var(--accent-color);
    }

.health-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--secondary-color);
    text-align: center;
}

    .health-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coverage-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 15px;
}

.coverage-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

    .coverage-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

/*.coverage-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
}*/

.health-plan-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

    .health-plan-card:hover {
        border-left-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.plan-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-feature {
    text-align: left;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .plan-feature i {
        color: var(--accent-color);
        margin-right: 10px;
    }

.health-process-step {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.4rem;
}

.network-section {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hospital-logo {
    height: 60px;
    margin: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

    .hospital-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

.health-why-us-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border-right: 4px solid transparent;
}

    .health-why-us-card:hover {
        border-right-color: var(--secondary-color);
        transform: translateY(-10px);
    }

.why-us-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.health-cta-section {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}

.btn-primary-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 35px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

    .btn-primary-custom:hover {
        background-color: #0da271;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 14px 35px;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid white;
    transition: all 0.3s;
    font-size: 1.1rem;
}

    .btn-outline-custom:hover {
        background-color: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-name {
    font-weight: bold;
    color: var(--primary-color);
}





.emergency-badge {
    display: inline-flex;
    align-items: center;
    background: var(--medical-red);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.network-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
/* Health_Insurance End*/


/* Term& Condition */

.header-section {
    color: white;
    padding: 50px 0;
    text-align: center;
}

.content-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 10px;
    margin: -50px auto 50px;
    position: relative;
}

.terms-nav {
    position: sticky;
    height: 700px;
    overflow: scroll;
    top: 70px;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

    .terms-nav::-webkit-scrollbar {
        display: none
    }

    .terms-nav h5 {
        border-bottom: 2px solid var(--light-bg);
        color: var(--light-bg);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .terms-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .terms-nav li {
        margin-bottom: 8px;
    }

    .terms-nav a {
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s;
        display: block;
        padding: 5px 0;
        border-left: 3px solid transparent;
        padding-left: 10px;
    }

        .terms-nav a:hover {
            color: var(--primary-color);
            border-left-color: var(--accent-color);
            padding-left: 15px;
        }

.terms-content {
    padding-left: 20px;
}

.term-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

    .term-section:last-child {
        border-bottom: none;
    }

.term-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 15px;
    font-weight: bold;
}

.services-list {
    list-style: none;
    padding: 0;
}

    .services-list li {
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
    }

        .services-list li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }


.contact-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    background: #fef3c7;
    border-radius: 8px;
    padding: 2px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #fcd34d;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

    .back-to-top:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

@@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin: -30px 15px 30px;
    }

    .terms-nav {
        position: static;
        margin-bottom: 30px;
    }

    .terms-content {
        padding-left: 0;
    }
}

.legal-notice {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.definition-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

/* Term& Condition End*/

/* Privay Policy*/

.privacy-nav {
    position: sticky;
    top: 70px;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

    .privacy-nav h5 {
        color: #fff;
        border-bottom: 2px solid var(--light-bg);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .privacy-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .privacy-nav li {
        margin-bottom: 8px;
    }

    .privacy-nav a {
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s;
        display: block;
        padding: 5px 0;
        border-left: 3px solid transparent;
        padding-left: 10px;
    }

        .privacy-nav a:hover {
            color: var(--primary-color);
            border-left-color: var(--accent-color);
            padding-left: 15px;
        }

.privacy-content {
    padding-left: 20px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

    .policy-section:last-child {
        border-bottom: none;
    }

.section-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 15px;
    font-weight: bold;
}

.info-category {
    background: #f0f9ff;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.info-list {
    list-style: none;
    padding: 0;
}

    .info-list li {
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: flex-start;
    }

        .info-list li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: 10px;
            flex-shrink: 0;
        }



.security-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.contact-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    background: #fef3c7;
    border-radius: 8px;
    padding: 2px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #fcd34d;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

    .back-to-top:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

.data-flow {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #e5e7eb;
}

.flow-step {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
}

.flow-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.consent-box {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin: -30px 15px 30px;
    }

    .privacy-nav {
        position: static;
        margin-bottom: 30px;
    }

    .privacy-content {
        padding-left: 0;
    }
}



.warning-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

/* Privay Policy End*/


/* Contact Us*/
.contactUs-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contactUs-hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
    }

.contactUs-content-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 50px;
    margin: -50px auto 50px;
    position: relative;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-color);
    text-align: center;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

.form-btn-primary-custom {
    background-color: var(--sky-color);
    color: white;
    padding: 14px 35px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    width: 100%;
}

    .form-btn-primary-custom:hover {
        background-color: var(--light-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.office-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border-left: 4px solid var(--success-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 400px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-options {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.service-badge {
    display: inline-block;
    background: var(--sky-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

    .service-badge:hover {
        background: var(--light-green);
        transform: translateY(-2px);
    }

.faq-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-color);
}

.business-hours {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.emergency-contact {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid #f59e0b;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin: -30px 15px 30px;
    }

    .hero-section {
        padding: 80px 0;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
    }
/* Contact Us End*/
