/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 181, 36, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.logo a {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 181, 36, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.logo i {
    font-size: 2.2rem;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: all 0.5s ease;
}

.nav-menu li a:hover::before {
    left: 100%;
}

.nav-menu li a:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.nav-menu li a.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.welcome-text strong {
    color: #fbbf24;
    font-weight: 600;
}

.btn {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-outline {
    border: 2px solid #fbbf24;
    color: #fbbf24;
    background: transparent;
}

.btn-outline:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: 2px solid #fbbf24;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.magic-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    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 ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.magic-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.magic-icon i {
    font-size: 1.2rem;
    color: #0f172a;
}

.magic-home-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    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 ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.magic-home-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.magic-home-link i {
    font-size: 1.2rem;
    color: #0f172a;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fbbf24;
    cursor: pointer;
    padding: 10px;
}



/* Status Check Section on Homepage */
.status-check-section {
    margin-top: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.status-check-section h3 {
    color: #fbbf24;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.status-form .form-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.status-form input[type="text"] {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
}

.status-form input[type="text"]:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.status-check-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.status-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* End Status Check Section */

/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fbbf24;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.loan-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.detail-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.detail-item i {
    font-size: 2.5rem;
    color: #fbbf24;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.detail-item p {
    font-size: 1.1rem;
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.eligibility-section, .documents-section {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.eligibility-section:hover, .documents-section:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.eligibility-section h2, .documents-section h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #fbbf24;
    font-weight: 700;
}

.eligibility-section ul, .documents-section ul {
    list-style: none;
}

.eligibility-section li, .documents-section li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.eligibility-section li i, .documents-section li i {
    color: #34d399;
    width: 24px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.apply-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.loan-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    text-align: center;
    padding: 20px;
}

.features-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 250px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(251, 191, 36, 0.25);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #f59e0b;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 600;
    flex: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.image-placeholder i {
    font-size: 5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.7));
    z-index: 2;
    position: relative;
}

.image-placeholder p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    text-align: center;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Modern Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 20%);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #0f172a;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #3b82f6 50%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fbbf24;
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.3));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Apply Section */
.apply-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: #1e3c72;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Form Styles */
.form-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.form-section h2 {
    color: #1e3c72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2 i {
    color: #1e3c72;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #1e3c72;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.terms-link, .privacy-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #1e3c72;
    color: white;
}

.btn-primary:hover {
    background: #2a5298;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: alertFloat 3s ease-in-out infinite;
}

@keyframes alertFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.alert-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-left: 5px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    border-left: 5px solid #dc3545;
}

.alert i {
    font-size: 1.5rem;
    min-width: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #e2e8f0;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 200% 100%;
    animation: footerGradient 3s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 200, 121, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(121, 200, 255, 0.1) 0%, transparent 20%);
    animation: float 8s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #ffeaa7;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
    animation: footerLine 2s ease-in-out infinite alternate;
}

@keyframes footerLine {
    from { width: 60px; }
    to { width: 80px; }
}

.footer-section h4 {
    color: #4ecdc4;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    font-size: 1.1rem;
}

.footer-section ul li a::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ffeaa7;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffeaa7;
    padding-left: 25px;
    text-shadow: 0 2px 4px rgba(255, 234, 167, 0.5);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 5px;
    transform: scale(1.2);
}

.footer-section p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section i {
    color: #4ecdc4;
    min-width: 25px;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Loan Types Section */
.loan-types-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e3c72;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.loan-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.loan-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.loan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.loan-card:hover .loan-icon {
    transform: scale(1.1);
}

.loan-icon i {
    font-size: 2.5rem;
    color: #0f172a;
}

.loan-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.loan-card p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.loan-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.loan-features .rate,
.loan-features .tenure {
    background: #e2e8f0;
    color: #334155;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.select-btn {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.select-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
}

.select-btn i {
    font-size: 1.3rem;
}

/* Documents Section */
.documents-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.documents-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
    color: #1e3c72;
    font-weight: 700;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.doc-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.doc-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.doc-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 600;
}

.doc-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.apply-section {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.apply-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e3c72;
    font-weight: 700;
}

.apply-section p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Currency Display */
.rupee-symbol {
    font-family: 'Arial Unicode MS', 'Lucida Sans Unicode', Tahoma, sans-serif;
    font-weight: bold;
    color: #0f172a;
}

