* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #1a5276;
}

/* Header */
header {
    background: #1a5276;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    font-size: 3em;
    line-height: 1;
}

.logo img {
    height: 55px;
    width: auto;
    border-radius: 6px;
}

.logo-text h1 {
    font-size: 2em;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.85em;
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
}

nav ul li a {
    position: relative;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95em;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #e67e22;
    border-radius: 3px;
    transition: width 0.35s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.nav-login {
    background: #e67e22;
    color: #fff;
    border-radius: 5px;
    padding: 7px 14px;
    font-weight: 600;
    transition: background 0.3s;
}

nav ul li a.nav-login::after {
    display: none;
}

nav ul li a.nav-login:hover {
    background: #d35400;
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-banner {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.page-banner h1 {
    font-size: 2.2em;
    margin: 0 0 10px;
}

.page-banner p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

.slides {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    width: 100%;
    animation: fadeSlide 0.8s ease;
}

.slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

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

.slide h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.slide p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 4px;
    transition: background 0.3s;
    z-index: 5;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
}

.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #e67e22;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #d35400;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.btn-small {
    padding: 6px 15px;
    font-size: 0.85em;
}

.btn-clear {
    background: #6c757d;
}

.btn-clear:hover {
    background: #5a6268;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1em;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #1a5276;
}

.bg-light {
    background: #fff;
}

/* Features */
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 0 0 380px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #1a5276;
    margin-bottom: 15px;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vm-block {
    position: relative;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26,82,118,0.25);
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.vm-block.show {
    opacity: 1;
    transform: translateY(0);
}

.vm-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

.vm-block:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(26,82,118,0.4);
}

.vm-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin-bottom: 16px;
    border: 2px solid rgba(255,255,255,0.35);
    transition: transform 0.4s ease, background 0.4s ease;
}

.vm-block:hover .vm-icon {
    transform: scale(1.12) rotate(6deg);
    background: rgba(230,126,34,0.35);
}

.vm-block h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #f39c12;
    letter-spacing: 0.5px;
}

.vm-block p {
    line-height: 1.8;
    color: #eaf2f8;
}

/* Programs */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.program-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e67e22;
    transition: transform 0.3s;
}

.program-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: #1a5276;
    margin-bottom: 10px;
}

/* Faculties & Programs (landing) */
.faculties {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
    padding: 70px 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
}

.faculty-card {
    position: relative;
    min-width: 0;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 30px 22px 26px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(26,82,118,0.08);
    overflow: visible;
    transition: transform 0.35s, box-shadow 0.35s;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a5276, #2980b9, #e67e22);
    border-radius: 16px 16px 0 0;
}

.faculty-card:hover {
    transform: translateY(-8px);
    border-color: #bcd7ea;
    box-shadow: 0 18px 40px rgba(26,82,118,0.18);
}

.faculty-card:hover::before {
    height: 6px;
}

.faculty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9em;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    box-shadow: 0 6px 16px rgba(26,82,118,0.25);
    transition: transform 0.35s;
}

.faculty-card:hover .faculty-icon {
    transform: scale(1.12) rotate(-6deg);
}

.faculty-name {
    color: #1a5276;
    font-size: 1.12em;
    margin-bottom: 8px;
}

.faculty-desc {
    color: #7f8c9b;
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 16px;
}

.faculty-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.faculty-program {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    background: #ffffff;
    border: 1.5px solid #e2ecf5;
    border-radius: 12px;
    padding: 10px 11px;
    text-align: left;
    font-size: 0.82em;
    font-weight: 600;
    color: #1a5276;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
    box-shadow: 0 3px 10px rgba(26,82,118,0.08);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

.faculty-program:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    border-color: #1a5276;
    box-shadow: 0 10px 22px rgba(26,82,118,0.28);
}

.faculty-program-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
    background: #eef5fb;
    border: 1px solid #d9e7f3;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.faculty-program:hover .faculty-program-icon {
    transform: scale(1.15);
    background: #fdebd0;
    border-color: #f8c471;
}

/* Programs page faculty grouping */
.faculty-block {
    margin-bottom: 45px;
}

.faculty-block-title {
    text-align: center;
    color: #1a5276;
    font-size: 1.35em;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e67e22;
    display: inline-block;
}

.faculty-block-title,
.faculty-block .program-grid {
    width: 100%;
}

