/* --- Animated Top Line --- */
.top-animated-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    /* Super thin line */
    z-index: 10000;
    background: linear-gradient(90deg, #ff510e, #ff0080, #ec4899, #7928ca, #6366f1, #0ea5e9, #0070f3, #00dfd8, #10b981, #84cc16, #f59e0b, #ff510e);
    background-size: 200% 100%;
    animation: runningLine 6s linear infinite;
}

@keyframes runningLine {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 0%;
    }
}

/* Base Variables */
:root {
    --primary: #3b82f6;
    /* Modern Blue */
    --primary-dark: #1d4ed8;
    --secondary: #f8f9fa;
    /* Light Gray */
    --bg-color: #ffffff;
    --text-main: #1f2937;
    /* Very Dark Gray */
    --text-muted: #6b7280;
    /* Medium Gray */
    --white: #ffffff;
    --dark-bg: #111827;
    /* For elements that need to stay dark */
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --nav-bg: rgba(30, 58, 138, 0.95);
    /* Blue background for navbar */
    --nav-text: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --brand-primary: #134580;
    /* Official Brand Color */
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Reset & Scaffolding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 136px;
    /* Height of top-bar + navbar */
}

/* Global Orange Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: #ff510e !important;
    border-radius: 10px !important;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e64600 !important;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff510e #f1f5f9;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sub-heading {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--brand-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
    position: fixed;
    top: 1.5px;
    /* Adjust for thinner line */
    left: 0;
    z-index: 1005;
    /* Consistently higher than navbar (1003) */
    display: block;
    overflow: visible !important;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible !important;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right {
    position: relative;
    overflow: visible !important;
}

.login-dropdown-container {
    position: relative;
}

.login-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 99999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUpDropdown 0.3s ease forwards;
}

.login-dropdown-menu.active {
    display: block !important;
}

.login-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 20px !important;
    color: #374151 !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    width: 100%;
}

.login-option:hover {
    background: #f3f4f6 !important;
    color: var(--brand-primary) !important;
}

.login-option img {
    width: 20px;
    height: 20px;
}

@keyframes slideUpDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.top-bar a:hover {
    color: #e2e8f0;
    /* Off-white hover for links */
}

.top-bar a.announcement-text {
    background: #ff510e;
    /* Brand Accent Color */
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
}

.top-bar a.announcement-text:hover {
    color: white;
    /* No text color change on button hover */
    background: #e64600;
    /* Subtle background change instead */
}

.top-bar-right a i {
    font-size: 0.9rem;
}

/* Ticker Animation for Admission Enquiry */
.admission-ticker {
    height: 20px !important;
    overflow: hidden !important;
    display: inline-block !important;
    vertical-align: middle;
    position: relative;
}

.ticker-content {
    display: block;
    animation: ticker-slide 10s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes ticker-slide {

    0%,
    40% {
        transform: translateY(0);
    }

    50%,
    90% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(-40px);
    }
}

.ticker-item {
    height: 20px !important;
    line-height: 20px !important;
    white-space: nowrap;
    display: block !important;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 36px;
    /* space for top-bar (~34.5px) + animated-line (1.5px) */
    left: 0;
    width: 100%;
    z-index: 1003;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition);
    height: 100px;
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    height: 80px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
    transition: var(--transition);
}

.nav-link.active::after {
    width: 100%;
}

@media (min-width: 1151px) {
    .nav-link:hover i {
        transform: rotate(180deg);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--brand-primary);
    }
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--brand-primary);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    z-index: 1000;
}

@media (min-width: 1151px) {
    .nav-item:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-item {
    color: var(--text-main);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    border-bottom: 1px solid #f3f4f6;
    text-transform: none;
    /* Ensure submenus are not forced uppercase */
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--brand-primary);
    padding-left: 25px;
}

/* Nested Dropdown */
.dropdown-menu li {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -10px;
    /* Align with parent item */
    min-width: 260px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--brand-primary);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    z-index: 1001;
}

@media (min-width: 1151px) {
    .dropdown-menu li:hover>.submenu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-item i.fa-caret-right {
    font-size: 0.8em;
    opacity: 0.5;
}

.dropdown-item:hover i.fa-caret-right {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.nav-divider {
    height: 20px;
    width: 1px;
    background-color: #e5e7eb;
}

/* Search Bar - New Design */
.search-trigger-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.search-trigger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand-primary);
}

/* Search Bar - Glass Morphism & Below Navbar Animation */
.search-overlay {
    position: fixed;
    top: 36px;
    /* Starts behind the navbar */
    left: 0;
    width: 100%;
    height: 100px;
    /* Initial navbar height */
    z-index: 1002;
    /* Behind navbar (1003) but above page content */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Slower, smoother animation */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
}

.search-overlay.active {
    transform: translateY(100px);
    /* Slips down below 100px navbar */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#navbar.scrolled~.search-overlay {
    height: 80px;
}

#navbar.scrolled~.search-overlay.active {
    transform: translateY(80px);
    /* Slips down below 80px navbar */
}

/* Responsive adjustments for search overlay */
@media (max-width: 1440px) {
    .search-overlay {
        height: 80px;
    }

    .search-overlay.active {
        transform: translateY(80px);
    }
}

@media (max-width: 1150px) {
    .search-overlay {
        top: 65px;
        height: 75px;
    }

    .search-overlay.active {
        transform: translateY(75px);
    }

    #navbar.scrolled~.search-overlay {
        height: 65px;
    }

    #navbar.scrolled~.search-overlay.active {
        transform: translateY(65px);
    }
}

