/* Relanace Finance - Professional Loan Management System */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Enhanced Header with Mobile Responsiveness */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #2c3e50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #1e3c72;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.logo span {
    color: #3498db;
}

.logo small {
    display: block;
    font-size: 10px;
    color: #5a6c7d;
    line-height: 1;
    margin-top: 2px;
}

.header-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.header-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
}

.header-nav a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.header-nav .btn {
    padding: 8px 15px;
    font-size: 13px;
    margin: 0 5px;
}

.header-contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5a6c7d;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.header-contact-item span:first-child {
    font-size: 14px;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(52, 152, 219, 0.1);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2c3e50;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
    display: block;
}

.mobile-nav-header {
    padding: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
}

.mobile-nav-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-nav-menu a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 15px;
    margin: 5px 0;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.mobile-nav-menu a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.mobile-nav-menu .btn {
    margin: 10px 0;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
}

.mobile-contact-info {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #5a6c7d;
    font-size: 13px;
}

.mobile-contact-item span:first-child {
    font-size: 16px;
    color: #3498db;
    flex-shrink: 0;
}

/* Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-nav {
        gap: 10px;
    }
    
    .header-nav a {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .header-nav .btn {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 3px;
    }
}

@media (max-width: 1024px) {
    .header-contact-info {
        gap: 10px;
        padding: 6px 20px;
    }
    
    .header-contact-item {
        font-size: 11px;
    }
    
    .header-contact-item span:first-child {
        font-size: 12px;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 5px 0;
    }
    
    .header-content {
        padding: 0 15px;
        min-height: 50px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 8px;
    }
    
    .logo small {
        font-size: 8px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-contact-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 6px;
    }
    
    .logo small {
        font-size: 7px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
        margin: 3px 0;
    }
    
    .mobile-nav {
        width: 90%;
        max-width: 280px;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-nav-header h3 {
        font-size: 16px;
    }
    
    .mobile-nav-close {
        width: 30px;
        height: 30px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .mobile-nav-menu {
        padding: 15px;
    }
    
    .mobile-nav-menu a {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .mobile-nav-menu .btn {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .mobile-contact-info {
        padding: 15px;
    }
    
    .mobile-contact-item {
        font-size: 12px;
    }
}

/* Enhanced Hero Section with Advanced Features */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 40px 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 50%, rgba(155, 89, 182, 0.05) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.hero-particles::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation-delay: 10s;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.05) 0%, 
        rgba(46, 204, 113, 0.05) 50%, 
        rgba(155, 89, 182, 0.05) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2c3e50;
    animation: fadeInUp 1s ease-out;
}

.title-highlight {
    color: #3498db;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hero-stat .stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
    display: block;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: #5a6c7d;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6c7d;
    font-weight: 600;
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #27ae60, #229954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Enhanced Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 28px;
}

.card h2 {
    color: #1e3c72;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.card-subtitle {
    color: #5a6c7d;
    font-size: 18px;
    margin-top: 5px;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    margin: 5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2980b9, #21618c);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, #27ae60, #229954);
    color: white;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
    background: linear-gradient(45deg, #229954, #1e8449);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.btn-danger {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-warning {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(45deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #7f8c8d, #6c757d);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(149, 165, 166, 0.4);
}

.btn-full {
    width: 100%;
    margin: 10px 0;
}

.btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #3498db, #2980b9) border-box;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.feature-card h3 {
    color: #1e3c72;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, transparent);
    transform: translateY(-50%);
}

.process-step:last-child .step-number::after {
    display: none;
}

.process-step h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    color: white;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    color: #1e3c72;
    font-size: 16px;
}

.author-info p {
    margin: 0;
    color: #5a6c7d;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 40px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-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 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Enhanced Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-control:hover {
    border-color: #d0d0d0;
}

.form-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
    display: block;
}

.text-muted {
    color: #6c757d !important;
}

/* Select Dropdown Styles */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 6l7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
    appearance: none;
}

select.form-control::-ms-expand {
    display: none;
}

/* Textarea Styles */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Form Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