/* Payment Section */
.payment-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-section h3 {
    color: #1a5276;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.payment-option {
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-label {
    display: block;
    text-align: center;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    background: #fff;
}

.payment-option input:checked + .payment-label {
    border-color: #1a5276;
    background: #eaf2f8;
    color: #1a5276;
}

.payment-option:hover .payment-label {
    border-color: #1a5276;
}

/* CTA */
.cta {
    text-align: center;
    background: #1a5276;
    color: #fff;
}

.cta {
    position: relative;
}

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

.cta h2 {
    color: #fff;
}

.cta p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

.campus-gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.admission-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5276;
}

.contact-intro {
    color: #555;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26,82,118,0.2);
}

.contact-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: #1a5276;
    margin-bottom: 8px;
    font-size: 1.05em;
}

.contact-card p {
    color: #555;
    font-size: 0.9em;
    word-break: break-word;
}

.contact-form h3 {
    color: #1a5276;
    margin-bottom: 20px;
}

/* Alerts */
.alert {    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: #1a5276;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Admin Login */
.admin-login-page {
    background: #1a5276;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.login-logo {
    text-align: center;
    margin-bottom: 15px;
}

.login-logo img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
}

.login-logo .logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 2.5em;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    border-radius: 50%;
}

.login-box h1 {
    text-align: center;
    color: #1a5276;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.login-box h2 {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 25px;
    font-weight: 400;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

/* Admin Dashboard */
.admin-header {
    background: #1a5276;
    color: #fff;
    padding: 15px 0;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.3em;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-nav span {
    font-size: 0.9em;
    opacity: 0.9;
}

.admin-power-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.2em;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s ease;
}

.admin-power-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231,76,60,0.25);
    transform: rotate(90deg) scale(1.05);
}

.content-section-title {
    color: #1a5276;
    font-size: 1.05em;
    margin: 25px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e67e22;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 480px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Dashboard Sidebar */
.admin-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.admin-sidebar {
    width: 240px;
    flex: 0 0 240px;
    background: #154360;
    align-self: stretch;
    z-index: 50;
}

.admin-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: #0f3049;
}

.admin-sidebar-logo img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
}

.admin-sidebar-logo .logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 1.4em;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    border-radius: 8px;
}

.admin-sidebar-logo span {
    color: #fff;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.2;
}

.admin-sidebar ul li a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    font-size: 0.95em;
    transition: background 0.3s, padding-left 0.3s, border-left 0.3s;
    border-left: 4px solid transparent;
}

.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
    background: #1a5276;
    border-left: 4px solid #e67e22;
    padding-left: 16px;
}

.admin-main {
    flex: 1;
    min-width: 0;
    padding: 25px;
}

.dashboard-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
}

.reports-section h2 {
    color: #1a5276;
    margin: 30px 0 20px;
}

/* Stats */
.dash-welcome {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(26,82,118,0.25);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.6s ease forwards;
}

.dash-welcome-text h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.dash-welcome-text p {
    opacity: 0.9;
    font-size: 0.95em;
}