@media (max-width: 520px) {
    .search-overlay {
        top: 78px;
        height: 80px;
    }

    .search-overlay.active {
        transform: translateY(80px);
    }

    #navbar.scrolled~.search-overlay {
        height: 70px;
    }

    #navbar.scrolled~.search-overlay.active {
        transform: translateY(70px);
    }
}

.search-pill-container {
    background: rgba(30, 58, 138, 0.25);
    /* Blue-tint glass morphism (Deep Blue) */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: auto;
    max-width: 95%;
}

.search-white-bar {
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 2px 4px 2px 25px;
    /* Increased left padding for cleaner look */
    width: 650px;
    max-width: 100%;
    /* Fluid for mobile */
    /* Slightly narrower */
    height: 44px;
    /* Reduced height as requested */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input-wrapper {
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 400;
}

.main-search-btn {
    background: #ff510e;
    /* Match 'Apply Now' button color */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0 20px;
    height: 36px;
    font-weight: 600;
    /* Reduced from 800 to 600 to look less 'fat' */
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    /* Prevent button from shrinking */
}

.main-search-btn:hover {
    background: #e64600;
    transform: scale(1.02);
}

.search-close-circle {
    background: rgba(255, 255, 255, 0.85);
    /* Light solid-ish background to make orange pop */
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: #ff510e;
    /* Orange color matching Apply Now button */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* CRITICAL: Prevent circle from distorting/squeezing */
}

.search-close-circle:hover {
    background: #ffffff;
    transform: rotate(90deg);
}


.btn-apply {
    background-color: #ff510e;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-apply:hover {
    background-color: #e64600;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(255, 81, 14, 0.2);
    color: white;
    /* Keep text white for contrast */
}

.btn-signup {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    transition: var(--transition);
}

.btn-signup:hover {
    background: rgba(59, 130, 246, 0.1);
}

.btn-signup::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-slider {
    height: calc(100vh - 136px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slides-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero content and overlays removed as per request */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.hero-slider h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-slider h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-slider p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Controls */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #ff510e;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64600;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Stats section styles removed as per request */

/* Partners Section - Scrolling Logos */
.partners-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
    width: 100%;
}

.partners-section .container {
    max-width: 100%;
    padding: 0;
}

.partners-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    padding: 0 2rem;
    font-size: 3rem;
    /* Standardized Desktop Title Size */
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.partners-scroll-container::before,
.partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
    padding-left: 2rem;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 120px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.partner-logo img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    gap: 10px;
}

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: grayscale(0%);
}

.img-wrapper:hover img {
    transform: scale(1.02);
}

/* Academics Section */
.academics {
    padding: 8rem 0;
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    gap: 10px;
}

/* Unlock Your Learning Potential Section */
.unlock-learning {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.unlock-wrapper {
    background-color: #f7f9fa;
    border-radius: 40px;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.05);
}

.unlock-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.unlock-content h1 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.unlock-content h1 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ff510e;
    display: inline-block;
    margin-top: 10px;
}

.unlock-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 500;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #ff510e;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 81, 14, 0.3);
    text-decoration: none;
}

.btn-explore i {
    background: #fff;
    color: #ff510e;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
    /* Default diagonal position */
}

.btn-explore:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 81, 14, 0.4);
    color: #fff;
}

.btn-explore:hover i {
    transform: rotate(0deg);
    /* Straightens on hover or slightly different rotation */
}

/* Floating Images */
.floating-img {
    position: absolute;
    width: 260px;
    height: 260px;
    z-index: 10;
    pointer-events: none;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.img-top-right {
    top: -60px;
    right: -40px;
    transform: rotate(15deg) translateX(50px);
    opacity: 0;
}

.floating-img.img-top-right.active {
    transform: rotate(15deg) translate(0);
    opacity: 1;
}

.img-top-right::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #3db2c6;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    z-index: -1;
    opacity: 0.4;
}

.img-bottom-left {
    bottom: -60px;
    left: -40px;
    transform: rotate(-10deg) translateX(-50px);
    opacity: 0;
}

.floating-img.img-bottom-left.active {
    transform: rotate(-10deg) translate(0);
    opacity: 1;
}

.img-bottom-left::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #ff510e;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    z-index: -1;
    opacity: 0.4;
}



@media (max-width: 1200px) {
    .unlock-wrapper {
        max-width: 90%;
    }

    .floating-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .unlock-content h1 {
        font-size: 2.8rem;
    }

    .unlock-learning {
        padding: 80px 0;
    }

    .unlock-wrapper {
        padding: 80px 20px;
    }

    .floating-img {
        width: 140px;
        height: 140px;
        opacity: 0.8;
    }

    .img-top-right {
        top: -40px;
        right: -20px;
    }

    .img-bottom-left {
        bottom: -40px;
        left: -20px;
    }
}

@media (max-width: 768px) {
    .unlock-content h1 {
        font-size: 2.2rem;
    }

    .unlock-content p {
        font-size: 1rem;
    }

    .floating-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 490px) {
    .unlock-wrapper {
        padding: 60px 20px;
        border-radius: 30px;
    }

    .unlock-content h1 {
        font-size: 1.8rem;
    }

    /* Show decorative images on very small screens as requested */
    .floating-img {
        display: block;
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }

    .img-top-right {
        top: -20px;
        right: -10px;
    }

    .img-bottom-left {
        bottom: -20px;
        left: -10px;
    }
}

/* Events Section */
.events {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-item:hover {
    background-color: var(--secondary);
    transform: translateX(5px);
}

.event-item .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
    min-width: 80px;
}

.event-item .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.event-item .month {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.event-item .details {
    flex: 1;
}

.event-item .details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-main);
}

