/* 
* Shikshan - Entrance Exam Section Stylesheet
* Author: Cascade
* Date: 2025-06-18
*/

/* ========== Hero Section Styles ========== */
.entrance-hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background-color: #fcfbff;
}

.entrance-hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 127, 212, 0.15) 0%, rgba(158, 127, 212, 0.05) 70%);
    z-index: 1;
}

.entrance-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 192, 0.15) 0%, rgba(242, 181, 192, 0.05) 70%);
    z-index: 1;
}

.entrance-hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-outline-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(161, 154, 207, 0.3);
}

.entrance-hero-image {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(158, 127, 212, 0.2);
}

.shape-1 {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px dashed var(--accent-color);
    border-radius: 20px;
    top: 0;
    right: 0;
    z-index: 1;
}

.shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(158, 127, 212, 0.1);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
    z-index: 2;
}

.stats-card {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(158, 127, 212, 0.2);
}

.stats-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stats-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.stats-content p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* Responsive Styles for Hero Section */
@media (max-width: 991px) {
    .entrance-hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .entrance-hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .entrance-hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .entrance-hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stats-card {
        right: 50%;
        transform: translateX(50%);
    }
    
    .stats-card:hover {
        transform: translateX(50%) translateY(-5px);
    }
}


/* ========== EduCAT Section Styles ========== */
.educat-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.educat-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 127, 212, 0.1) 0%, rgba(158, 127, 212, 0.03) 70%);
    z-index: 1;
}

.educat-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 192, 0.1) 0%, rgba(242, 181, 192, 0.03) 70%);
    z-index: 1;
}

.educat-feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(158, 127, 212, 0.1);
    text-align: center;
}

.educat-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(158, 127, 212, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.feature-icon i {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for EduCAT Section */
@media (max-width: 991px) {
    .educat-section {
        padding: 80px 0;
    }
    
    .educat-feature-card {
        margin-bottom: 30px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .educat-section {
        padding: 60px 0;
    }
    
    .educat-feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .educat-section {
        padding: 50px 0;
    }
    
    .educat-feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
}

/* ========== Scholarship Section Styles ========== */
.scholarship-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fcfbff 100%);
    position: relative;
}

.scholarship-section::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><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f3e8ff" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23ddd6fe" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.scholarship-section .container {
    position: relative;
    z-index: 2;
}

.scholarship-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 40px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.scholarship-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.3);
}

.highlight-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scholarship-grades-container {
    margin-top: 50px;
}

.grade-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.grade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grade-color) 0%, var(--grade-color-light) 100%);
}

.grade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--grade-color);
}

.grade-a-plus {
    --grade-color: #ff6b6b;
    --grade-color-light: #ff8e8e;
}

.grade-a {
    --grade-color: #4ecdc4;
    --grade-color-light: #7ed8d1;
}

.grade-b-plus {
    --grade-color: #45b7d1;
    --grade-color-light: #6bc5d8;
}

.grade-b {
    --grade-color: #96ceb4;
    --grade-color-light: #b3d9c4;
}

.grade-header {
    margin-bottom: 25px;
}

.grade-badge {
    display: inline-block;
    background: var(--grade-color);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.grade-range {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.grade-amount {
    margin: 25px 0;
    font-weight: 700;
}

.grade-amount .currency {
    font-size: 1.5rem;
    color: var(--grade-color);
    vertical-align: top;
}

.grade-amount .amount {
    font-size: 3rem;
    color: var(--grade-color);
    margin: 0 5px;
}

.grade-amount .suffix {
    font-size: 1.2rem;
    color: #666;
}

.grade-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-weight: 500;
    margin-top: 20px;
}

.grade-features i {
    color: var(--grade-color);
    font-size: 1.2rem;
}

.scholarship-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.note-text {
    color: #666;
    margin: 0;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.note-text i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scholarship-section {
        padding: 60px 0;
    }
    
    .highlight-text {
        font-size: 1.4rem;
    }
    
    .scholarship-highlight {
        padding: 20px 25px;
        margin: 20px 0;
    }
    
    .grade-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .grade-badge {
        font-size: 1.5rem;
        padding: 12px 20px;
    }
    
    .grade-amount .amount {
        font-size: 2.2rem;
    }
}

/* ========== Registration Section Styles ========== */
.registration-section {
    padding: 100px 0;
    background-color: #fcfbff;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 127, 212, 0.1) 0%, rgba(158, 127, 212, 0.03) 70%);
    z-index: 1;
}

.registration-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 192, 0.1) 0%, rgba(242, 181, 192, 0.03) 70%);
    z-index: 1;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Registration Tabs */
