/* ========== ADMISSION PAGE STYLES ========== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000080 0%, #0000b3 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.section-title span {
    color: #000080;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* ========== ADMISSION STEPS ========== */
.admission-steps {
    padding: 60px 0 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    background: white;
    padding: 35px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,128,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,128,0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,128,0.15);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: #ffd700;
    color: #000080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    background: #ffd700;
    color: #000080;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== ADMISSION MAIN ========== */
.admission-main {
    padding: 40px 0 80px;
}

.admission-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
}

/* Form Container */
.admission-form-container {
    background: white;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,128,0.1);
    border: 1px solid rgba(0,0,128,0.08);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0ff;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.required {
    color: #ff4444;
    font-weight: 700;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,128,0.05);
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd700;
}

.form-section-title i {
    color: #ffd700;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000080;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,0,128,0.1);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 42px;
    color: #000080;
    font-size: 1.1rem;
    opacity: 0.7;
}

.textarea-icon {
    top: 42px;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Course Preview */
.course-preview {
    margin-top: 25px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px dashed #000080;
}

.course-preview h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.preview-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preview-item .label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.preview-item .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.preview-item .value.discount {
    color: #4caf50;
}

.preview-item.total {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #f0f0ff;
}

.preview-item.total .value {
    font-size: 1.3rem;
    color: #000080;
}

/* File Upload */
.file-upload-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.file-upload-item {
    text-align: center;
}

.file-upload-item label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.file-upload-box {
    background: white;
    border: 2px dashed #ccc;
    border-radius: 15px;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-box:hover {
    border-color: #000080;
    background: #f0f0ff;
    transform: translateY(-3px);
}

.file-upload-box i {
    font-size: 2rem;
    color: #000080;
    margin-bottom: 10px;
}

.file-upload-box span {
    display: block;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.file-upload-box small {
    color: #999;
    font-size: 0.75rem;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
}

.payment-option input[type="radio"] {
    width: auto;
    margin-right: 15px;
    accent-color: #000080;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #000080;
    background: #f0f0ff;
}

.payment-option label i {
    font-size: 1.5rem;
    color: #000080;
}

.payment-option label strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
    font-weight: 700;
}

.payment-option label small {
    color: #666;
    font-size: 0.8rem;
}

/* Fee Breakdown */
.fee-breakdown {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.fee-breakdown h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0ff;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
}

.breakdown-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #f0f0ff;
    font-weight: 800;
    color: #000080;
    font-size: 1.2rem;
}

/* Terms Section */
.terms-section {
    margin-bottom: 0;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.terms-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000080;
}

.terms-checkbox label {
    margin: 0;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.terms-checkbox a {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0000b3, #000080);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,128,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* ========== ADMISSION INFO PANEL ========== */
.admission-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,128,0.08);
    border: 1px solid rgba(0,0,128,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,128,0.12);
}

.info-card.highlight {
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
}

.info-card.highlight h4 {
    color: white;
    border-bottom-color: #ffd700;
}

.info-card.highlight .timer-block {
    background: rgba(255,255,255,0.2);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd700;
}

/* Countdown Timer */
.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.timer-block {
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}

.timer-block span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-block small {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0ff;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: #4caf50;
    font-size: 1rem;
    width: 20px;
}

/* Fee Items */
.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0ff;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-amount {
    font-weight: 700;
    color: #000080;
}

.fee-note {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    color: #856404;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scholarship Card */
.info-card.scholarship {
    background: linear-gradient(135deg, #fff8e7, #ffffff);
}

.scholarship-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ffd700;
}

.scholarship-item:last-child {
    border-bottom: none;
}

.scholarship-name {
    color: #333;
    font-weight: 500;
}

.scholarship-value {
    font-weight: 700;
    color: #4caf50;
}

/* Documents List */
.docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0ff;
}

.docs-list li:last-child {
    border-bottom: none;
}

.docs-list li i {
    color: #ffd700;
    width: 20px;
}

/* Contact Info */
.help-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0ff;
}

.help-item:last-child {
    border-bottom: none;
}

.help-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
}

.help-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.help-item span {
    color: #666;
    font-size: 0.85rem;
}

.help-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.help-item a:hover {
    color: #000080;
    text-decoration: underline;
}

/* ========== SCHOLARSHIP SECTION ========== */
.scholarship-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.scholarship-card {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,128,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,128,0.05);
}

.scholarship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,128,0.15);
}

.scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.scholarship-card:hover .scholarship-icon {
    transform: scale(1.1) rotate(360deg);
    background: #ffd700;
    color: #000080;
}

.scholarship-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.scholarship-percent {
    font-size: 2rem;
    font-weight: 800;
    color: #000080;
    margin-bottom: 12px;
}

.scholarship-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== BATCHES SECTION ========== */
.batches-section {
    padding: 80px 0;
}

.batches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.batch-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,128,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,128,0.05);
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,128,0.15);
}

.batch-date {
    width: 80px;
    height: 80px;
    background: #000080;
    color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.batch-date .date {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.batch-date .month {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.batch-info {
    flex: 1;
}

.batch-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.batch-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.batch-info p i {
    color: #ffd700;
    width: 18px;
}

.batch-btn {
    background: transparent;
    color: #000080;
    padding: 8px 20px;
    border: 2px solid #000080;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.batch-btn:hover {
    background: #000080;
    color: white;
    transform: translateY(-2px);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,128,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,128,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #000080;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafaff;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #000080;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #ffd700;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    gap: 18px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .admission-wrapper {
        grid-template-columns: 1fr 320px;
    }
    
    .scholarship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admission-wrapper {
        grid-template-columns: 1fr;
    }
    
    .batches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .file-upload-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-item.total {
        grid-column: span 1;
    }
    
    .file-upload-container {
        grid-template-columns: 1fr;
    }
    
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
    
    .batches-grid {
        grid-template-columns: 1fr;
    }
    
    .batch-card {
        flex-direction: column;
        text-align: center;
    }
    
    .batch-date {
        width: 70px;
        height: 70px;
    }
    
    .batch-date .date {
        font-size: 1.5rem;
    }
    
    .batch-btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .admission-form-container {
        padding: 25px;
    }
    
    .form-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .admission-form-container {
        padding: 20px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .step-card {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-option label {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .payment-option label i {
        margin: 0 auto;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card, .info-card, .scholarship-card, .batch-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.05s; }
.step-card:nth-child(2) { animation-delay: 0.1s; }
.step-card:nth-child(3) { animation-delay: 0.15s; }
.step-card:nth-child(4) { animation-delay: 0.2s; }