.event-item .details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.event-item:hover .btn-icon {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

/* Footer */
/* Top Bar */
.footer-top-bar {
    background: #ff510e;
    padding: 1rem 0;
    color: white;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box {
    background: white;
    color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.info-text a,
.info-text p {
    font-weight: 700;
    font-size: 0.9rem;
}

.separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

@media (min-width: 900px) {
    .separator {
        display: block;
    }
}

/* Main Footer */
.main-footer {
    background-color: var(--brand-primary);
    padding: 3rem 0 1rem;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* Reduced Gap */
    margin-bottom: 2rem;
    /* Reduced Margin */
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    object-fit: contain;
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-desc {
    color: #ffffff;
    /* Pure white text */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Socials */
.socials {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #cbd5e1;
}

.socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    /* White text */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a::before {
    content: '+';
    color: #ffffff;
    /* White indicator */
    font-weight: bold;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 0.8;
    /* Subtle hover effect instead of color change */
    padding-left: 5px;
}

.footer-contact-links a::before {
    display: none !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.copyright p {
    color: #ffffff;
    /* White text */
    font-size: 0.85rem;
}

/* Floating Elements */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.chat-widget:hover {
    transform: translateY(-5px);
}

.go-top-text {
    position: fixed;
    bottom: 150px;
    right: -30px;
    transform: rotate(-90deg);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.go-top-text::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--text-muted);
}

.go-top-text:hover {
    color: var(--primary);
}

.go-top-text:hover::before {
    background-color: var(--primary);
}

/* Single-line horizontal layout: 900px to 1400px */
@media (min-width: 900px) and (max-width: 1400px) {
    .footer-top-bar {
        padding: 14px 0;
    }

    .footer-top-bar .contact-info {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .separator {
        display: block;
        height: 30px;
        flex-shrink: 0;
    }

    .contact-item {
        flex-shrink: 1;
        gap: 10px;
    }

    .icon-box {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .info-text span {
        font-size: 0.68rem;
    }

    .info-text a,
    .info-text p {
        font-size: 0.8rem;
    }
}

/* 770px–1200px: Keep all 4 footer columns in a single horizontal row */
@media (min-width: 770px) and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1.4fr 1fr 1fr;
        gap: 1rem;
    }

    .footer-col.brand-col,
    .footer-col:last-child {
        grid-column: auto;
    }

    /* Push Academics column further to the right */
    .footer-grid>.footer-col:nth-child(3) {
        padding-left: 2.5rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-links li {
        font-size: 0.75rem;
    }

    .footer-desc {
        font-size: 0.78rem;
    }

    .footer-logo img {
        height: 45px;
    }

    .socials a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .footer-top-bar .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item {
        width: 100%;
    }
}

/* Animations Keyframes */
@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smoothShake {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(1px, -1px) rotate(2deg);
    }

    50% {
        transform: translate(-1px, 1px) rotate(-2deg);
    }

    75% {
        transform: translate(1px, 1px) rotate(1deg);
    }
}

@keyframes shakeHalfCircle {

    0%,
    100% {
        transform: rotate(-30deg) translate(0, 0);
    }

    25% {
        transform: rotate(-28deg) translate(2px, -2px);
    }

    50% {
        transform: rotate(-32deg) translate(-2px, 2px);
    }

    75% {
        transform: rotate(-29deg) translate(1px, 1px);
    }
}



/* Utility Animations Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px);
}

[data-animate="scale-up"] {
    transform: scale(0.9);
}

/* Active States */
[data-animate].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Laptop & Smaller Desktop Screens */
@media (max-width: 1440px) {
    .nav-container {
        padding: 0 2rem;
    }

    .logo {
        margin-left: 0;
        /* Reset excessive margin for smaller laptops */
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-actions {
        gap: 0.8rem;
    }

    .btn-apply {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    #navbar {
        height: 80px;
    }

    #navbar.scrolled {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    body {
        padding-top: 116px;
    }
}

@media (max-width: 1250px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

/* Tablet & Mobile Responsiveness - Sidebar menu starts here */
@media (max-width: 1150px) {
    .top-bar {
        padding: 5px 0;
        height: 65px;
        display: flex;
        align-items: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 3px;
        padding: 0 1rem;
    }

    .top-bar-right {
        order: -1;
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 5px;
    }

    .top-bar-right a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .top-bar-right a:not(.login-dropdown) {
        display: flex;
        /* Restore visibility */
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .top-bar-left .announcement-text {
        font-size: 0.65rem;
    }

    .admission-ticker {
        font-size: 0.65rem;
    }

    /* Adjust navbar top offset - More compact top-bar (approx 65px) */
    #navbar {
        top: 65px;
        height: 75px;
    }

    #navbar.scrolled {
        height: 65px;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        width: 280px;
        height: calc(100vh - 100% - 65px);
        background-color: #ffffff;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: 15px 0 35px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin-top: 0 !important;
        overflow-y: auto;
        overflow-x: hidden;
        max-width: 85vw;
        border-right: 1px solid #eee;
        scrollbar-width: thin;
        scrollbar-color: #ff510e #f1f5f9;
    }

    /* Orange Scrollbar for Nav Menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background-color: #ff510e !important;
        border-radius: 10px !important;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background-color: #e64600 !important;
    }

    /* Sidebar Header (Logo and Close) */
    /* Sidebar Header (Logo and Close) - Removed as per request to move menu items up */
    /*
    .nav-menu::before {
        content: '';
        display: block;
        height: 60px;
        margin: 1.5rem 2rem 1rem;
        background: url('assets/coeb-logo.png') no-repeat left center;
        background-size: contain;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 1rem;
    }
    */

    /* Removed redundant margin-tops */

    body {
        padding-top: 140px;
        /* 65px top-bar + 75px navbar */
    }

    .nav-link {
        color: var(--text-main);
        padding: 1rem 2.2rem;
        /* SHIFTED MORE RIGHT AS REQUESTED */
        justify-content: flex-start;
        width: 100%;
        font-size: 1rem;
        border-bottom: 1px solid #f9fafb;
        font-weight: 600;
        position: relative;
    }

    /* Shifted active state to be more to the right and consistent */
    /* Shifted active state to be more to the right and consistent */
    .nav-link.active,
    .nav-item.active>.nav-link {
        color: var(--brand-primary);
        background-color: #eff6ff;
        padding-left: 1.8rem;
    }

    /* Line and Icon rotation on click/active state ONLY in responsive */
    .nav-link.active::after,
    .nav-item.active>.nav-link::after {
        width: 100%;
        height: 3px;
    }

    .nav-item.active>.nav-link i {
        transform: rotate(180deg);
    }

    .nav-link:hover {
        background-color: transparent;
        padding-left: 1rem;
    }

    .nav-actions {
        gap: 0.6rem;
    }

    .nav-divider {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo {
        margin-left: 1.5rem;
    }

    .logo img {
        height: 48px;
    }

    .search-container.active .search-input {
        width: 140px;
    }

    .btn-apply {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .footer-col.brand-col,
    .footer-col:last-child {
        grid-column: span 2;
    }

    /* Backdrop Overlay */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    /* Mobile Dropdowns */
    .nav-item.active .dropdown-menu {
        display: block;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: #f8fafc;
        animation: none;
        padding-left: 3rem;
        /* Indent submenus content properly as requested */
    }

    .nav-item .dropdown-menu {
        transition: all 0.3s ease;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem;
        /* Indent submenus content properly */
        background-color: transparent !important;
    }

    /* Nested Dropdowns Mobile */
    .dropdown-item.active+.submenu {
        display: block;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: #f1f5f9;
        animation: none;
        padding-left: 1rem;
    }

    .nav-item.active .dropdown-menu {
        display: block !important;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: #f8fafc;
        animation: none;
        padding-left: 3rem;
        /* Indent submenus content properly as requested */
    }

    /* Nested Submenu Mobile Fix */
    .dropdown-menu li {
        display: block;
        width: 100%;
    }

    .submenu {
        display: none;
        position: static;
        width: 100%;
        background-color: #f1f5f9;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        animation: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .dropdown-menu li.active>.submenu {
        display: block !important;
        animation: none;
    }

    .dropdown-menu li.active>.dropdown-item {
        color: var(--brand-primary);
        font-weight: 700;
    }

    .dropdown-menu li.active>.dropdown-item i.fa-caret-right {
        transform: rotate(90deg);
    }
}

/* Small Mobile Screens */
@media (max-width: 520px) {
    .nav-container {
        padding: 0 0.8rem;
    }

    .logo {
        margin-left: 0.5rem;
    }

    .logo img {
        height: 50px;
        transition: height 0.3s ease;
    }

    #navbar.scrolled .logo img {
        height: 45px;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .btn-apply {
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
        font-size: 0.7rem;
    }

    .search-container.active .search-input {
        width: 80px;
    }

    /* Show admission ticker below announcement on small phones (80px height) */
    .top-bar {
        padding: 4px 0;
        height: 78px;
        display: flex;
        align-items: center;
    }

    .top-bar .container {
        gap: 2px;
        justify-content: center;
        flex-direction: column;
    }

    .top-bar-right {
        padding-bottom: 2px;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-bar-right a {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .top-bar-left {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        align-items: center;
    }

    .admission-ticker {
        display: block !important;
        font-size: 0.6rem;
        max-width: 100%;
        overflow: hidden;
    }

    .ticker-item {
        height: 18px !important;
        line-height: 18px !important;
        font-size: 0.6rem;
        text-align: center;
    }

    #navbar {
        height: 80px;
        top: 78px;
    }

    #navbar.scrolled {
        height: 70px;
    }

    body {
        padding-top: 158px;
        /* 78 + 80 */
    }

    /* Correct offsets for mobile menu on very small screens */
    #navbar:not(.scrolled) .nav-menu,
    #navbar.scrolled .nav-menu {
        margin-top: 0;
    }

    .nav-menu {
        height: calc(100vh - 158px);
    }
}


/* Welcome EduFor Section */
.welcome-edufor {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.welcome-edufor .container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
}

.welcome-collage {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 100 / 85;
    height: auto;
    display: block;
    margin: 0 auto;
}

.collage-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collage-img:hover {
    transform: scale(1.03);
    z-index: 10;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Img 1: Top Left Landscape */
.img-1 {
    width: 54%;
    aspect-ratio: 3/2;
    top: 8%;
    left: 0;
    z-index: 2;
    height: auto;
}

/* Img 2: Right Tall Portrait */
.img-2 {
    width: 41%;
    aspect-ratio: 2/3;
    top: 0;
    right: 0;
    z-index: 1;
    height: auto;
}

/* Img 3: Bottom Left Square */
/* Img 3: Bottom Left Square */
.img-3 {
    width: 42%;
    aspect-ratio: 1/1;
    bottom: -4%;
    left: 12%;
    z-index: 3;
    height: auto;
}

/* Decorative Shapes */
.shape-half-circle {
    position: absolute;
    top: -12%;
    left: 14%;
    width: 12%;
    aspect-ratio: 1/1;
    background-color: #f15a29;
    border-radius: 50% 50% 0 0;
    /* Semi-circle radius hack, or just circle clipped */
    border-radius: 100px 100px 0 0;
    transform: rotate(-30deg);
    z-index: 0;
    animation: shakeHalfCircle 6s ease-in-out infinite;
    height: auto;
}

.shape-star {
    position: absolute;
    bottom: 0%;
    right: 10%;
    width: 15%;
    aspect-ratio: 1/1;
    z-index: 0;
    animation: smoothShake 5s ease-in-out infinite;
    height: auto;
}

.welcome-content {
    flex: 1.2;
}

.welcome-content h2 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    color: #0c2231;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #4c565d;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #0c2231;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-view-services:hover {
    background-color: #1a3a50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 34, 49, 0.2);
}

.btn-view-services i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-services:hover i {
    transform: translateX(5px);
}

.welcome-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: #4c565d;
    margin-bottom: 0;
    font-weight: 500;
}

.stat-item.accepted h3 {
    color: #8dc63f;
}

.stat-item.universities h3 {
    color: #00aeef;
}

.stat-item.scholarships h3 {
    color: #f15a29;
}

@media (max-width: 1280px) {
    .welcome-edufor .container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .welcome-edufor .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .welcome-collage {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .welcome-content h2 {
        font-size: 2.5rem;
        /* Standardized Tablet Title Size */
    }

    .welcome-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .welcome-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-collage {
        max-width: 450px;
    }

    .welcome-content h2 {
        font-size: 2rem;
        /* Standardized Mobile Title Size */
    }
}

@media (max-width: 480px) {
    .welcome-collage {
        max-width: 100%;
    }

    .welcome-content h2 {
        font-size: 1.8rem;
        /* Standardized Small Mobile Title Size */
    }

    .welcome-content p {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }
}

/* Why COEB Section - Scroll Based */
.why-coeb-section {
    height: 300vh;
    position: relative;
    background-color: #f8f9fa;
}

.why-coeb-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    /* Ensures content doesn't hit top/bottom edges */
    box-sizing: border-box;
    /* Removed overflow: hidden to prevent clipping of shadows and content */
}

.why-coeb-header {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 60px */
}

.why-coeb-header h2 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    color: #0c2231;
    margin-bottom: 8px;
    /* Reduced from 15px to bring description closer */
    font-weight: 700;
}

.why-coeb-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.why-coeb-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    /* Reduced gap to move closer to image */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-coeb-image {
    position: sticky;
    top: 200px;
    height: 450px;
    /* Reduced from 500px to avoid vertical clipping */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.why-coeb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.why-coeb-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Reduced gap between cards */
    padding: 0;
}

.why-card {
    background: #ffffff;
    padding: 12px 25px;
    /* Further reduced vertical padding */
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-card h3 {
    font-size: 1.4rem;
    color: #0c2231;
    margin-bottom: 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Card content - hidden by default */
.card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    margin-top: 0;
}

.card-content p {
    font-size: 1rem;
    color: #4c565d;
    line-height: 1.6;
    /* Reduced line-height from 1.7 */
    margin-bottom: 10px;
    /* Further reduced margin */
    margin-top: 0;
}

.view-services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0c2231;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-services-link i {
    transition: transform 0.3s ease;
}

.view-services-link:hover i {
    transform: translateX(5px);
}

/* Active States for Cards */
.why-card.active {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px 25px;
    /* Further reduced active padding */
    transform: scale(1.02);
}

.why-card.active .card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 5px;
    /* Further reduced to bring description closer to title */
}

/* Active State Colors */
.why-card[data-step="0"].active {
    border-color: #ff510e;
}

.why-card[data-step="0"].active h3 {
    color: #ff510e;
}

.why-card[data-step="1"].active {
    border-color: #00aeef;
}

.why-card[data-step="1"].active h3 {
    color: #00aeef;
}

.why-card[data-step="2"].active {
    border-color: #8dc63f;
}

.why-card[data-step="2"].active h3 {
    color: #8dc63f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-coeb-section {
        height: auto;
        padding: 40px 0;
    }

    .why-coeb-sticky-wrapper {
        position: relative;
        height: auto;
        padding: 0;
    }

    .why-coeb-content {
        grid-template-columns: 1fr;
        gap: 25px;
        /* Reduced gap to bring image and cards closer */
        padding: 0 20px;
        /* Applied consistent padding to parent */
    }

    .why-coeb-image {
        position: relative;
        top: 0;
        height: 400px;
        width: 100%;
        margin-bottom: 0;
        /* Gap handles this now */
    }

    .why-coeb-cards {
        gap: 12px;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .why-coeb-section {
        padding: 30px 0;
    }

    .why-coeb-header h2 {
        font-size: 2.2rem;
    }

    .why-coeb-image {
        height: 300px;
        padding: 0;
        /* Align with no-padding cards on mobile */
    }

    .why-card {
        padding: 20px 25px;
        /* Consistent with earlier height adjustment */
    }

    .why-card h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }
}

/* Add Responsive Classes for Common Sections */
@media (max-width: 992px) {

    .section-header h2,
    .why-coeb-header h2,
    .career-content h2,
    .unlock-content h1,
    .partners-title,
    .about h2 {
        font-size: 2.5rem;
        /* Standardized Tablet Title Size */
    }
}

@media (max-width: 768px) {

    .section-header h2,
    .why-coeb-header h2,
    .career-content h2,
    .unlock-content h1,
    .partners-title,
    .about h2 {
        font-size: 2rem;
        /* Standardized Mobile Title Size */
    }
}

@media (max-width: 480px) {

    .section-header h2,
    .why-coeb-header h2,
    .career-content h2,
    .unlock-content h1,
    .partners-title,
    .about h2 {
        font-size: 1.8rem;
        /* Standardized Small Mobile Title Size */
    }
}

/* How We Work Timeline Section - Image 1 Exact Match */
.how-we-work {
    padding: 120px 0 80px;
    position: relative;
    background-color: #fdfdfd;
    overflow: hidden;
}

.how-we-work .container {
    position: relative;
    z-index: 2;
}

.how-we-work .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-we-work .section-header h2 {
    font-size: 3rem;
    color: #0c2231;
    margin-bottom: 15px;
    font-weight: 700;
}

.how-we-work .section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 100px;
}

/* Central Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 100px);
    background: transparent;
    z-index: 1;
}

/* Animated Fill Line - Initially Hidden */
.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #00aeef;
    transition: height 0.3s ease-out, background-color 0.5s ease;
    z-index: 2;
}

/* Start Dot - Hidden (not needed, badges show numbers) */
.timeline-start-dot {
    display: none;
}

/* End Dot - Hidden (not needed) */
.timeline-end-dot {
    display: none;
}

/* Timeline Items - Visible by default, content always shown */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 80px;
    margin-bottom: 100px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

/* Content starts hidden, slides in from right when active */
.timeline-item .timeline-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateX(0);
}