/* Form Section Divider */
.form-section {
    padding: 20px;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.form-section h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.valid-feedback {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Form Progress Indicator */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step {
    width: 30px;
    height: 30px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #6c757d;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #3498db;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

/* Form Loading State */
.form-loading {
    position: relative;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Success State */
.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.form-success h3 {
    color: #155724;
    margin: 0 0 10px 0;
}

.form-success p {
    color: #155724;
    margin: 0;
}

/* Form Error State */
.form-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.form-error h3 {
    color: #721c24;
    margin: 0 0 10px 0;
}

.form-error p {
    color: #721c24;
    margin: 0;
}

/* Form Help Text */
.form-help {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.form-help h5 {
    color: #1565c0;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.form-help ul {
    margin: 0;
    padding-left: 20px;
    color: #1565c0;
}

.form-help li {
    margin-bottom: 5px;
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .form-section h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 8px 10px;
    }
    
    select.form-control {
        padding-right: 40px;
        background-size: 16px;
    }
    
    textarea.form-control {
        min-height: 80px;
    }
}

/* Loan Features Grid */
.loan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.loan-feature {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.loan-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.loan-feature h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.loan-feature p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-highlight {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
}

.highlight-value {
    font-size: 16px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-time {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 0 20px;
    flex: 1;
    border-left: 4px solid #3498db;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #5a6c7d;
    margin: 0;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.document-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.document-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.document-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-card li {
    color: #5a6c7d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.document-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.document-card p {
    color: #5a6c7d;
    margin-top: 15px;
    font-style: italic;
}

/* Eligibility Criteria */
.eligibility-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.eligibility-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.eligibility-item:hover {
    transform: translateY(-3px);
}

.eligibility-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.eligibility-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.eligibility-content p {
    color: #5a6c7d;
    margin-bottom: 10px;
}

.eligibility-range {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.eligibility-range span {
    background: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tip-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.tip-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.tip-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Premium Features */
.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.premium-feature {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.premium-feature:hover {
    transform: translateY(-3px);
}

.premium-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.premium-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.premium-content p {
    color: #5a6c7d;
    margin: 0;
}

/* Privacy Content Styles */
.privacy-content {
    margin-top: 30px;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.privacy-section p {
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-section li {
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 18px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin: 5px 0;
}

/* Summary Points */
.summary-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.summary-point {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.summary-point:hover {
    transform: translateY(-3px);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.summary-point h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.summary-point p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Interest Rates Table */
.interest-rates-table {
    margin-top: 30px;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table th {
    background: #3498db;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .loan-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-time {
        margin-bottom: 10px;
        min-width: auto;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eligibility-criteria {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eligibility-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .interest-rates-table {
        margin-top: 20px;
    }
    
    .table {
        font-size: 14px;
    }
    
    .table th,
    .table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .loan-feature {
        padding: 20px;
    }
    
    .document-card {
        padding: 20px;
    }
    
    .eligibility-item {
        padding: 20px;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .premium-feature {
        padding: 20px;
    }
    
    .summary-point {
        padding: 20px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .timeline-item {
        margin-left: 30px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Status Colors */
.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.status-approved {
    background: #d4edda;
    color: #155724;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Navigation */
.nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .table {
        font-size: 14px;
    }
    
    .table th,
    .table td {
        padding: 8px;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::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 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #3498db;
    border-color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3498db;
}

/* Enhanced Header with more info */
.header-contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6c7d;
    font-size: 14px;
    font-weight: 600;
}

.header-contact-item i {
    color: #3498db;
    font-size: 16px;
}

/* Enhanced Hero Section */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

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

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

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.hero-feature h4 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-feature p {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.5;
}

/* Loan Calculator Widget */
.loan-calculator {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h2 {
    color: #1e3c72;
    font-size: 32px;
    margin-bottom: 10px;
}

.calculator-header p {
    color: #5a6c7d;
    font-size: 16px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.calculator-result {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: none;
}

.calculator-result.show {
    display: block;
}

.result-amount {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Admin Specific Styles */
.admin-header {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.admin-header h1 {
    text-align: center;
    margin: 0;
}

.admin-nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 600;
}
