:root {
--navy: #0a2343;
--red-uts: #c7251b;
--warning-yellow: #ffb400;
--bg-light: #f8f9fa;
}


/* ===== FACULTY CARDS ===== */
.faculty-section {
    padding: 80px 0;
}

.section-title {
    color: var(--navy);
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.faculty-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 420px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faculty-card img {
    transition: transform 0.6s ease;
}

.faculty-card .card-img-overlay {
    background: linear-gradient(to top, 
        rgba(10, 35, 67, 0.95) 10%, 
        rgba(10, 35, 67, 0.6) 50%, 
        rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 35, 67, 0.2);
}

.faculty-card:hover img {
    transform: scale(1.1);
}

.faculty-name {
    color: var(--warning-yellow);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.faculty-badge {
    background: rgba(255, 180, 0, 0.2);
    color: var(--warning-yellow);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 180, 0, 0.3);
}

.faculty-description {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faculty-btn {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 25px;
}

.faculty-card:hover .faculty-btn {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================================================= */

/* === Registration Banner Base === */
.registration-banner {
    background: linear-gradient(135deg, #001f3f 0%, #0a4b8c 100%);
    position: relative;
    overflow: hidden;
}

/* === Decorative Elements (Optional) === */
.registration-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.registration-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.registration-banner > * {
    position: relative;
    z-index: 1;
}

/* === Info Item Icons === */
.info-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* === Register Button === */
.btn-register {
    background-color: #fff;
    color: #001f3f !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-register:hover {
    background-color: #f8f9fa;
    color: #0a58ca !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-register:active {
    transform: translateY(-1px);
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
    .registration-banner {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .col-lg-4 {
        text-align: center !important;
    }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-banner {
    animation: fadeInUp 0.5s ease forwards;
}

/* ====================================================== */

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: var(--navy);
    color: white !important;
    font-weight: 600;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--navy);
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-page { padding: 80px 0; }
    .faculty-card { height: 380px; }
    .faculty-btn { opacity: 1; transform: translateY(0); }
}