/* Right Side Items */
.timeline-item.right {
    left: 50%;
    padding-left: 80px;
    padding-right: 40px;
}

/* Left Side Items */
.timeline-item.left {
    left: 0;
    text-align: right;
    padding-left: 40px;
    padding-right: 80px;
}


/* Numbered Badge/Dot - Always visible as small dots, grow when active */
.timeline-badge {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0;
    /* Hidden when small */
    z-index: 15;
    background-color: var(--badge-color, #ddd);
    /* Use the color from JS */
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    transform: scale(1);
}

.timeline-item.active .timeline-badge {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.timeline-item.right .timeline-badge {
    left: -10px;
}

.timeline-item.left .timeline-badge {
    right: -10px;
}

.timeline-item.active.right .timeline-badge {
    left: -25px;
}

.timeline-item.active.left .timeline-badge {
    right: -25px;
}

/* Color Coding per Step */
.timeline-item[data-color="#00aeef"] {
    color: #00aeef;
}

.timeline-item[data-color="#ff510e"] {
    color: #ff510e;
}

.timeline-item[data-color="#8cc63f"] {
    color: #8cc63f;
}

.timeline-item[data-color="#662d91"] {
    color: #662d91;
}

/* Content Card */
.timeline-content {
    background: white;
    padding: 15px 25px;
    /* Reduced vertical padding from 20px to 15px */
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.timeline-item.active .timeline-content {
    border-color: currentColor;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    transition: color 0.3s ease;
}

.timeline-item.active .timeline-content h3 {
    color: currentColor;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Floating Decorative Shapes */
.item-shapes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-100px);
    width: 300px;
    height: 300px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active .item-shapes {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Shapes on LEFT side */
.timeline-item.right .item-shapes.left {
    right: calc(100% + 30px);
}

/* Shapes on RIGHT side */
.timeline-item.left .item-shapes.right {
    left: calc(100% + 30px);
}


/* Individual Shape Styling */
.shake-shape {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: smooth-float 6s ease-in-out infinite;
}

.shake-shape:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 7s;
}

.shake-shape svg,
.shake-shape img,
.shake-shape i {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Smooth Floating Animation */
@keyframes smooth-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(3deg);
    }

    50% {
        transform: translateY(0) rotate(-3deg);
    }

    75% {
        transform: translateY(15px) rotate(2deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .item-shapes {
        display: none;
    }

    .timeline-item {
        margin-bottom: 120px;
    }
}

@media (max-width: 768px) {

    .timeline-line,
    .timeline-start-dot {
        left: 30px;
        top: -20px;
        transform: translateX(-50%);
    }

    .timeline-start-dot {
        transform: translate(-50%, -50%);
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 90px !important;
        padding-right: 20px !important;
        text-align: left !important;
        margin-bottom: 100px;
    }

    .timeline-badge {
        left: 30px !important;
        right: auto !important;
        top: -20px;
        transform: translateX(-50%) !important;
    }

    .timeline-item.active.right .timeline-badge,
    .timeline-item.active.left .timeline-badge {
        top: -20px;
        transform: translateX(-50%) !important;
    }

    .timeline-content {
        padding: 30px;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .how-we-work .section-header h2 {
        font-size: 2.2rem;
    }
}

/* User Requested Timeline Design Adjustments */

/* Step 1: Blue - Make shapes smaller, move items */
.timeline-item[data-color="#00aeef"] .shake-shape.s1,
.timeline-item[data-color="#00aeef"] .shake-shape.s2 {
    width: 65px;
    height: 65px;
    position: relative;
}

/* Star go more left side */
.timeline-item[data-color="#00aeef"] .shake-shape.s1 {
    left: -80px;
}

/* Orange go more bottom */
.timeline-item[data-color="#00aeef"] .shake-shape.s2 {
    top: 60px;
    left: -20px;
    /* Slight adjustment to balance */
}


/* Step 2: Orange - Make shapes smaller, move items */
.timeline-item[data-color="#ff510e"] .shake-shape.s3,
.timeline-item[data-color="#ff510e"] .shake-shape.s4 {
    width: 65px;
    height: 65px;
    position: relative;
}

/* Orange go more right side */
.timeline-item[data-color="#ff510e"] .shake-shape.s3 {
    left: 80px;
}

/* Yellow adjustment for balance */
.timeline-item[data-color="#ff510e"] .shake-shape.s4 {
    left: 20px;
}


/* Step 3: Green - Purple go more left side */
.timeline-item[data-color="#8cc63f"] .shake-shape.s5 {
    position: relative;
    left: -80px;
}


/* Step 4: Purple - Pink go more right side */
.timeline-item[data-color="#662d91"] .shake-shape.s7 {
    position: relative;
    left: 80px;
}

/* Career Opportunities Section */
.career-opportunities {
    padding: 60px 0 120px;
    background: #ffffff;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-image-wrapper {
    position: relative;
    padding: 0;
}

.image-frame {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff510e;
    border-radius: 40px;
    z-index: 1;
}

.career-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
}

.career-content h2 {
    font-size: 3rem;
    /* Standardized Desktop Title Size */
    color: #000000;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.career-content .subtitle {
    font-size: 1.2rem;
    color: #8c9096;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.6;
}

.career-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* Soft diffused shadow as per image */
    flex-shrink: 0;
    color: #3db2c6;
    /* Exact teal from image */
    font-size: 1.4rem;
}

.feature-text {
    padding-top: 5px;
}

.feature-text h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: #8c9096;
    line-height: 1.5;
}

.btn-get-started {
    display: inline-block;
    background-color: #3db2c6;
    /* Exact teal from image */
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-get-started:hover {
    background-color: #2da1b5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 178, 198, 0.3);
    color: #ffffff;
}

@media (max-width: 992px) {
    .career-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .career-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .career-content {
        text-align: left;
    }

    .career-content .subtitle {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .career-content h2 {
        font-size: 2.5rem;
    }

    .career-img {
        height: 450px;
    }

    .image-frame {
        display: none;
        /* Hide frame on mobile for cleaner look if requested, or keep it */
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* Why Choose Section - Placement Page */
.why-choose-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-family: 'Outfit', sans-serif;
    color: #1a202c;
    font-weight: 700;
}

.section-header-centered h2 span {
    color: #ff510e;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 800;
}

.section-header-centered p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.choose-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose-col:not(.middle) {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.choose-card {
    background: #f8fafc;
    border-radius: 30px;
    padding: 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 81, 14, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.choose-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border-color: rgba(255, 81, 14, 0.2);
}

.choose-card:hover::before {
    transform: translateX(100%);
}

.choose-image {
    width: 100%;
    height: 100%;
    /* Fill the grid cell */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.choose-icon i {
    font-size: 1.8rem;
    color: #1a202c;
}

.choose-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.3;
}

.choose-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Community Diagram */
.community-diagram {
    position: relative;
    height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.orbit-circle {
    position: absolute;
    border: 1.5px dashed #e2e8f0;
    border-radius: 50%;
}

.orbit-1 {
    width: 140px;
    height: 140px;
}

.orbit-2 {
    width: 240px;
    height: 240px;
}

.orbit-3 {
    width: 340px;
    height: 340px;
}

.central-icon {
    width: 90px;
    height: 90px;
    background: #ff510e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(255, 81, 14, 0.4);
    position: relative;
}

.central-icon i {
    color: white;
    font-size: 2.5rem;
}

.floating-avatar {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.4s ease;
}

.floating-avatar:hover {
    transform: scale(1.1) translateY(-5px);
}

.avatar-1 {
    top: 15%;
    left: 10%;
    width: 55px;
    height: 55px;
}

.avatar-2 {
    top: 0%;
    left: 45%;
    width: 60px;
    height: 60px;
}

.avatar-3 {
    top: 20%;
    right: 5%;
    width: 50px;
    height: 50px;
}

.avatar-4 {
    bottom: 25%;
    left: 5%;
    width: 65px;
    height: 65px;
}

.avatar-5 {
    bottom: 0%;
    left: 40%;
    width: 55px;
    height: 55px;
}

.avatar-6 {
    bottom: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
}

.floating-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatAvatar {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.floating-avatar {
    animation: floatAvatar 4s ease-in-out infinite;
}

.avatar-1 {
    animation-delay: 0s;
}

.avatar-2 {
    animation-delay: 1s;
}

.avatar-3 {
    animation-delay: 1.5s;
}

.avatar-4 {
    animation-delay: 0.5s;
}

.avatar-5 {
    animation-delay: 2s;
}

.avatar-6 {
    animation-delay: 2.5s;
}


@media (max-width: 1200px) {
    .why-choose-grid {
        gap: 20px;
    }

    .choose-card {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .choose-col.middle {
        grid-column: span 2;
        order: 3;
    }

    .community-diagram {
        height: 400px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-col.middle {
        grid-column: span 1;
    }

    .section-header-centered h2 {
        font-size: 2.5rem;
    }

    .choose-image {
        height: 250px;
    }
}

: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;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    padding-top: 136px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    color: var(--brand-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-accent);
    border-radius: 2px;
}

/* 1️⃣ Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.15;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.page-hero h2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .active {
    color: var(--white);
}

.breadcrumbs li:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
}

/* 2️⃣ History Section */
.history-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.history-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    color: #52525b;
}

.history-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.history-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.history-image:hover img {
    transform: scale(1.08);
}

/* 🖼️ History Image Grid */
.history-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.history-image-grid .grid-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.history-image-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.history-image-grid .grid-item:first-child {
    grid-column: span 2;
    height: 350px;
}

.history-image-grid .grid-item:not(:first-child) {
    height: 220px;
}

.history-image-grid .grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.history-image-grid .grid-item:hover img {
    transform: scale(1.1);
}

.timeline-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--light-bg);
    padding: 2rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    border-bottom: 5px solid var(--brand-accent);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.highlight-year {
    font-weight: 800;
    color: var(--brand-primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.highlight-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body);
}

/* 3️⃣ Campus Overview Section */
.campus-overview {
    padding: var(--section-padding);
    background: var(--light-bg);
    text-align: center;
}

.campus-desc {
    max-width: 1000px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4b5563;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* 4️⃣ Academic Environment Section */
.academic-environment {
    padding: var(--section-padding);
    background: var(--white);
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.academic-card {
    background: var(--light-bg);
    padding: 4rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.academic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e40af 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.academic-card i {
    font-size: 3.5rem;
    color: var(--brand-accent);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.academic-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.academic-card p {
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.academic-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
}

.academic-card:hover::before {
    opacity: 1;
}

.academic-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.academic-card:hover h3,
.academic-card:hover p {
    color: var(--white);
}

/* 5️⃣ Infrastructure Section */
.infrastructure-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.infra-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    height: 100%;
}

.infra-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #f1f5f9;
    /* Placeholder color if image fails */
    transition: var(--transition-smooth);
}

.infra-info {
    padding: 2rem;
}

.infra-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--brand-primary);
}

.infra-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.infra-card:hover img {
    transform: scale(1.1);
}

/* 6️⃣ Achievements & Milestones Section */
.milestones-section {
    padding: var(--section-padding);
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 45%;
    text-align: right;
    padding: 0 40px;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
}

.timeline-date h3 {
    font-size: 2.5rem;
    color: var(--brand-accent);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--brand-accent);
    border-radius: 50%;
    border: 6px solid var(--white);
    box-shadow: 0 0 20px rgba(255, 81, 14, 0.4);
    z-index: 2;
}

.timeline-content-box {
    width: 45%;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-content-box::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--light-bg);
    transform: translateY(-50%) rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content-box::after {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content-box::after {
    right: -10px;
}

.timeline-content-box:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.timeline-content-box h4 {
    margin-bottom: 1rem;
    color: var(--brand-primary);
    font-size: 1.4rem;
}

.timeline-content-box p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* 7️⃣ CTA Section */
.cta-section {
    padding: 120px 0;
    background: #0f172a;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 3.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-apply-cta {
    background: var(--brand-accent);
    color: var(--white);
}

.btn-brochure {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-apply-cta:hover {
    background: #e64600;
}

.btn-brochure:hover {
    background: var(--white);
    color: #0f172a;
    border-color: var(--white);
}

/* 🎬 Animation Classes (Powering the IntersectionObserver) */
[data-animate] {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="slide-in-left"] {
    transform: translateX(-120px);
}

[data-animate="slide-in-right"] {
    transform: translateX(120px);
}

[data-animate="fade-up"] {
    transform: translateY(80px);
}

[data-animate].active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {

    .gallery-grid,
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }

    .timeline-date,
    .timeline-content-box {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .timeline-date {
        margin-bottom: 15px;
    }

    .timeline-content-box::after {
        display: none;
    }
}

@media (max-width: 900px) {

    .history-grid,
    .academic-grid {
        grid-template-columns: 1fr;
    }

    .history-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {

    .gallery-grid,
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .timeline-highlights {
        grid-template-columns: 1fr;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

: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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1️⃣ Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    position: relative;
}

.page-hero h2 {
    font-weight: 500;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    font-size: 0.95rem;
    position: relative;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumbs .active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.4);
}

/* 2️⃣ Chairman Profile Section */
.profile-section {
    padding: var(--section-padding);
    background: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-image-box {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    background: #f1f5f9;
}

.profile-image-box h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    color: var(--brand-primary);
}

.profile-image-box span {
    display: block;
    font-weight: 600;
    color: var(--brand-accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.profile-intro {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 24px;
    border-left: 10px solid var(--brand-primary);
}

.profile-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 2rem;
}

.quote-block {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brand-primary);
    position: relative;
    padding-left: 2rem;
}

.quote-block::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    font-size: 1.5rem;
}

/* 3️⃣ Message Section */
.message-section {
    padding: var(--section-padding);
    background: var(--white);
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.message-content p {
    margin-bottom: 2rem;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    padding-right: 15px;
    color: var(--brand-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* 4️⃣ Vision Section */
.vision-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-left: 5px solid transparent;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-left-color: var(--brand-accent);
}

.vision-card i {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--brand-primary);
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.vision-card h4 {
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

/* 5️⃣ Signature Section */
.signature-section {
    padding: var(--section-padding);
    text-align: right;
    border-top: 1px solid #e2e8f0;
}

.signature-box {
    display: inline-block;
    text-align: center;
}

.sig-image {
    max-width: 200px;
    margin-bottom: 1rem;
    opacity: 0.8;
    filter: grayscale(100%);
}

.signature-box h5 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    color: var(--brand-primary);
}

.signature-box p {
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
}

.signature-box .inst {
    color: var(--brand-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* 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: 900px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-image-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}



/* ==========================================================================
   PREMIUM FACILITIES PAGE - ENHANCED STYLES
   ========================================================================== */

/* 1️⃣ Enhanced Hero Section */
.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;
}

.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 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-fac-hero p {
    font-size: 1.6rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Outfit', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-arrow 2s infinite;
    font-size: 2rem;
    color: var(--brand-accent);
}

@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: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 90px 0;
    text-align: center;
    border-bottom: 2px solid #bfdbfe;
    margin-top: -1px;
}

.registration-hero h1 {
    font-size: 3.2rem;
    color: var(--brand-primary) !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-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;
}

.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(19, 69, 128, 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(19, 69, 128, 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;
}

.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;
    }
}