/* Admission Section Styles */
.admission-highlight-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.admission-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.admission-content {
    position: relative;
    z-index: 1;
}

.admission-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.admission-banner img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.admission-banner:hover img {
    transform: scale(1.05);
}

.admission-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.admission-title {
    font-size: 36px;
    color: #002147;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.admission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #fdc800;
}

.admission-highlight {
    background: #002147;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.admission-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.admission-highlight h3 {
    color: #fdc800;
    margin-bottom: 15px;
    font-size: 22px;
}

.admission-highlight p {
    color: #ffffff;
    margin-bottom: 15px;
}

.admission-highlight-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.1;
    color: #fdc800;
}

.admission-countdown {
    background: #fdc800;
    color: #002147;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.admission-countdown h3 {
    color: #002147;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
}

.countdown-item {
    margin: 0 10px;
    text-align: center;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    background: #ffffff;
    color: #002147;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 5px;
    display: inline-block;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}

.admission-cta {
    display: inline-block;
    background: #fdc800;
    color: #002147;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #fdc800;
    text-decoration: none;
    margin-top: 10px;
}

.admission-cta:hover {
    background: #002147;
    color: #fdc800;
    border-color: #fdc800;
}

.admission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.admission-feature-item {
    flex: 1 0 calc(33.333% - 15px);
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #fdc800;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.admission-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #002147;
    color: #fdc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: #002147;
    font-size: 16px;
}

.feature-text p {
    margin: 0;
    font-size: 14px;
    color: #444444;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .admission-feature-item {
        flex: 1 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .admission-title {
        font-size: 28px;
    }
    
    .admission-feature-item {
        flex: 1 0 100%;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.admission-highlight .admission-cta {
    animation: pulse 2s infinite;
}
