/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stunning animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 146, 60, 0.4); }
    50% { box-shadow: 0 0 30px rgba(251, 146, 60, 0.8); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes neonPulse {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(251, 146, 60, 0.6),
                     0 0 10px rgba(251, 146, 60, 0.4),
                     0 0 15px rgba(251, 146, 60, 0.3);
    }
    50% { 
        text-shadow: 0 0 10px rgba(251, 146, 60, 0.9),
                     0 0 20px rgba(251, 146, 60, 0.7),
                     0 0 30px rgba(251, 146, 60, 0.5);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    animation: gradientShift 20s ease infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(34, 197, 94, 0.6);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #22C55E;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-icon {
    margin-right: 10px;
    position: relative;
    width: 30px;
    height: 30px;
}

.pill-capsule {
    position: relative;
    width: 100%;
    height: 100%;
}

.pill-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #FFFFFF;
    border-radius: 15px 15px 0 0;
    border: 2px solid #22C55E;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pill-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #10B981;
    border-radius: 0 0 15px 15px;
    border: 2px solid #10B981;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.graduation-cap {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #2c3e50;
}

.graduation-cap::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -6px;
    width: 12px;
    height: 2px;
    background: #22C55E;
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.7);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1rem;
}

.nav-link:hover {
    color: #22C55E;
    background: rgba(34, 197, 94, 0.15);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1C1917 0%, #292524 50%, #1C1917 100%);
    color: #FFF7ED;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(194, 65, 12, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse 6s ease-in-out infinite;
}


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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
    animation: slideInUp 1s ease-out, neonPulse 3s ease-in-out infinite 1s;
    position: relative;
}


.gradient-text {
    background: linear-gradient(45deg, #FB923C, #EA580C, #C2410C, #FB923C);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    position: relative;
    color: #FB923C; /* Fallback color for browsers that don't support background-clip */
    z-index: 10;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FB923C, #EA580C, #C2410C, #FB923C);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: blur(1px);
    opacity: 0.5;
    z-index: -1;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    animation: slideInUp 1.2s ease-out 0.3s both;
}


.crypto-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: slideInUp 1.4s ease-out 0.6s both;
}

.badge {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.25), rgba(234, 88, 12, 0.2));
    border: 1px solid rgba(251, 146, 60, 0.6);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FB923C;
    font-family: 'JetBrains Mono', monospace;
    animation: pulse 3s ease-in-out infinite, float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    transition: all 0.3s ease;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.6);
    border-color: rgba(251, 146, 60, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #FB923C, #EA580C, #C2410C);
    background-size: 300% 300%;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(251, 146, 60, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1.6s ease-out 0.9s both, gradientShift 3s ease infinite;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(251, 146, 60, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #F97316, #DC2626, #991B1B);
    animation: gradientShift 1.5s ease infinite;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Trading Chart Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-chart {
    background: rgba(28, 25, 23, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(251, 146, 60, 0.7);
    width: 100%;
    max-width: 480px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(251, 146, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite, fadeInScale 1.8s ease-out 1.2s both;
    position: relative;
    overflow: hidden;
}

.trading-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(234, 88, 12, 0.08) 100%);
    border-radius: 28px;
    z-index: 1;
    animation: gradientShift 8s ease infinite;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.chart-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFF7ED;
    font-family: 'Inter', sans-serif;
}

.chart-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF7ED;
    font-family: 'JetBrains Mono', monospace;
}

.price-change {
    font-size: 1rem;
    margin-left: 10px;
    font-weight: 600;
}

.price-change.positive {
    color: #10B981;
}

.chart-container {
    height: 220px;
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, #FB923C, #EA580C);
    clip-path: polygon(0% 100%, 10% 80%, 20% 60%, 30% 40%, 40% 30%, 50% 20%, 60% 25%, 70% 35%, 80% 50%, 90% 70%, 100% 60%);
    opacity: 0.8;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(251, 146, 60, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 146, 60, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.chart-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 146, 60, 0.5);
    position: relative;
    z-index: 2;
}

.crypto-indicators {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.indicator {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #10B981;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #D1FAE5;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0F172A;
}

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

.about-card {
    text-align: center;
    padding: 52px 40px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.7);
    transition: all 0.5s ease;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1s ease-out;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(16, 185, 129, 0.06) 100%);
    border-radius: 28px;
    z-index: 1;
    animation: gradientShift 6s ease infinite;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(34, 197, 94, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(34, 197, 94, 0.9);
}

.card-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(45deg, #22C55E, #10B981, #059669);
    background-size: 300% 300%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: white;
    font-size: 2.4rem;
    box-shadow: 
        0 16px 40px rgba(34, 197, 94, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    animation: gradientShift 4s ease infinite;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite;
}

.card-icon:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 16px 32px rgba(34, 197, 94, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.about-card p {
    color: #D1FAE5;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* Application Form */
.apply {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 28px;
    padding: 56px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.7);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1.2s ease-out;
}

.application-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-radius: 28px;
    z-index: 1;
    animation: gradientShift 10s ease infinite;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.9);
    color: #FFFFFF;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22C55E;
    box-shadow: 
        0 0 0 3px rgba(34, 197, 94, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(15, 23, 42, 1);
}


/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    padding: 20px;
    border: 2px dashed rgba(251, 146, 60, 0.5);
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.5);
    color: #FFF7ED;
}

.file-upload-display:hover {
    border-color: #FB923C;
    background-color: rgba(251, 146, 60, 0.08);
}

.file-upload-display i {
    font-size: 2rem;
    color: #FB923C;
    margin-bottom: 10px;
    display: block;
}

.file-upload-display span {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.file-upload-display small {
    color: #FED7AA;
}

/* Checkbox */
.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.submit-button {
    background: linear-gradient(45deg, #22C55E, #10B981, #059669);
    background-size: 300% 300%;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    box-shadow: 
        0 12px 32px rgba(34, 197, 94, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
    backdrop-filter: blur(10px);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(34, 197, 94, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #16A34A, #15803D, #166534);
    animation: gradientShift 2s ease infinite;
}

.submit-button:active {
    transform: translateY(-2px) scale(1.02);
}


/* Footer */
.footer {
    background: #0F172A;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 10px;
    color: #22C55E;
}

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

.modal-content {
    background-color: #0F172A;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

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

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(34, 197, 94, 0.5);
}

.success-icon {
    font-size: 4rem;
    color: #22C55E;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.modal-body {
    padding: 20px 30px;
    text-align: center;
    color: #D1FAE5;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.modal-button {
    background: linear-gradient(45deg, #22C55E, #10B981);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5);
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
    background: linear-gradient(45deg, #16A34A, #15803D);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .application-form-container {
        padding: 20px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
