/* Facilities Page Specific CSS */
.premium-fac-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: -1px;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(59, 130, 246, 0.2);
    filter: blur(80px);
    border-radius: 50%;
    animation: float-shape 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes float-shape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

.premium-fac-hero .container {
    position: relative;
    z-index: 2;
}

.premium-fac-hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white) !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-fac-hero p {
    font-size: 1.6rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-arrow 2s infinite;
    font-size: 2rem;
    color: #ff510e;
    z-index: 10;
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* 2ï¸âƒ£ Overview Premium Block */
.premium-overview {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.overview-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.deco-line {
    width: 4px;
    height: 60px;
    background: var(--brand-accent);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.premium-overview p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-body);
}

.feature-icons-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 200px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2) translateY(-5px);
    color: var(--brand-accent);
}

.feature-item span {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 3ï¸âƒ£ Glassmorphism Cards */
.glass-fac-section {
    padding: 120px 0;
    background: #f8fafc;
}

.glass-fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.glass-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.glass-card:hover .card-img-wrapper img {
    transform: scale(1.15);
}

.img-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.8));
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.glass-card:hover .img-gradient-overlay {
    opacity: 0.9;
}

.badge-float {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--brand-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(255, 81, 14, 0.4);
    z-index: 2;
}

.glass-card-content {
    padding: 40px;
}

.glass-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.glass-card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 4ï¸âƒ£ Parallax Section */
.premium-parallax {
    position: relative;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1541339907198-e08756eaa589?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.parallax-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
}

.parallax-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.parallax-inner h2 {
    font-size: 3.5rem;
    color: var(--white) !important;
    margin-bottom: 25px;
}

.parallax-inner p {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* 5ï¸âƒ£ Infrastructure Stats - Premium Dark */
.premium-dark-stats {
    background: #0f172a;
    padding: 120px 0;
    color: var(--white);
}

.premium-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

.premium-stat-item {
    text-align: center;
}

.premium-stat-item i {
    font-size: 3rem;
    color: var(--brand-accent);
    margin-bottom: 20px;
    display: block;
}

.premium-stat-item .stat-num {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.stat-accent-line {
    width: 0;
    height: 4px;
    background: var(--brand-accent);
    margin: 10px auto;
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-stat-item.active .stat-accent-line {
    width: 80px;
}

/* 6ï¸âƒ£ Virtual Tour Section */
.premium-virtual-tour {
    padding: 140px 0;
    background: var(--white);
}

.premium-tour-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.tour-video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.tour-video-box img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

.tour-video-box:hover img {
    transform: scale(1.05);
}

.tour-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease;
}

.tour-play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-accent);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.tour-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--brand-primary);
}

.tour-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--brand-primary);
    color: var(--white);
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-cta-btn:hover {
    background: var(--brand-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 81, 14, 0.3);
    color: var(--white);
}

/* 7ï¸âƒ£ Masonry Gallery Grid */
.premium-masonry-gallery {
    padding: 120px 0;
    background: #f8fafc;
}

.masonry-wrap {
    columns: 4 300px;
    column-gap: 30px;
}

.masonry-tile {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: crosshair;
}

.masonry-tile img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.masonry-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 69, 128, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all 0.5s ease;
    padding: 30px;
}

.masonry-tile:hover .masonry-hover {
    opacity: 1;
}

.masonry-tile:hover img {
    transform: scale(1.15);
}

/* 8ï¸âƒ£ Student Experience Section */
.premium-experience {
    padding: 140px 0;
    background: #ffffff;
}