.registration-tabs-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.registration-tabs {
    background: linear-gradient(to right, #6C30BF, #6232A6);
    border: none;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.registration-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.registration-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.registration-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.registration-tabs .nav-link i {
    margin-right: 8px;
}

.registration-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.registration-tabs .nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.registration-tabs .nav-link.active {
    color: white;
    background-color: transparent;
}

.registration-tabs .nav-link.active::after {
    transform: scaleX(1);
}

/* Tab Content */
.registration-tab-content {
    padding: 40px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Form Elements */
.form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
}

.form-control, .form-select {
    border: 1px solid rgba(108, 48, 191, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fcfbff;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 48, 191, 0.1);
    background-color: white;
}

.form-control::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

/* Password Strength Meter */
.password-strength {
    display: flex;
    flex-direction: column;
}

.strength-meter {
    height: 4px;
    background-color: #eee;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-meter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    background-color: #f2b5c0;
}

.strength-text {
    color: #888;
    font-size: 0.8rem;
}

/* Password Field with Toggle */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* Form Check */
.form-check-input {
    border-color: rgba(108, 48, 191, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.registration-btn, .login-btn, .result-btn {
    background: linear-gradient(to right, #6C30BF, #6232A6);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 48, 191, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.registration-btn::before, .login-btn::before, .result-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #6232A6, #D96A7E);
    transition: all 0.4s ease;
    z-index: -1;
}

.registration-btn:hover::before, .login-btn:hover::before, .result-btn:hover::before {
    left: 0;
}

.registration-btn:hover, .login-btn:hover, .result-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 48, 191, 0.3);
    color: white;
}

/* Forgot Password Link */
.forgot-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Captcha Container */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-code {
    background: linear-gradient(135deg, #6C30BF, #D96A7E);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    flex-grow: 1;
    text-align: center;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.captcha-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(255, 255, 255, 0.1) 5px,
        rgba(255, 255, 255, 0.1) 10px
    );
}

.refresh-captcha {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.refresh-captcha:hover {
    color: var(--accent-color);
    transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .registration-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .registration-tab-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .registration-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .registration-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .registration-tab-content {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .registration-section {
        padding: 50px 0;
    }
    
    .registration-tabs .nav-link {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .registration-tabs .nav-link i {
        margin-right: 5px;
    }
    
    .registration-tab-content {
        padding: 20px 15px;
    }
}

/* ========== Entrance Exam Section Styles ========== */
.entrance-exam-section {
    padding: 100px 0;
    background-color: #fcfbff;
    position: relative;
    overflow: hidden;
}

.entrance-exam-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 127, 212, 0.15) 0%, rgba(158, 127, 212, 0.05) 70%);
    z-index: 1;
}

.entrance-exam-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 192, 0.15) 0%, rgba(242, 181, 192, 0.05) 70%);
    z-index: 1;
}

.entrance-exam-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.entrance-exam-subtitle {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.entrance-exam-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.entrance-exam-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.entrance-exam-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Exam Card Styles */
.exam-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(158, 127, 212, 0.1);
}

.exam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(158, 127, 212, 0.2);
}

.exam-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.exam-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.exam-card-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.exam-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.exam-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.exam-card-body {
    padding: 25px;
}

.exam-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.exam-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.exam-highlight-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 15px;
    min-width: 20px;
    position: relative;
    top: 2px;
}

.exam-highlight-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.exam-date {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: rgba(158, 127, 212, 0.1);
    border-radius: 8px;
}

