/* ============ Personal Loan ============ */
/* Hero Section Styling */
.personal-hero-section {
    background: var(--bg-gradient);
    padding: 100px 0 80px;
    border-bottom: 1px solid #eee;
    margin-top: 80px;
}

.personal-hero-section h1 {
    font-size: 45PX;
    color: var(--primary-color);
    line-height: 1.3;
}

.personal-hero-section p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 12px;
}

/* Apply Now Button */
.btn-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(140, 82, 255, 0.25);
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    transform: scale(1.05);
    opacity: 0.95;
    color: var(--white);
}

/* Responsive Hero Image Animation */
.personal-hero-section img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Personal Loan Benefits Section */
.loan-benefits-section {
    background-color: #f9f7ff;
}

.benefit-box {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(140, 82, 255, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Eligibility & Documents Section */
.eligibility-section {
    background-color: #fff;
}

.info-card {
    background-color: var(--bg-gradient);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.info-card h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-card ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #333;
}

.info-card ul li i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* How It Works Section */
.loan-process-section {
    background: #fff;
}

.process-box {
    background: var(--bg-gradient);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-box:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 24px;
}

.process-box h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.process-box p {
    font-size: 0.95rem;
    color: #333;
}

/* Calculator section  */
.emi-calculator-section {
    background: var(--bg-gradient);
}

.calculator-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.calculator-box label {
    font-weight: 600;
    color: var(--text-dark);
}

.emi-result {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

#emiOutput {
    font-weight: 700;
    color: var(--primary-color);
}

/* ============ Home Loan ============ */
/* hero section  */
.hero-section {
    background: var(--bg-gradient);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Benefits Section */
.home-loan-benefits {
    background-color: #f7f6ff;
}

.benefit-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(140, 82, 255, 0.15);
}

/* home loan Eligibility & Documents Section */
.home-loan-tabs {
    background: var(--bg-gradient);
}

.tab-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 700px;
    margin: auto;
}

.tab-buttons {
    background: var(--primary-color);
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.tab-btn.active {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.tab-content {
    padding: 25px;
    background: #fff;
}

.tab-pane {
    display: none;
}

.tab-pane.show {
    display: block;
}

.custom-list {
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

/* home loan How It Works Section */
.how-it-works {
    background: var(--bg-gradient);
}

.step-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.step-box:hover {
    transform: translateY(-8px);
}

.step-circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 18px;
}

.step-box h5 {
    font-weight: 600;
    color: var(--text-dark);
}

.step-box p {
    font-size: 14px;
    color: #555;
}

/* Home Loan EMI Calculator */
.home-emi-section {
    background: var(--bg-gradient);
}

.emi-form-wrapper,
.emi-result-wrapper {
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2.5rem;
}

/* ============ Car Loan ============ */
/* hero section  */
.car-hero-section {
    background: var(--bg-gradient);
    margin-top: 80px;
}

.car-hero-section h1 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Car Loan Benefits Section */
.car-loan-benefits {
    background: #fff;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: bold;
}

.icon-accent {
    color: var(--accent-color);
}

.benefit-box {
    background: var(--bg-gradient);
    border-radius: 12px;
    transition: 0.3s ease;
}

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

/* Documents Section */
.car-loan-eligibility {
    background: var(--bg-gradient);
}

.eligibility-box,
.document-box {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.eligibility-box:hover,
.document-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1rem;
}

.icon-accent {
    color: var(--accent-color);
}

/* How It Works Section */
.how-it-works {
    background: #fff;
}

.step-box {
    background: var(--bg-gradient);
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: var(--primary-color);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Calculator section  */
.emi-calculator-modern {
    background: var(--bg-gradient);
}

.emi-calculator-modern .range-value {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.emi-box-modern {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.emi-box-modern:hover {
    transform: translateY(-5px);
}

input[type="range"] {
    width: 100%;
}

/* ============ Two-Wheeler Loan ============ */
/* hero section  */
.loan-hero-section {
    background: var(--bg-gradient);
    color: var(--text-dark);
    margin-top: 80px;
}

.hero-title {
    font-size: 45px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.loan-hero-img {
    max-height: 340px;
}

/* Two-Wheeler Loan Benefits Section */
.loan-benefits-section {
    background-color: #fdfcff;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: 0.3s ease;
    height: 100%;
}

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

.benefit-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #444;
}

/* documents section  */
.eligibility-documents-section {
    background-color: #fff;
}

.info-box {
    background: var(--bg-gradient);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.list-check li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* how it work section  */
.how-it-works-section {
    background: var(--bg-gradient);
}

.step-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.step-box:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-box p {
    color: #555;
}

/* calculator section  */
.bike-loan-calculator {
    background: var(--bg-gradient);
}

.gradient-card {
    background: linear-gradient(145deg, #f0e9ff, #e9dbff);
    border-radius: 16px;
    color: var(--text-dark);
}

.result-box {
    border-radius: 16px;
    background: var(--white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
}

.value-highlight {
    font-weight: 600;
    color: var(--accent-color);
}

.emi-amount {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color);
}