.experience-slider-box {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    background: var(--light-bg);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.student-pfp {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.experience-quote {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Outfit';
    color: var(--text-heading);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* 9ï¸âƒ£ Premium CTA Wrapper */
.premium-cta-banner {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.cta-wave-top svg {
    height: 80px;
    width: 100%;
    fill: #ffffff;
}

.premium-cta-banner h2 {
    font-size: 4rem;
    color: var(--white) !important;
    margin-bottom: 30px;
    font-weight: 800;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.btn-premium {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.btn-primary-filled {
    background: var(--brand-accent);
    color: var(--white);
}

.btn-primary-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1200px) {
    .masonry-wrap {
        columns: 3;
    }
}

@media (max-width: 992px) {
    .premium-tour-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .premium-fac-hero h1 {
        font-size: 3.5rem;
    }

    .masonry-wrap {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .cta-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .premium-experience {
        padding: 80px 20px;
    }

    .experience-slider-box {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   ALUMNI MODULE STYLES - CONSOLIDATED
   ========================================================================== */

/* 1ï¸âƒ£ Alumni Registration Styles */
.registration-hero {
    background: url("assets/Alumni/Desktop/Banner.png");
    padding: 90px 0;
    text-align: center;
    border-bottom: 2px solid #bfdbfe;
    margin-top: -1px;
}

.registration-hero h1 {
    font-size: 3.2rem;
    color: var(-- white) !important;
    margin-bottom: 0.5rem;
}

.registration-hero p {
    font-size: 1.25rem;
    color: var(--text-body);
}

.reg-intro-section {
    padding: 80px 0;
    text-align: center;
}

.reg-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.reg-intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
}

.registration-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-card-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(19, 69, 128, 0.1);
    padding: 2.5rem 4rem;
    border-radius: 30px;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eaeff5;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    color: #1e293b;
    outline: none !important;
}

.form-control::placeholder {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.form-control:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(19, 69, 128, 0.1), 0 15px 35px rgba(19, 69, 128, 0.05);
    transform: translateY(-3px);
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(to right, var(--brand-primary), #3b82f6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control:invalid {
    color: #94a3b8;
}

select.form-control:focus {
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(to right, var(--brand-primary), #3b82f6),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23134580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-origin: border-box;
    background-clip: padding-box, border-box, border-box;
    background-position: center, center, right 1rem center;
    background-repeat: no-repeat;
    background-size: auto, auto, 1em;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Upload Box Styling - Matching Reference Design */
.upload-box-wrapper {
    width: 100%;
}

.file-input-hidden {
    display: none;
}

.upload-box {
    width: 100%;
    min-height: 140px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-box:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
}

.upload-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.upload-highlight {
    color: #3b82f6;
    font-weight: 600;
}

.upload-limit {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.upload-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    width: 100%;
}

.upload-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
}

.upload-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-success i {
    font-size: 2rem;
    color: #10b981;
}

.upload-success p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    display: none;
}

.btn-submit-reg {
    background-color: var(--brand-primary);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 10px 25px rgba(19, 69, 128, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-submit-reg:hover {
    background-color: #0f3664;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 69, 128, 0.3);
}

.btn-submit-reg:active {
    transform: translateY(-1px) scale(0.98);
}

/* Toast Notification - Matching Contact Form Design */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
}

.toast {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-left: 5px solid #28a745;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 15px;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    color: #28a745;
    font-size: 1rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #1a202c;
}

.toast-message {
    font-size: 0.85rem;
    color: #64748b;
}

.toast-close {
    cursor: pointer;
    color: #94a3b8;
    background: none;
    border: none;
    font-size: 1.1rem;
    margin-left: auto;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: #ef4444;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #28a745;
    transform-origin: left;
    transform: scaleX(0);
}

.toast.show .toast-progress {
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: 80px;
        right: 15px;
        left: 15px;
    }

    .toast {
        min-width: auto;
        width: 100%;
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .toast-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .toast-title {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .toast-message {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* 2ï¸âƒ£ Alumni Notice Styles Enhancement */
.notice-hero {
    background: #f8fafc;
    border-bottom: 2px solid #eff6ff;
    padding: 100px 0 80px;
}

.notice-hero .underline {
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.notice-list {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 60px;
}

.notice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
}

.notice-row:hover {
    background: #f8fafc;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-icon {
    font-size: 1.5rem;
    color: #ef4444;
}

.notice-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--brand-primary);
    transition: var(--transition-smooth);
}

.notice-row:hover .notice-info h3 {
    text-decoration: underline;
}

.notice-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.notice-date {
    font-size: 0.9rem;
    color: var(--text-body);
    opacity: 0.7;
}

.btn-pdf-dl {
    background: var(--brand-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pdf-dl:hover {
    background: var(--brand-accent);
    color: var(--white);
}

/* Section Headers Standardized */
.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.section-header-centered .heading-accent {
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* 3ï¸âƒ£ Alumni Overview & Achievements */
.alumni-hero {
    background: linear-gradient(rgba(19, 69, 128, 0.85), rgba(19, 69, 128, 0.85)), url('https://images.unsplash.com/photo-1541339907198-e08756eaa589?auto=format&fit=crop&w=1920&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 160px 0 100px !important;
    color: var(--white) !important;
}

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--brand-primary);
}

/* 4ï¸âƒ£ Responsive Utilities for Alumni Module */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-header-centered h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .registration-hero h1 {
        font-size: 2.5rem;
    }

    .form-card-container {
        padding: 25px 20px;
    }

    .notice-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .notice-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================================================
   ALUMNI PAGES STYLES (COMPLETE)
   ========================================================================== */

/* 1ï¸âƒ£ Alumni Hero & General */
.alumni-hero {
    background: linear-gradient(rgba(128, 19, 19, 0.85), rgba(19, 69, 128, 0.85)), url('https://images.unsplash.com/photo-1523050335392-9385117942de?auto=format&fit=crop&w=1920&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 160px 0 100px !important;
    color: var(--white) !important;
}

.alumni-hero h1 {
    font-size: 4rem;
    color: var(--white) !important;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.alumni-hero h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
}

/* 2ï¸âƒ£ Alumni Overview Section */
.alumni-overview-section {
    padding: 100px 0;
    background: var(--white);
}

.alumni-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.alumni-overview-content h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.alumni-overview-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.alumni-overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.alumni-overview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* 3ï¸âƒ£ Alumni Achievements / Cards */
.alumni-achievements-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.1rem;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.section-header-centered .heading-accent {
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    margin: 0 auto;
    border-radius: 2px;
}

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

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--brand-primary);
}

.achievement-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--brand-primary);
}

.alumni-batch {
    color: var(--brand-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* 4ï¸âƒ£ Testimonials Slider */
.alumni-testimonials-section {
    padding: 100px 0;
    background: #eff6ff;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(50px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testi-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
    border: 5px solid #f1f5f9;
}

.testi-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-heading);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testi-author h4 {
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin-bottom: 5px;
}

.testi-meta {
    font-size: 0.95rem;
    color: var(--text-body);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--brand-primary);
    transform: scale(1.3);
}

/* 5ï¸âƒ£ Alumni Events Styles */
.upcoming-events-section {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid #f1f5f9;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-img-wrapper {
    position: relative;
    height: 220px;
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-primary);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-body {
    padding: 25px;
}

.event-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.event-body p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: var(--brand-accent);
    width: 16px;
}

.btn-event-reg {
    display: block;
    text-align: center;
    background: var(--brand-primary);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-event-reg:hover {
    background: var(--brand-accent);
    color: var(--white);
}

/* Annual Meet */
.annual-meet-section {
    padding: 100px 0;
    background: #eff6ff;
}

.annual-meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.annual-meet-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.annual-meet-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.annual-meet-content h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

/* 6ï¸âƒ£ Alumni Notice Styles */
.notice-hero {
    background: #f8fafc;
    border-bottom: 2px solid #eff6ff;
    padding: 100px 0 80px;
}

.notice-hero .underline {
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.notice-list {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.notice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
}

.notice-row:hover {
    background: #f8fafc;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-icon {
    font-size: 1.5rem;
    color: #ef4444;
}

.notice-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--brand-primary);
    transition: var(--transition-smooth);
}

.notice-row:hover .notice-info h3 {
    text-decoration: underline;
}

.notice-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.notice-date {
    font-size: 0.9rem;
    color: var(--text-body);
    opacity: 0.7;
}

.btn-pdf-dl {
    background: var(--brand-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pdf-dl:hover {
    background: var(--brand-accent);
    color: var(--white);
}

.archive-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 25px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab.active {
    background: var(--brand-primary);
    color: var(--white);
    border-color: var(--brand-primary);
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.archive-table th {
    background: var(--brand-primary);
    color: var(--white);
    text-align: left;
    padding: 15px 25px;
}

.archive-table td {
    padding: 15px 25px;
    border-bottom: 1px solid #f1f5f9;
}

.archive-table tr:hover {
    background: #f8fafc;
}

@media (max-width: 992px) {

    .alumni-overview-grid,
    .annual-meet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .alumni-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .notice-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .notice-right {
        width: 100%;
        justify-content: space-between;
    }

    .alumni-hero h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   ALUMNI EVENTS PAGE STYLES
   ========================================================================== */

/* 2ï¸âƒ£ Upcoming Events Section */
.upcoming-events-section {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid #f1f5f9;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-img-wrapper {
    position: relative;
    height: 220px;
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-primary);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-badge span {
    display: block;
}

.date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.date-badge .day {
    font-size: 1.4rem;
}

.event-body {
    padding: 25px;
}

.event-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.event-body p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: var(--brand-accent);
    width: 16px;
}

.btn-event-reg {
    display: block;
    text-align: center;
    background: var(--brand-primary);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-event-reg:hover {
    background: var(--brand-accent);
    color: var(--white);
}

/* 3ï¸âƒ£ Past Events Section */
.past-events-section {
    padding: 100px 0;
    background: #f8fafc;
}

.past-events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 69, 128, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.past-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.past-event-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* 4ï¸âƒ£ Annual Meet Section */
.annual-meet-section {
    padding: 100px 0;
    background: #eff6ff;
}

.annual-meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.annual-meet-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.annual-meet-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.annual-meet-content h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.annual-meet-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlights-list {
    margin-bottom: 30px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.highlights-list i {
    color: var(--brand-accent);
}

/* 5ï¸âƒ£ Event Calendar Section */
.calendar-section {
    padding: 100px 0;
    background: var(--white);
}

.calendar-table-wrapper {
    overflow-x: auto;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.calendar-table th {
    background: #f1f5f9;
    padding: 15px;
    text-align: left;
    color: var(--brand-primary);
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
}

.calendar-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-upcoming {
    background: #dcfce7;
    color: #166534;
}

.status-completed {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 992px) {
    .annual-meet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   ALUMNI PAGES STYLES
   ========================================================================== */

.alumni-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.482), rgba(0, 0, 0, 0.51)), url('assets/Alumni/Desktop/Banner.png') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 160px 0 100px !important;

}

.alumni-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.alumni-hero h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* 2ï¸âƒ£ Alumni Overview Section */
.alumni-overview-section {
    padding: 100px 0;
    background: var(--white);
}

.alumni-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.alumni-overview-content h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.alumni-overview-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.alumni-overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.alumni-overview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* 3ï¸âƒ£ Alumni Achievements Section */
.alumni-achievements-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.achievement-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.alumni-batch {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.alumni-pos {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 4ï¸âƒ£ Testimonials Slider Section */
.alumni-testimonials-section {
    padding: 100px 0;
    background: #eff6ff;
    /* Light blue tint */
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(50px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testi-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
    border: 5px solid #f1f5f9;
}

.testi-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testi-author h4 {
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin-bottom: 5px;
}

.testi-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* 5ï¸âƒ£ Alumni Engagement Section */
.alumni-engagement-section {
    padding: 100px 0;
    background: var(--white);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.engage-card {
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.engage-card:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.engage-card:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.engage-card:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

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

.engage-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.engage-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-engage {
    align-self: flex-start;
    padding: 10px 25px;
    background: var(--white);
    color: var(--brand-primary);
    border-radius: 5px;
    font-weight: 600;
}

/* 6ï¸âƒ£ Call To Action */
.alumni-cta-section {
    padding: 80px 0;
    background: var(--brand-primary);
    text-align: center;
    color: var(--white);
}

.alumni-cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.alumni-cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .alumni-overview-grid {
        grid-template-columns: 1fr;
    }

    .alumni-hero h1 {
        font-size: 3rem;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --section-padding: 100px 0;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
    margin-top: 20px;
}

/* 2ï¸âƒ£ Visual Organizational Structure (CSS Tree) */
.org-structure-section {
    padding: var(--section-padding);
}

.org-tree {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.org-box {
    background: var(--white);
    border-left: 5px solid var(--brand-primary);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: inline-block;
    min-width: 220px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--brand-primary);
    position: relative;
    z-index: 2;
}

.org-box.main-role {
    background-color: #f1f5f9;
}

.org-box.branch-title {
    background-color: var(--brand-primary);
    color: #fff;
    border-left: none;
}

.tree-line-v {
    width: 2px;
    height: 40px;
    background-color: #cbd5e1;
    margin: 0 auto;
}

.tree-branch-container {
    position: relative;
    margin-top: 0;
}

.tree-branch-h {
    width: 50%;
    height: 2px;
    background-color: #cbd5e1;
    margin: 0 auto;
    position: relative;
}

.tree-branch-h::before,
.tree-branch-h::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 30px;
    background-color: #cbd5e1;
}

.tree-branch-h::before {
    left: 0;
}

.tree-branch-h::after {
    right: 0;
}

.tree-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 30px;
}

.tree-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* 3ï¸âƒ£ Hierarchy Explanation Section */
.explanation-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
}

.explanation-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.explanation-list li {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.explanation-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.explanation-list li:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--brand-accent);
}

/* 4ï¸âƒ£ Structured Lists (Admin & Academic) */
.details-section {
    padding: var(--section-padding);
}

.details-section.bg-light {
    background-color: #f9fafb;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.role-list {
    list-style: none;
    padding: 0;
}

.role-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.role-list li:last-child {
    border-bottom: none;
}

.role-name {
    font-weight: 600;
    color: var(--brand-primary);
}

.role-tag {
    font-size: 0.85rem;
    background: #eff6ff;
    color: var(--brand-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Indentation for Academic Hierarchy */
.indent-1 {
    padding-left: 20px !important;
}

.indent-2 {
    padding-left: 40px !important;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .tree-rows {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tree-branch-h {
        display: none;
    }

    .tree-line-v.mobile-only {
        display: block;
        height: 30px;
    }

    .org-box {
        width: 100%;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --section-padding: 100px 0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
}

/* 2ï¸âƒ£ Management Overview */
.overview-section {
    padding: var(--section-padding);
    text-align: center;
    background: var(--white);
}

.overview-section h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.overview-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-accent);
    border-radius: 2px;
}

.overview-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* 3ï¸âƒ£ Leadership Profiles (Horizontal Split) */
.mgmt-section {
    background: var(--white);
}

.mgmt-row {
    padding: 100px 0;
    border-top: 1px solid #f1f5f9;
}

.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.mgmt-row.alternate .mgmt-grid {
    direction: rtl;
}

.mgmt-row.alternate .mgmt-content {
    direction: ltr;
    /* Reset text direction for content */
}

.mgmt-image-box {
    position: relative;
}

.mgmt-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
    background-color: #f1f5f9;
}

.mgmt-content h3 {
    font-size: 2rem;
    /* 32px roughly */
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.mgmt-role {
    font-weight: 600;
    color: var(--brand-accent);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mgmt-desc {
    font-size: 1rem;
    /* 16px */
    line-height: 1.7;
    color: var(--text-body);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-80px);
}

[data-animate="slide-in-right"] {
    transform: translateX(80px);
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate].active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .mgmt-grid {
        gap: 3rem;
    }

    .mgmt-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mgmt-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mgmt-row.alternate .mgmt-grid {
        direction: ltr;
    }

    .mgmt-image {
        height: 300px;
    }

    .mgmt-row {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .overview-section h2 {
        font-size: 2rem;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --section-padding: 100px 0;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
}

/* 2ï¸âƒ£ Vision Section */
.vision-section {
    padding: var(--section-padding);
}

/* Specific to Mission & Vision page */
.vision-section .vision-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 4rem;
    border-left: 8px solid var(--brand-primary);
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.label-vision {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--brand-primary);
    font-style: italic;
    font-weight: 500;
}

/* 3ï¸âƒ£ Mission Section */
.mission-section {
    padding: var(--section-padding);
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    border-radius: 2px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    transition: var(--transition-smooth);
}

.mission-item i {
    font-size: 1.5rem;
    color: var(--brand-accent);
    margin-top: 0.3rem;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* 4ï¸âƒ£ Core Values Section */
.values-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--brand-primary);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 5ï¸âƒ£ Quality Policy Section */
.policy-section {
    padding: var(--section-padding);
}

.policy-box {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border-top: 6px solid var(--brand-primary);
    max-width: 1000px;
    margin: 0 auto;
}

.policy-box h2 {
    font-size: 2.4rem;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-box p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-body);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-in-right"] {
    transform: translateX(50px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].active {
    opacity: 1;
    transform: translate(0, 0);
}

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

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

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

    .vision-box,
    .policy-box {
        padding: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .vision-text {
        font-size: 1.4rem;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --section-padding: 100px 0;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 90px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
}

/* 2ï¸âƒ£ Organogram Image Section */
.chart-section {
    padding: var(--section-padding);
    text-align: center;
}

.chart-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.chart-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.chart-caption {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-body);
    font-weight: 500;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--brand-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.download-btn:hover {
    background-color: var(--brand-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 81, 14, 0.3);
}

/* 3ï¸âƒ£ Hierarchy Explanation Section */
.hierarchy-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.hierarchy-flow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flow-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.flow-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    bottom: -50px;
    width: 2px;
    background: #cbd5e1;
}

.flow-item:last-child::before {
    display: none;
}

.flow-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--brand-primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 2;
}

.flow-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.flow-content h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--brand-primary);
}

.sub-level {
    margin-left: 40px;
    margin-top: 1rem;
}

.sub-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-body);
}

.sub-item i {
    font-size: 0.8rem;
    color: var(--brand-accent);
}

/* 4ï¸âƒ£ Administrative Structure Section */
.admin-section {
    padding: var(--section-padding);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.structure-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.structure-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: 0 20px 40px rgba(19, 69, 128, 0.08);
}

.structure-card i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.structure-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.structure-card p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* 5ï¸âƒ£ Academic Structure Section */
.academic-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.academic-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.academic-item {
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.academic-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.academic-icon {
    width: 50px;
    height: 50px;
    background-color: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.academic-icon i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.academic-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--brand-primary);
}

.academic-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-in-right"] {
    transform: translateX(50px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .chart-container {
        padding: 10px;
    }

    .academic-item {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .academic-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .sub-level {
        margin-left: 20px;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --section-padding: 90px 0;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
}

/* 2ï¸âƒ£ Principal Profile Section */
.profile-section {
    padding: var(--section-padding);
    background: #fdfdfd;
}

.profile-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-primary);
}

.profile-designation {
    font-size: 1.2rem;
    color: var(--brand-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.profile-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* 3ï¸âƒ£ Welcome Message Section */
.message-section {
    padding: var(--section-padding);
}

.message-container {
    max-width: 900px;
    margin: 0 auto;
}

.message-lead {
    font-size: 1.25rem;
    color: var(--brand-primary);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.message-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* 4ï¸âƒ£ Academic Philosophy Section */
.philosophy-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.phil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.phil-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.phil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phil-card i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.phil-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.phil-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 5ï¸âƒ£ Goals & Future Plans Section */
.goals-section {
    padding: var(--section-padding);
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.goals-list {
    list-style: none;
    padding: 0;
}

.goals-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.goals-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand-accent);
}

/* Specific to Principal's desk / Goals section */
.goals-grid .vision-box {
    background: var(--brand-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border-left: 10px solid var(--brand-accent);
}

.vision-box h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.vision-box p {
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 6ï¸âƒ£ Signature Section */
.signature-section {
    padding: var(--section-padding);
    text-align: right;
    border-top: 1px solid #eee;
}

.signature-content img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.signature-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.2rem;
}

.signature-desc {
    font-size: 1rem;
    color: var(--text-body);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-in-right"] {
    transform: translateX(50px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 992px) {

    .profile-grid,
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .profile-image {
        height: 400px;
    }
}

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

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .profile-info h3 {
        font-size: 2rem;
    }
}

:root {
    --brand-primary: #134580;
    --brand-accent: #ff510e;
    --text-heading: #1f2937;
    --text-body: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --section-padding: 80px 0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--brand-primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1ï¸âƒ£ Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    border-bottom: 5px solid var(--brand-accent);
    color: var(--white);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
}

/* 2ï¸âƒ£ AICTE Section */
.recognition-section {
    padding: var(--section-padding);
}

.info-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.info-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-row {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-primary);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-download:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
    color: var(--white);
}

/* 3ï¸âƒ£ University Section */
.university-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 4rem;
    align-items: center;
}

.uni-logo {
    width: 100%;
    height: auto;
    max-width: 180px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.uni-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 4ï¸âƒ£ NAAC Badge Section */
.naac-badge-card {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border: 2px dashed var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    border-radius: 20px;
}

.naac-info h3 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.badge-style {
    background: var(--brand-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* 5ï¸âƒ£ Gallery Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.cert-card i {
    font-size: 3.5rem;
    color: #ef4444;
    /* PDF Red */
    margin-bottom: 1.5rem;
}

.cert-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.cert-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cert-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* 6ï¸âƒ£ Table Layout */
.official-table-container {
    overflow-x: auto;
}

.official-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.official-table th {
    background: #f8fafc;
    color: var(--brand-primary);
    text-align: left;
    padding: 1.2rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
}

.official-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
}

.official-table tr:hover {
    background: #f1f5f9;
}

.table-btn {
    color: var(--brand-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-btn:hover {
    color: var(--brand-accent);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-80px);
}

[data-animate="slide-in-right"] {
    transform: translateX(80px);
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate].active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .university-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .uni-logo {
        margin: 0 auto;
    }

    .naac-badge-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}

/* Alumni Registration Form Styles */
.registration-form-section {
    padding: 4rem 0 8rem;
    background: #ffffff;
}

.alumni-form-clean {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(19, 69, 128, 0.1);
    padding: 2.5rem 4rem;
    border-radius: 30px;
    position: relative;
    z-index: 10;
}

.alumni-form-clean .form-title {
    font-size: 2.6rem;
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.alumni-form-clean form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alumni-form-clean .form-group {
    flex: 1;
    position: relative;
}

.alumni-form-clean .form-group input,
.alumni-form-clean .form-group textarea,
.alumni-form-clean .form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eaeff5;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    color: #1e293b;
    outline: none !important;
}

.alumni-form-clean .form-group input::placeholder,
.alumni-form-clean .form-group textarea::placeholder {
    color: #94a3b8;
}

.alumni-form-clean .form-group input:focus,
.alumni-form-clean .form-group textarea:focus,
.alumni-form-clean .form-group select:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(19, 69, 128, 0.1), 0 15px 35px rgba(19, 69, 128, 0.05);
    transform: translateY(-3px);
}

.alumni-form-clean .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.alumni-form-clean .form-group select:invalid {
    color: #94a3b8;
}

/* Upload Box Styles */
.upload-box {
    width: 100%;
    min-height: 140px;
    border: 2px dashed #eaeff5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.upload-box:hover {
    border-color: var(--brand-primary);
    background: rgba(19, 69, 128, 0.02);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.upload-content i {
    font-size: 2.5rem;
    color: #00bef0;
    margin-bottom: 8px;
}

.upload-text {
    color: #00bef0;
    font-weight: 600;
}

.upload-limit {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
    margin-top: 4px;
}

.upload-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 15px;
}

.upload-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.upload-success {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.upload-success i {
    font-size: 1.2rem;
}

.alumni-form-clean .submit-btn {
    background-color: var(--brand-primary);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    align-self: flex-start;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(19, 69, 128, 0.25);
    position: relative;
    overflow: hidden;
}

.alumni-form-clean .submit-btn:hover {
    background-color: #0f3664;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 69, 128, 0.3);
}

.alumni-form-clean .submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .alumni-form-clean {
        padding: 2rem 1.5rem;
    }

    .alumni-form-clean .form-title {
        font-size: 2rem;
    }

    .upload-box {
        min-height: 120px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
}

/* --- Global Search Results --- */
.search-results-container {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-results-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.search-result-item {
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 81, 14, 0.08);
    transform: scale(1.01);
}

.search-result-title {
    font-weight: 700;
    color: #ff510e;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.search-result-content {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.no-results {
    padding: 30px;
    text-align: center;
    color: #888;
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #ccc;
}

/* Fix logo spacing on scroll */
#navbar.scrolled .logo img {
    height: 60px !important;
}