/* ===== ADMISSIONS PAGE STYLES ===== */

/* Admissions Hero Section */
.admissions-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6480 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.admissions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.admissions-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.admissions-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.admissions-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.admission-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c3ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Admission Process Section */
.admission-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.admission-process .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007cba, #005a87);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #007cba;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-icon {
    margin-bottom: 20px;
    color: #007cba;
}

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Courses Overview Section */
.courses-overview {
    padding: 80px 0;
    background: white;
}

.courses-overview .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.course-duration {
    color: #007cba;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.course-enroll-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.course-enroll-btn.selected {
    background: #27ae60;
}

/* Admission Requirements Section */
.admission-requirements {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.requirements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.requirements-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.requirement-icon {
    font-size: 2rem;
    min-width: 50px;
}

.requirement-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.requirement-text p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

.requirements-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Admission Form Section */
.admission-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-container input {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container a {
    color: #007cba;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.character-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.print-btn {
    background: #6c757d;
}

.print-btn:hover {
    background: #5a6268;
}

/* Student Testimonials Section */
.student-testimonials {
    padding: 80px 0;
    background: white;
}

.student-testimonials .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007cba;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Admission FAQ Section */
.admission-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.admission-faq .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Admission CTA Section */
.admission-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Button Click Animation */
.btn.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Error States */
.input-wrapper.error input,
.textarea-wrapper.error textarea,
.select-wrapper.error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Responsive Design for Admissions Page */
@media (max-width: 991px) {
    .admissions-hero h1 {
        font-size: 2.5rem;
    }
    
    .admission-stats {
        gap: 30px;
    }
    
    .requirements-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .admissions-hero {
        padding: 80px 0 60px;
    }
    
    .admissions-hero h1 {
        font-size: 2rem;
    }
    
    .admission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .admissions-hero h1 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .requirement-item {
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}



.admission-hero {
    position: relative;
    height: 650px;
    background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1920&auto=format&fit=crop") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.admission-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.admission-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 2px solid #2d6cdf;
    padding-bottom: 5px;
}

.admission-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.admission-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.admission-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #1e4ed8;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.admission-btn:hover {
    background: #163bb3;
}