.dash-welcome-icon {
    font-size: 3em;
    background: rgba(255,255,255,0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    position: relative;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.stat-card { border-top: none; }
.stat-card::before { background: #1a5276; }
.stat-card.pending::before { background: #f39c12; }
.stat-card.approved::before { background: #27ae60; }
.stat-card.rejected::before { background: #e74c3c; }

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.3s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
.stat-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(26,82,118,0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    background: rgba(26,82,118,0.1);
    color: #1a5276;
    transition: transform 0.3s, background 0.3s;
}

.stat-card.pending .stat-icon { background: rgba(243,156,18,0.12); color: #f39c12; }
.stat-card.approved .stat-icon { background: rgba(39,174,96,0.12); color: #27ae60; }
.stat-card.rejected .stat-icon { background: rgba(231,76,60,0.12); color: #e74c3c; }

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(6deg);
}

.stat-card h3 {
    font-size: 2.2em;
    color: #1a5276;
    transition: color 0.3s;
}

.stat-card:hover h3 {
    color: #e67e22;
}

.stat-card p {
    transition: color 0.3s;
}

.stat-card:hover p {
    color: #1a5276;
}

/* Tables */
.reports,
.applicants {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.6s ease forwards;
}

.reports { animation-delay: 0.5s; }
.applicants { animation-delay: 0.6s; }

.reports h2,
.applicants h2 {
    position: relative;
    padding-bottom: 10px;
    color: #1a5276;
}

.reports h2::after,
.applicants h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #e67e22;
    border-radius: 3px;
}

.report-table,
.applicant-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.report-table th,
.report-table td,
.applicant-table th,
.applicant-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.report-table th,
.applicant-table th {
    background: #1a5276;
    color: #fff;
    font-weight: 600;
}

.report-table tr:hover,
.applicant-table tr:hover {
    background: #f8f9fa;
}

/* Search */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.status-pending {
    background: #fef3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Status Form */
.status-form {
    display: flex;
    gap: 5px;
    align-items: center;
}

.status-form select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85em;
}

/* Reports */
.reports {
    margin: 30px 0;
}

.reports h2 {
    color: #1a5276;
}

.applicants h2 {
    color: #1a5276;
}

/* Admin Footer */
.admin-footer {
    background: #1a5276;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
}

.admin-footer a {
    color: #e67e22;
}

/* Report Section */
.reports-section {
    margin: 30px 0;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-header h2 {
    color: #1a5276;
    margin: 0;
}

.print-btn {
    background: #27ae60;
}

.print-btn:hover {
    background: #219a52;
}

.print-date {
    font-size: 0.5em;
    color: #999;
    font-weight: 400;
}

.report-university {
    color: #1a5276;
    font-size: 1.1em;
    margin: 0 0 2px 0;
    font-weight: 700;
}

@media print {
    .report-university {
        font-size: 18pt !important;
        margin-bottom: 5px !important;
    }

    .reports,
    .applicants,
    .dash-welcome,
    .stat-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Filter Box */
.filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
}

.filter-group input:focus {
    outline: none;
    border-color: #1a5276;
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-bottom: 2px;
}

/* Report Summary */
.report-summary {
    display: flex;
    gap: 30px;
    padding: 12px 15px;
    background: #eaf2f8;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #1a5276;
}

.report-summary strong {
    color: #154360;
}

/* Report Data Table */
.report-data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.report-data-table th {
    background: #1a5276;
    color: #fff;
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
}

.report-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.report-table-wrap .report-data-table {
    box-shadow: none;
}

.report-data-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
}

.report-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.report-count {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(26,82,118,0.25);
}

.report-count-icon {
    font-size: 1.6em;
}

.report-count-label {
    display: block;
    font-size: 0.78em;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-count-num {
    display: block;
    font-size: 1.7em;
    font-weight: 800;
    line-height: 1.1;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
}

.page-link {
    display: inline-block;
    padding: 7px 13px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #1a5276;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #eaf2f8;
    border-color: #1a5276;
}

.page-link.active {
    background: #1a5276;
    border-color: #1a5276;
    color: #fff;
}

.report-data-table tbody tr:hover {
    background: #f0f4f8;
}

.report-data-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.report-data-table tbody tr:nth-child(even):hover {
    background: #f0f4f8;
}

.no-data {
    text-align: center;
    padding: 30px !important;
    color: #999;
    font-style: italic;
}

.program-tag {
    display: inline-block;
    background: #eaf2f8;
    color: #1a5276;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
}

/* Print Styles */
@media print {
    header, .dashboard-menu, .admin-footer, .filter-box, .report-summary,
    .print-btn, .search-form, .btn, .admin-nav, form, .stats-grid, .reports,
    .applicants, .applicant-table, .status-form, .section, .form-container,
    .report-footer, .report-count, .pagination {
        display: none !important;
    }

    .report-data-table {
        display: table !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .report-data-table th {
        background: #1a5276 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .report-data-table td {
        border: 1px solid #ddd !important;
    }

    .status-badge {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .status-pending { background: #fef3cd !important; color: #856404 !important; }
    .status-approved { background: #d4edda !important; color: #155724 !important; }
    .status-rejected { background: #f8d7da !important; color: #721c24 !important; }

    .reports-section {
        margin: 0 !important;
        padding: 0 !important;
    }

    body {
        background: #fff !important;
        font-size: 11pt !important;
    }

    @page {
        margin: 15mm;
        size: A4 landscape;
    }

    .report-data-table th,
    .report-data-table td {
        padding: 6px 8px !important;
        font-size: 9pt !important;
    }

    .report-header h2 {
        font-size: 16pt !important;
        margin-bottom: 10px !important;
    }

    .report-header {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 15px !important;
    }

    .report-header .print-date {
        display: block !important;
        font-size: 8pt;
        color: #999;
    }

    .report-header .print-date {
        display: block !important;
    }
}

.how-works {
    background: #f8fafc;
}

.section-sub {
    text-align: center;
    color: #777;
    font-size: 1.05em;
    margin: -10px 0 35px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.how-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26,82,118,0.15);
}

.how-num {
    width: 46px;
    height: 46px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    border-radius: 50%;
}

.how-step h3 {
    color: #1a5276;
    font-size: 1.05em;
    margin-bottom: 8px;
}

.how-step p {
    color: #666;
    font-size: 0.92em;
    margin: 0;
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.campus-strip {
    padding-bottom: 50px;
}

.strip-track-wrap {
    overflow: hidden;
    width: 100%;
}

.strip-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: stripScroll 30s linear infinite;
}

.campus-strip:hover .strip-track {
    animation-play-state: paused;
}

.strip-item {
    flex: 0 0 auto;
    width: 300px;
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.strip-item:hover img {
    transform: scale(1.08);
}

@keyframes stripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .strip-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.social-hero {
    background: #1a5276;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.social-hero::before,
.social-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.social-hero::before {
    width: 300px;
    height: 300px;
    top: -120px;
    left: -100px;
}

.social-hero::after {
    width: 400px;
    height: 400px;
    bottom: -180px;
    right: -120px;
}

.social-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.social-hero-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.social-hero-text h2 {
    font-size: 1.8em;
    margin: 0 0 10px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #f5b041, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.social-hero-text p {
    animation: textFadeUp 1s ease both;
}

@keyframes textFadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.social-links .social-icon {
    animation: iconPop 0.6s ease both;
}

.social-links .social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-links .social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-links .social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-links .social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-links .social-icon:nth-child(5) { animation-delay: 0.5s; }
.social-links .social-icon:nth-child(6) { animation-delay: 0.6s; }

@keyframes iconPop {
    from { opacity: 0; }
    to { opacity: 1; }
}

.social-hero-text p {
    font-size: 1em;
    opacity: 0.9;
    margin: 0;
    max-width: 550px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.social-icon.facebook:hover { color: #1877f2; }
.social-icon.instagram:hover { color: #e1306c; }
.social-icon.twitter:hover { color: #000; }
.social-icon.whatsapp:hover { color: #25d366; }
.social-icon.telegram:hover { color: #229ed9; }
.social-icon.tiktok:hover { color: #000; }

@media (max-width: 768px) {
    .social-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .social-hero-text {
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    z-index: 999;
    overflow: hidden;
    animation: slide-up 0.3s ease;
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.whatsapp-popup-header {
    background: #075e54;
    color: #fff;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.whatsapp-popup-header img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.whatsapp-popup-header button {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-popup-body {
    padding: 25px 20px;
    text-align: center;
}

.whatsapp-popup-body p {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95em;
}

.whatsapp-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    transition: background 0.3s;
}

.whatsapp-chat-btn:hover {
    background: #1da851;
    color: #fff;
}

.whatsapp-chat-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media print {
    .whatsapp-btn,
    .whatsapp-popup {
        display: none !important;
    }
}

/* Responsive - Mobile First */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .menu-toggle { display: block; order: 3; }

    nav#mainNav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 10px;
    }

    nav#mainNav.show { display: block; }

    nav ul {
        flex-direction: column;
        gap: 2px;
    }

    nav ul li a {
        display: block;
        padding: 10px 12px;
        font-size: 0.9em;
    }

    .logo img { height: 40px; }
    .logo-icon { font-size: 2.2em; }
    .logo-text h1 { font-size: 1.4em; }
    .logo-text p { font-size: 0.7em; }

    .hero {
        padding: 50px 15px;
    }

    .slide { padding: 60px 15px; }
    .slide h2 { font-size: 1.5em; }
    .slide p { font-size: 1em; }
    .slider-btn { padding: 10px 14px; font-size: 1em; }

    .section { padding: 35px 0; }
    .section h2 { font-size: 1.4em; }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 150px;
    }

    .features { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }

    .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .admission-form { padding: 20px; }
    .form-container { max-width: 100%; }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn img { width: 28px; height: 28px; }

    .whatsapp-popup {
        width: 280px;
        right: 10px;
        bottom: 80px;
    }

    .login-wrapper { padding: 10px; }
    .login-box { padding: 25px; }

    .admin-header h1 { font-size: 1em; }

    .admin-layout { flex-direction: column; }

    .admin-sidebar {
        width: 100%;
        flex: none;
        height: auto;
        position: static;
    }

    .admin-main { padding: 15px; }

    .dashboard-menu-toggle { display: block; }

    .admin-sidebar ul {
        display: none;
        flex-direction: column;
    }

    .admin-sidebar ul.show { display: flex; }

    .admin-sidebar ul li a {
        padding: 10px 15px;
        font-size: 0.85em;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .admin-sidebar ul li a:hover,
    .admin-sidebar ul li a.active {
        padding-left: 15px;
        border-left: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card { padding: 15px; }
    .stat-card h3 { font-size: 1.5em; }

    .filter-form {
        flex-direction: column;
        gap: 10px;
    }

    .filter-group { min-width: 100%; }

    .report-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .report-data-table {
        font-size: 0.75em;
    }

    .report-data-table th,
    .report-data-table td {
        padding: 6px 4px;
        white-space: nowrap;
    }

    .report-summary {
        flex-direction: column;
        gap: 5px;
        font-size: 0.85em;
    }

    .applicant-table {
        font-size: 0.75em;
    }

    .applicant-table th,
    .applicant-table td {
        padding: 6px 4px;
    }

    .search-form {
        flex-direction: column;
        gap: 8px;
    }

    .status-form {
        flex-direction: column;
        gap: 5px;
    }

    .status-form select { width: 100%; }

    .admin-header .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .admin-nav {
        flex-direction: column;
        gap: 8px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container { padding: 0 15px; }

    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .menu-toggle { display: block; }

    nav#mainNav {
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    nav#mainNav.show { display: block; }

    nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5px;
        margin-top: 10px;
    }

    nav ul li a {
        display: block;
        padding: 10px 14px;
        font-size: 0.9em;
    }

    .slide { padding: 90px 20px; }
    .slide h2 { font-size: 2em; }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features { grid-template-columns: repeat(2, 1fr); }
    .program-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .admin-layout { flex-direction: column; }

    .admin-sidebar {
        width: 100%;
        flex: none;
        height: auto;
        position: static;
    }

    .admin-main { padding: 15px; }

    .dashboard-menu-toggle { display: block; }

    .admin-sidebar ul {
        display: none;
        flex-direction: column;
    }

    .admin-sidebar ul.show { display: flex; }

    .admin-sidebar ul li a {
        padding: 10px 16px;
        font-size: 0.85em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .admin-sidebar ul li a:hover,
    .admin-sidebar ul li a.active {
        padding-left: 16px;
        border-left: none;
    }

    .filter-form {
        flex-wrap: wrap;
    }

    .filter-group {
        min-width: 45%;
        flex: none;
    }

    .report-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .report-data-table {
        font-size: 0.8em;
    }

    .report-data-table th,
    .report-data-table td {
        padding: 8px 6px;
    }

    .applicant-table {
        font-size: 0.8em;
    }

    .applicant-table th,
    .applicant-table td {
        padding: 8px 6px;
    }

    .search-form {
        flex-wrap: wrap;
    }

    .admin-header .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .login-wrapper { padding: 15px; }
    .whatsapp-popup { width: 300px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container { padding: 0 20px; }

    .features { grid-template-columns: repeat(2, 1fr); }
    .program-grid { grid-template-columns: repeat(3, 1fr); }

    .filter-group { min-width: 200px; }
}

/* Horizontal scroll for tables on small screens */
@media (max-width: 768px) {
    .applicants,
    .reports-section {
        overflow-x: auto;
    }

    .report-data-table,
    .applicant-table {
        min-width: 700px;
    }
}

/* Scroll reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

[data-reveal="left"] { transform: translateX(-55px); }
[data-reveal="right"] { transform: translateX(55px); }
[data-reveal="zoom"] { transform: scale(0.82); }
[data-reveal="fade"] { transform: none; }

[data-reveal].reveal-visible {
    opacity: 1;
    transform: none;
}

.how-grid > [data-reveal]:nth-child(2) { --reveal-delay: 0.15s; }
.how-grid > [data-reveal]:nth-child(3) { --reveal-delay: 0.3s; }
.how-grid > [data-reveal]:nth-child(4) { --reveal-delay: 0.45s; }

.gallery-grid > [data-reveal]:nth-child(2) { --reveal-delay: 0.15s; }
.gallery-grid > [data-reveal]:nth-child(3) { --reveal-delay: 0.3s; }
.gallery-grid > [data-reveal]:nth-child(4) { --reveal-delay: 0.45s; }

.cta [data-reveal]:nth-child(2) { --reveal-delay: 0.15s; }
.cta [data-reveal]:nth-child(3) { --reveal-delay: 0.3s; }

.slide [data-reveal]:nth-child(2) { --reveal-delay: 0.25s; }
.slide [data-reveal]:nth-child(3) { --reveal-delay: 0.5s; }

.faculty-grid > [data-reveal]:nth-child(2) { --reveal-delay: 0.15s; }
.faculty-grid > [data-reveal]:nth-child(3) { --reveal-delay: 0.3s; }
.faculty-grid > [data-reveal]:nth-child(4) { --reveal-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
