/* ============================================
   Government Loan Portal - Theme CSS
   Deep Blue (#0056b3) - Official Government Style
   ============================================ */

/* CSS Variables for Easy Theme Management */
:root {
    --govt-primary: #0056b3;
    --govt-primary-dark: #004494;
    --govt-primary-light: #0066cc;
    --govt-secondary: #003d82;
    --govt-white: #ffffff;
    --govt-light-gray: #f8f9fa;
    --govt-gray: #6c757d;
    --govt-dark: #212529;
    --govt-success: #28a745;
    --govt-warning: #ffc107;
    --govt-info: #17a2b8;
    
    /* Shishu, Kishore, Tarun Colors */
    --shishu-color: #28a745;
    --kishore-color: #17a2b8;
    --tarun-color: #0056b3;
    
    /* Typography */
    --font-primary: 'Noto Sans', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 30px;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--govt-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
.govt-header {
    background-color: var(--govt-primary);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--govt-white) !important;
}

.navbar-brand i {
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--govt-white) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85) 0%, rgba(0, 68, 148, 0.9) 100%);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 2;
}

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

.min-vh-75 {
    min-height: 75vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--govt-white);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--govt-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--govt-gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* PMMY Section */
.section-pmmv {
    background-color: var(--govt-white);
}

.benefit-box {
    padding: 20px;
    background-color: var(--govt-light-gray);
    border-radius: var(--border-radius);
    height: 100%;
}

.benefit-box i {
    margin-bottom: 15px;
}

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

/* Loan Cards */
.loan-card {
    background: var(--govt-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.loan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.loan-card-header {
    padding: 0;
    text-align: center;
    color: var(--govt-white);
    position: relative;
    height: 200px;
    overflow: hidden;
}

.loan-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.loan-card:hover .loan-card-image {
    transform: scale(1.1);
}

.loan-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.loan-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.loan-card-header.shishu .loan-card-overlay {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.7) 0%, rgba(30, 126, 52, 0.8) 100%);
}

.loan-card-header.kishore .loan-card-overlay {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.7) 0%, rgba(19, 132, 150, 0.8) 100%);
}

.loan-card-header.tarun .loan-card-overlay {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.7) 0%, rgba(0, 68, 148, 0.8) 100%);
}

.loan-card-content .loan-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.loan-card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.loan-card-content .loan-amount {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.loan-card-body {
    padding: var(--card-padding);
}

.loan-card-body h5 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    color: var(--govt-gray);
    margin-bottom: 20px;
}

.loan-details {
    font-size: 0.95rem;
}

.loan-details h6 {
    color: var(--govt-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.loan-details ul {
    list-style: none;
    padding-left: 0;
}

.loan-details ul li {
    padding: 5px 0 5px 25px;
    position: relative;
    color: var(--govt-gray);
}

.loan-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--govt-success);
    font-weight: bold;
}

.loan-card-footer {
    padding: 20px var(--card-padding);
    background-color: var(--govt-light-gray);
}

/* MSME Section */
.section-msme {
    background-color: var(--govt-light-gray);
}

.msme-card {
    background: var(--govt-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.msme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.msme-card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.msme-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.msme-card:hover .msme-card-image {
    transform: scale(1.1);
}

.msme-card-header {
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    color: var(--govt-white);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.msme-card-header i {
    font-size: 2rem;
    opacity: 0.9;
}

.msme-card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.msme-card-body {
    padding: var(--card-padding);
}

.scheme-details {
    margin-top: 20px;
}

.detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--govt-gray);
}

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

.detail-item strong {
    color: var(--govt-dark);
}

/* Calculator Section */
.section-calculator {
    background-color: var(--govt-white);
}

.calculator-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.input-group {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--govt-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-label i {
    color: var(--govt-primary);
    margin-right: 8px;
}

.value-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--govt-primary);
}

.form-range {
    height: 8px;
    background-color: #dee2e6;
    border-radius: 5px;
}

.form-range::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border: 3px solid var(--govt-white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.6);
}

.form-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border: 3px solid var(--govt-white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.6);
}