.rupee-amount {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav-menu li a {
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-image {
        max-width: 100%;
        height: 300px;
        order: -1; /* Move image above text on mobile */
    }
    
    .features-overlay {
        position: relative;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
        max-width: 100%;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    .feature-item i {
        display: none; /* Hide icons on mobile to save space */
    }
    
    .loan-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .detail-item {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Loan Types Responsive */
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .loan-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .loan-card {
        padding: 25px;
    }
    
    .loan-icon {
        width: 70px;
        height: 70px;
    }
    
    .loan-icon i {
        font-size: 2rem;
    }
    
    .loan-card h3 {
        font-size: 1.5rem;
    }
    
    .loan-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-card {
        flex-direction: column;
        text-align: center;
    }
    
    .documents-section {
        padding: 30px 20px;
    }
    
    .documents-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .apply-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .features h2 {
        font-size: 2.2rem;
    }
    
    .form-header h1 {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .detail-item {
        padding: 20px;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Loan Types Mobile */
    .loan-types-section {
        padding: 50px 0;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .loan-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .loan-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .loan-icon i {
        font-size: 1.8rem;
    }
    
    .loan-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .loan-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .select-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .documents-section {
        padding: 25px 15px;
    }
    
    .documents-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .doc-card {
        padding: 20px;
    }
    
    .doc-icon {
        width: 50px;
        height: 50px;
    }
    
    .doc-icon i {
        font-size: 1.5rem;
    }
    
    .apply-section {
        padding: 25px 15px;
    }
    
    .apply-section h3 {
        font-size: 1.5rem;
    }
    
    .apply-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* User Info Display */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.welcome-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.welcome-text strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 28px;
    color: #0f172a;
}

.contact-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-card h3 {
    color: #1e3c72;
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 500;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: #334155;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3, .footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-section p, .footer-section a {
    color: #cbd5e1;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
    transform: translateX(3px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fbbf24;
    font-size: 1.3rem;
}

.social-links a:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Dashboard Statistics */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    font-size: 1.3rem;
    color: #0f172a;
}

.stat-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* User Applications Section */
.user-applications {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.user-applications h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.applications-table-container {
    overflow-x: auto;
}

.applications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.applications-table th,
.applications-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.applications-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.applications-table td {
    color: #475569;
}

.applications-table tr:hover {
    background: #f8fafc;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #ffecb3;
    color: #ff8f00;
}

.status-approved {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-rejected {
    background: #ffcdd2;
    color: #c62828;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.text-center {
    text-align: center;
}

.no-applications {
    text-align: center;
    padding: 40px 20px;
}

.no-applications i {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-applications h3 {
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-applications p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Application Details Section */
.application-details-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-header {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    text-align: center;
}

.details-header h1 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.details-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 25px;
}

.application-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.status-card, .application-date {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.status-card h3, .application-date h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.application-date p {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

.details-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.details-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.details-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item label {
    font-weight: 600;
    color: #334155;
    font-size: 1rem;
}

.detail-item span {
    color: #475569;
    font-size: 1rem;
    text-align: right;
    max-width: 60%;
}

/* Status Management Modal */
.status-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 25px;
    text-align: center;
}

.status-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.status-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.status-btn.status-pending {
    background: #ffecb3;
    color: #ff8f00;
}

.status-btn.status-pending:hover {
    background: #ffd54f;
    color: #ff6f00;
}

.status-btn.status-approved {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-btn.status-approved:hover {
    background: #a5d6a7;
    color: #1b5e20;
}

.status-btn.status-rejected {
    background: #ffcdd2;
    color: #c62828;
}

.status-btn.status-rejected:hover {
    background: #ef9a9a;
    color: #b71c1c;
}

/* Admin Dashboard Enhancements */
.admin-dashboard-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.recent-applications h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.applications-table {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow-x: auto;
}

.applications-table table {
    width: 100%;
    border-collapse: collapse;
}

.applications-table th,
.applications-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.applications-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.applications-table td {
    color: #475569;
}

.applications-table tr:hover {
    background: #f8fafc;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
    margin: 2px;
}

.btn-warning {
    background: #f59e0b;
    color: white;
    border: none;
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Profile Page Styles */
.profile-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-header h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.profile-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-avatar i {
    font-size: 3.5rem;
    color: #0f172a;
}

.user-details h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.user-details p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 5px 0;
}

.user-role {
    background: #e0f2fe;
    color: #0288d1;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-header h1 {
        font-size: 2rem;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-avatar i {
        font-size: 2.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
}

/* Admin and Customer Selection Buttons */
.user-selection-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-selection-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.user-selection-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
}

.user-selection-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

.user-selection-buttons .btn-secondary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
}

.user-selection-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.magic-home-link-container {
    margin-left: 15px;
}

/* Admin Login Section */
.admin-login-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
    min-height: 100vh;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.login-form .form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.login-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Admin Dashboard Section */
.admin-dashboard-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.stat-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-content p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.dashboard-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.recent-applications h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.applications-table {
    overflow-x: auto;
}

.applications-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.applications-table th,
.applications-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.applications-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
}

.applications-table td {
    color: #475569;
}

.applications-table tr:hover {
    background: #f8fafc;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #ffecb3;
    color: #ff8f00;
}

.status-approved {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-rejected {
    background: #ffcdd2;
    color: #c62828;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.text-center {
    text-align: center;
}

/* Admin Applications Page */
.admin-applications-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.applications-header {
    text-align: center;
    margin-bottom: 40px;
}

.applications-header h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.applications-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.applications-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #f59e0b;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.filters {
    display: flex;
    gap: 15px;
}

.filters select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    min-width: 180px;
}

.filters select:focus {
    outline: none;
    border-color: #f59e0b;
}

.applications-table-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow-x: auto;
}

.applications-table {
    width: 100%;
    border-collapse: collapse;
}

.applications-table th,
.applications-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.applications-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.applications-table td {
    color: #475569;
}

.applications-table tr:hover {
    background: #f8fafc;
}

.pagination {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-size: 1rem;
}

/* Status Management Modal */
.status-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 25px;
    text-align: center;
}

.status-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.status-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.status-btn.status-pending {
    background: #ffecb3;
    color: #ff8f00;
}

.status-btn.status-pending:hover {
    background: #ffd54f;
    color: #ff6f00;
}

.status-btn.status-approved {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-btn.status-approved:hover {
    background: #a5d6a7;
    color: #1b5e20;
}

.status-btn.status-rejected {
    background: #ffcdd2;
    color: #c62828;
}

.status-btn.status-rejected:hover {
    background: #ef9a9a;
    color: #b71c1c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .applications-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .filters select {
        width: 100%;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .status-options {
        grid-template-columns: 1fr;
    }
    
    .applications-table th,
    .applications-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 1px;
    }
}

/* Professional About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 30%);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-header h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #3b82f6);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.about-header p {
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.08),
        0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fbbf24 0%, #3b82f6 50%, #8b5cf6 100%);
}

.about-content:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 70px rgba(0,0,0,0.12),
        0 15px 40px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin: 40px 0 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card i {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fbbf24;
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #fbbf24;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-decoration: none;
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card i {
        font-size: 2.2rem;
    }
}