.exam-date-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.exam-date-text {
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.exam-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-register {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(158, 127, 212, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(158, 127, 212, 0.4);
}

.btn-register:hover::before {
    left: 0;
}

.btn-brochure {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-brochure i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    color: var(--secondary-color);
}

.btn-brochure:hover i {
    transform: translateX(-3px);
}

/* Exam Image Section */
.exam-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-image-main {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.exam-image-main:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(158, 127, 212, 0.2);
}

.exam-image-shape {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px dashed var(--accent-color);
    border-radius: 15px;
    top: -20px;
    right: -20px;
    z-index: 1;
}

/* Countdown Timer */
.exam-countdown {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
}

.countdown-value {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(158, 127, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-value::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.countdown-label {
    margin-top: 10px;
    color: #555;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Card */
.success-story {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(158, 127, 212, 0.15);
}

.success-quote {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.success-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -5px;
}

.success-student {
    display: flex;
    align-items: center;
}

.success-student-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--light-bg);
}

.success-student-info {
    flex-grow: 1;
}

.success-student-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.success-student-detail {
    color: #777;
    font-size: 0.85rem;
}

.success-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .entrance-exam-section {
        padding: 80px 0;
    }
    
    .entrance-exam-title {
        font-size: 2.2rem;
    }
    
    .exam-image-container {
        margin-top: 40px;
    }
    
    .exam-card {
        margin-bottom: 30px;
    }
    
    .countdown-item {
        margin: 0 10px;
    }
    
    .countdown-value {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .entrance-exam-section {
        padding: 60px 0;
    }
    
    .entrance-exam-title {
        font-size: 1.8rem;
    }
    
    .entrance-exam-description {
        font-size: 1rem;
    }
    
    .exam-title {
        font-size: 1.3rem;
    }
    
    .exam-countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 10px;
    }
    
    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .entrance-exam-section {
        padding: 50px 0;
    }
    
    .entrance-exam-title {
        font-size: 1.6rem;
    }
    
    .exam-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-brochure {
        margin-top: 15px;
    }
}

/* ========== FAQ Section Styles ========== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fcfbff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 127, 212, 0.1) 0%, rgba(158, 127, 212, 0.03) 70%);
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 192, 0.1) 0%, rgba(242, 181, 192, 0.03) 70%);
    z-index: 1;
}

.faq-container {
    position: relative;
    z-index: 2;
}

/* FAQ Accordion Styles */
.faq-item {
    background: white;
    border: 1px solid rgba(158, 127, 212, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 127, 212, 0.15);
}

.faq-item .accordion-header {
    margin-bottom: 0;
}

.faq-item .accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 600;
    color: #1d3557;
    font-size: 1.1rem;
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #6C30BF 0%, #9F7AEA 100%);
    color: white;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(108, 48, 191, 0.1);
    border: none;
}

.faq-item .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: currentColor;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) .faq-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-question {
    flex: 1;
    text-align: left;
    line-height: 1.4;
}

.faq-item .accordion-body {
    padding: 0 30px 30px 90px;
    background: white;
    border-top: 1px solid rgba(158, 127, 212, 0.1);
}

.faq-item .accordion-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 20px 0 0;
}

.faq-item .accordion-collapse {
    border: none;
}

/* FAQ Support Section */
.faq-support {
    margin-top: 60px;
}

.support-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(158, 127, 212, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(158, 127, 212, 0.2);
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.support-icon::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.support-icon i {
    position: relative;
    z-index: 2;
}

.support-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 15px;
}

.support-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-card .btn {
    background: linear-gradient(to right, #6C30BF, #6232A6);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 48, 191, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.support-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #6232A6, #D96A7E);
    transition: all 0.4s ease;
    z-index: -1;
}

.support-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 48, 191, 0.3);
    color: white;
    text-decoration: none;
}

.support-card .btn:hover::before {
    left: 0;
}

/* Responsive Styles for FAQ Section */
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-item .accordion-button {
        padding: 20px 25px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .faq-item .accordion-body {
        padding: 0 25px 25px 70px;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .support-card {
        padding: 35px 25px;
    }
    
    .support-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-item .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .faq-item .accordion-body {
        padding: 0 20px 20px 60px;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .support-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-item .accordion-button {
        padding: 15px 18px;
        font-size: 0.9rem;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-item .accordion-button::after {
        position: absolute;
        top: 15px;
        right: 18px;
        margin-left: 0;
    }
    
    .faq-item .accordion-body {
        padding: 0 18px 18px 18px;
    }
    
    .faq-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .faq-question {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .support-card {
        padding: 25px 18px;
    }
    
    .support-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .support-card h4 {
        font-size: 1.2rem;
    }
    
    .support-card p {
        font-size: 0.95rem;
    }
}