.form-range {
    height: 10px;
    background: linear-gradient(to right, #dee2e6 0%, var(--govt-primary) 50%, #dee2e6 100%);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--govt-gray);
    margin-top: 5px;
}

.calculator-results {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.result-card {
    background: linear-gradient(135deg, var(--govt-white) 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
    border: 2px solid rgba(0, 86, 179, 0.1);
}

.result-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.result-label {
    font-size: 0.9rem;
    color: var(--govt-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-breakdown {
    background: linear-gradient(135deg, var(--govt-white) 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-breakdown h6 {
    color: var(--govt-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.breakdown-bar {
    display: flex;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.breakdown-principal {
    background-color: var(--govt-primary);
    transition: width 0.3s ease;
}

.breakdown-interest {
    background-color: var(--govt-warning);
    transition: width 0.3s ease;
}

.breakdown-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.breakdown-labels span {
    color: var(--govt-gray);
}

.breakdown-labels strong {
    color: var(--govt-dark);
}

/* Eligibility Section */
.section-eligibility {
    background-color: var(--govt-light-gray);
}

.eligibility-card {
    background: var(--govt-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.eligibility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.eligibility-icon i {
    font-size: 2rem;
    color: var(--govt-white);
}

.eligibility-card h5 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.eligibility-card p {
    color: var(--govt-gray);
    line-height: 1.8;
}

/* Footer */
.govt-footer {
    background-color: var(--govt-dark);
    background-image: 
        linear-gradient(rgba(33, 37, 41, 0.85), rgba(33, 37, 41, 0.85)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='1080' viewBox='0 0 1920 1080'%3E%3Cg fill='none' stroke='rgba(0,123,255,0.15)' stroke-width='1.2' opacity='0.7'%3E%3Cpath d='M200 400 Q300 350 400 400 T600 400 Q700 380 800 400 T1000 400 Q1100 390 1200 400 T1400 400 Q1500 395 1600 400 T1720 400'/%3E%3Cpath d='M180 420 Q280 400 380 420 T580 420 Q680 410 780 420 T980 420 Q1080 415 1180 420 T1380 420 Q1480 418 1580 420 T1700 420'/%3E%3Cpath d='M160 440 Q260 430 360 440 T560 440 Q660 435 760 440 T960 440 Q1060 438 1160 440 T1360 440 Q1460 439 1560 440 T1680 440'/%3E%3Cpath d='M140 460 Q240 450 340 460 T540 460 Q640 455 740 460 T940 460 Q1040 458 1140 460 T1340 460 Q1440 459 1540 460 T1660 460'/%3E%3Cpath d='M120 480 Q220 470 320 480 T520 480 Q620 475 720 480 T920 480 Q1020 478 1120 480 T1320 480 Q1420 479 1520 480 T1640 480'/%3E%3Cpath d='M240 360 Q340 320 440 360 T640 360 Q740 350 840 360 T1040 360 Q1140 355 1240 360 T1440 360 Q1540 359 1640 360'/%3E%3Cpath d='M280 320 Q380 280 480 320 T680 320 Q780 310 880 320 T1080 320 Q1180 315 1280 320 T1480 320 Q1580 319 1680 320'/%3E%3Cpath d='M220 380 Q320 340 420 380 T620 380 Q720 370 820 380 T1020 380 Q1120 375 1220 380 T1420 380 Q1520 379 1620 380'/%3E%3Cpath d='M700 640 Q800 620 900 640 T1100 640 Q1200 630 1300 640 T1500 640 Q1600 635 1700 640'/%3E%3Cpath d='M750 680 Q850 660 950 680 T1150 680 Q1250 670 1350 680 T1550 680 Q1650 675 1750 680'/%3E%3Cpath d='M800 720 Q900 700 1000 720 T1200 720 Q1300 710 1400 720 T1600 720 Q1700 715 1800 720'/%3E%3Cpath d='M500 500 Q600 490 700 500 T900 500 Q1000 495 1100 500 T1300 500 Q1400 498 1500 500 T1700 500'/%3E%3Cpath d='M650 760 Q750 750 850 760 T1050 760 Q1150 755 1250 760 T1450 760 Q1550 758 1650 760'/%3E%3Cpath d='M900 800 Q1000 790 1100 800 T1300 800 Q1400 795 1500 800 T1700 800 Q1800 798 1900 800'/%3E%3Cpath d='M1000 840 Q1100 830 1200 840 T1400 840 Q1500 835 1600 840 T1800 840 Q1850 838 1900 840'/%3E%3Cpath d='M1100 880 Q1200 870 1300 880 T1500 880 Q1600 875 1700 880 T1850 880'/%3E%3Cpath d='M1200 920 Q1300 910 1400 920 T1600 920 Q1700 915 1800 920'/%3E%3Cpath d='M400 220 Q500 200 600 220 T800 220 Q900 210 1000 220'/%3E%3Cpath d='M450 240 Q550 225 650 240 T850 240 Q950 230 1050 240'/%3E%3Cpath d='M600 180 Q700 160 800 180'/%3E%3Cpath d='M800 1000 Q900 990 1000 1000 T1200 1000 Q1300 995 1400 1000 T1600 1000 Q1700 998 1800 1000'/%3E%3Cpath d='M900 1040 Q1000 1030 1100 1040 T1300 1040 Q1400 1035 1500 1040 T1700 1040 Q1750 1038 1800 1040'/%3E%3Cpath d='M1000 1080 Q1100 1070 1200 1080 T1400 1080 Q1500 1075 1600 1080 T1750 1080'/%3E%3C/g%3E%3Ccircle cx='960' cy='540' r='3' fill='rgba(0,123,255,0.2)'/%3E%3Ccircle cx='300' cy='450' r='2.5' fill='rgba(0,123,255,0.18)'/%3E%3Ccircle cx='1500' cy='500' r='2.5' fill='rgba(0,123,255,0.18)'/%3E%3Ccircle cx='700' cy='600' r='2' fill='rgba(0,123,255,0.15)'/%3E%3Ccircle cx='1400' cy='650' r='2' fill='rgba(0,123,255,0.15)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;
    color: var(--govt-white);
    position: relative;
    overflow: hidden;
}

.govt-footer h5,
.govt-footer h6 {
    color: var(--govt-white);
    font-weight: 600;
    margin-bottom: 20px;
}

.govt-footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--govt-primary);
    color: var(--govt-white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--govt-primary-light);
    color: var(--govt-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--govt-white);
}

.footer-links i {
    margin-right: 8px;
    color: var(--govt-primary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.disclaimer-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--govt-warning);
    padding: 20px;
    border-radius: var(--border-radius);
}

.disclaimer-box h6 {
    color: var(--govt-warning);
    margin-bottom: 15px;
}

.disclaimer-box h6 i {
    margin-right: 8px;
}

.disclaimer-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--govt-white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calculator-container {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .loan-card-header h3 {
        font-size: 1.5rem;
    }
    
    .loan-amount {
        font-size: 1.1rem;
    }
    
    .msme-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .calculator-container {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .loan-card-body,
    .msme-card-body {
        padding: 20px;
    }
}

/* Page Header (for sub-pages) */
.page-header {
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
}

/* Content Box */
.content-box {
    background: var(--govt-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    color: var(--govt-primary);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--govt-primary);
}

.content-box h3 {
    color: var(--govt-dark);
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-box p {
    color: var(--govt-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-box ul li {
    color: var(--govt-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-box strong {
    color: var(--govt-dark);
}

/* Feature Cards */
.feature-card {
    background: var(--govt-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--govt-white);
}

.feature-card h4 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--govt-gray);
    line-height: 1.8;
}

/* Value Items */
.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--govt-white);
}

.value-item h5 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--govt-gray);
    margin: 0;
    line-height: 1.7;
}

/* About Image Box */
.about-image-box {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--govt-light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--govt-white);
}

.contact-item h5 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--govt-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--govt-primary);
}

.contact-form-card {
    background: var(--govt-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    color: var(--govt-primary);
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: var(--govt-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    padding: 12px;
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--govt-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.1);
}

/* Accordion Styles */
.accordion-button {
    background-color: var(--govt-light-gray);
    color: var(--govt-dark);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--govt-primary);
    color: var(--govt-white);
}

.accordion-button:focus {
    border-color: var(--govt-primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.accordion-body {
    color: var(--govt-gray);
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-box {
        padding: 25px 20px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
}

/* Mudra & MSME Hero Sections */
.mudra-hero-section,
.msme-hero-section {
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.min-vh-60 {
    min-height: 60vh;
}

.hero-badge {
    margin-bottom: 20px;
}

.hero-badge .badge {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Benefit Items */
.benefit-item {
    margin-bottom: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--govt-primary) 0%, var(--govt-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--govt-white);
}

.benefit-item h5 {
    color: var(--govt-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--govt-gray);
    margin: 0;
    line-height: 1.7;
}

/* MSME Type Cards */
.msme-type-card {
    background: var(--govt-light-gray);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msme-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.msme-type-card p {
    color: var(--govt-gray);
    line-height: 1.8;
}

/* Scheme Details Lists */
.scheme-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.scheme-details ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--govt-gray);
    line-height: 1.7;
}

.scheme-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--govt-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Print Styles */
@media print {
    .govt-header,
    .hero-buttons,
    .loan-card-footer,
    .govt-footer {
        display: none;
    }
}

