@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f0f23;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation - Glass Effect */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #7c3aed, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #7c3aed);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #7c3aed);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Hero Section - 3D & Neon */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0f0f23 100%),
        radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.2) 0%, transparent 70%);
    color: white;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::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><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300f5ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%237c3aed" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23a)"><animate attributeName="r" values="2;3;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="url(%23a)"><animate attributeName="r" values="1.5;2.5;1.5" dur="4s" repeatCount="indefinite"/></circle></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, #00f5ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(0, 245, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    background: linear-gradient(135deg, #a78bfa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #00f5ff);
    color: white;
    box-shadow: 
        0 10px 30px rgba(124, 58, 237, 0.4),
        0 0 40px rgba(0, 245, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(124, 58, 237, 0.6),
        0 0 60px rgba(0, 245, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00f5ff;
    border: 2px solid rgba(0, 245, 255, 0.5);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: #00f5ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.2);
}

.hero-image {
    text-align: center;
    perspective: 1000px;
}

.hero-image i {
    font-size: 18rem;
    background: linear-gradient(135deg, #00f5ff44, #7c3aed44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 50px rgba(0, 245, 255, 0.5));
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

@keyframes rotate3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

/* 3D Sections */
section {
    padding: 120px 0;
    position: relative;
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.glass-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card, .why-item, .benefit, .info-card, .req-card {
    @extend .glass-card;
}

.icon-3d {
    font-size: 4rem;
    background: linear-gradient(135deg, #00f5ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5));
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
}

.glass-card:hover .icon-3d {
    filter: drop-shadow(0 0 30px rgba(0, 245, 255, 0.8));
    transform: scale(1.1);
}

/* Grids */
.services-grid, .why-grid, .benefits-grid, .study-benefits, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Special Cards */
.no-al-level {
    border: 2px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.no-al-level .icon-3d {
    background: linear-gradient(135deg, #22c55e, #86efac);
}

.al-level {
    border: 2px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.al-level .icon-3d {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

/* Fee Notices */
.fee-notice {
    color: #f59e0b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(245, 158, 14, 0.5);
}

.fee-explanation {
    background: rgba(245, 158, 14, 0.15);
    border: 1px solid rgba(245, 158, 14, 0.3);
    color: #fbbf24;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0 2.5rem;
    backdrop-filter: blur(10px);
}

/* Industry Tags */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    justify-content: center;
}

.industry-tags span {
    background: rgba(255, 255, 255, 0.08);
    color: #00f5ff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.industry-tags span:hover {
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    transform: translateY(-3px);
}

/* FAQ - 3D Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question span {
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-question i {
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #7c3aed;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: 
        linear-gradient(135deg, #1a1a3a 0%, #0f0f23 100%),
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    color: white;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-item i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00f5ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
}

/* Modal - Enhanced Glassmorphism */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}

.modal-content {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: 5% auto;
    padding: 0;
    border-radius: 30px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #94a3b8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal h2 {
    text-align: center;
    padding: 3rem 2rem 1.5rem;
    margin: 0;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content form {
    padding: 0 3rem 3rem;
}

.form-group h3 {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 20px rgba(0, 245, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.upload-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* Date Input Wrapper - Better mobile visibility */
.date-input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.date-input-wrapper label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.date-input-wrapper input[type="date"] {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.date-input-wrapper input[type="date"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.date-input-wrapper input[type="date"]:focus {
    outline: none;
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 20px rgba(0, 245, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.full-width {
    width: 100%;
    font-size: 1.1rem;
    padding: 20px;
}

/* Success Modal */
.success-modal .modal-content {
    text-align: center;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid rgba(34, 197, 94, 0.4);
}

.success-modal i {
    font-size: 6rem;
    color: #22c55e;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.8));
    margin-bottom: 2rem;
}

/* Application ID Section */
.application-id-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.application-id-section h3 {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.application-id-display {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #00f5ff;
    letter-spacing: 1px;
    word-break: break-all;
}

.application-id-note {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.application-id-note i {
    color: #fbbf24;
    margin-top: 0.1rem;
}

/* Application Status Dashboard Styles */
.status-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05), rgba(0, 245, 255, 0.05));
}

.status-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.status-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    text-align: center;
}

.status-card > p {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Status Help Section */
.status-help {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.status-help p {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-help ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-help li {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.status-help li:before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    color: #e2e8f0 !important;
    font-weight: normal !important;
}

.btn-link {
    color: #00f5ff !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #00a8ff !important;
    text-decoration: underline;
}

#statusForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#statusForm input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#statusForm input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#statusForm input:focus {
    outline: none;
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 245, 255, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

#statusForm .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Application Status Display */
.application-status .status-card {
    margin-top: 0;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.reviewing {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.application-info {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    color: #e2e8f0;
    font-size: 1rem;
    padding: 8px 0;
}

/* Progress Timeline */
.progress-section h4 {
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-size: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 245, 255, 0.5);
    border: 2px solid rgba(0, 245, 255, 0.8);
}

.timeline-item.completed::before {
    background: rgba(34, 197, 94, 0.8);
    border-color: #22c55e;
}

.timeline-item.current::before {
    background: rgba(59, 130, 246, 0.8);
    border-color: #3b82f6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.timeline-item h5 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.timeline-item .date {
    color: #64748b;
    font-size: 0.85rem;
}

/* Documents Section */
.documents-section h4 {
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-size: 1.5rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.document-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.document-item i {
    font-size: 2rem;
    color: rgba(0, 245, 255, 0.7);
    margin-bottom: 1rem;
    display: block;
}

.document-item h5 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.document-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.document-item a {
    color: rgba(0, 245, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.document-item a:hover {
    color: #00f5ff;
}

/* Notes Section */
.notes-section h4 {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1.5rem;
}

.notes-content {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.notes-content p {
    color: #fbbf24;
    margin: 0;
    font-size: 1rem;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.error-message p {
    color: #ef4444;
    margin: 0;
    font-size: 1.1rem;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00f5ff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 3rem 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .status-section h2 {
        font-size: 2rem;
    }

    .status-card {
        padding: 1.5rem;
    }

    .status-card h3 {
        font-size: 1.5rem;
    }

    #statusForm .form-row {
        grid-template-columns: 1fr;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 50px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7c3aed, #00f5ff);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #9333ea, #00d4ff);
}