@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f4c75;
    --accent-color: #c53030;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --font-heading: 'Fira Sans', sans-serif;
    --font-body: 'Fira Sans', sans-serif;
    --font-nav: 'Fira Sans', sans-serif;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

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

/* Admission Popup Modal */
.popups-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow-y: auto;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popups-container.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.popups-wrapper {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    z-index: 10000;
    max-width: 1040px;
    width: 100%;
    flex-wrap: nowrap;
}

.popup-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 490px;
    flex: 1 1 380px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.popups-container.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: #c53030;
    color: #ffffff;
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 1.2rem;
    color: #0f4c75;
}

.popup-close:hover i {
    color: #ffffff;
}

.popup-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

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

.popup-body h2 {
    color: #0f4c75;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.popup-body p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c53030, #e53e3e);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(197, 48, 48, 0.3);
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(197, 48, 48, 0.4);
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: #fff;
    text-decoration: none;
}

.popup-btn i {
    font-size: 0.95rem;
}

/* ── Popup CTA strip — 2 standalone buttons below popup images ── */
.popup-cta-strip {
    position: relative;
    z-index: 10000;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    max-width: 560px;
    width: 100%;
}

.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.popup-cta-btn-1 {
    background: #fff;
    color: #1a3a6b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.popup-cta-btn-1:hover {
    background: #1a3a6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 58, 107, 0.35);
    text-decoration: none;
}

.popup-cta-btn-2 {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
}
.popup-cta-btn-2:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(192, 57, 43, 0.4);
    text-decoration: none;
}

/* Responsive Popup */
@media (max-width: 968px) {
    .popups-container {
        padding: 16px 12px;
        gap: 14px;
    }

    .popups-wrapper {
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .popup-content {
        width: 92%;
        max-width: 460px;
        flex: none;
    }

    .popup-image {
        height: 240px;
    }

    .popup-image img {
        width: 100%;
        height: 240px;
    }

    .popup-body {
        padding: 16px 18px 18px;
    }

    .popup-body h2 {
        font-size: 1rem;
    }

    .popup-body p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .popup-btn {
        padding: 9px 22px;
        font-size: 0.85rem;
    }

    .popup-cta-strip {
        flex-direction: column;
        gap: 10px;
    }

    .popup-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 969px) and (max-width: 1100px) {
    .popup-content {
        max-width: 440px;
    }

    .popup-image {
        height: 300px;
    }

    .popup-image img {
        height: 300px;
    }
}

/* Top Announcement Bar - MUST BE VISIBLE */
.top-announcement {
    background: linear-gradient(90deg, #1a2980 0%, #26327b 50%, #1a2980 100%) !important;
    background-size: 200% 100% !important;
    animation: shimmer 3s ease-in-out infinite !important;
    color: #ffffff !important;
    padding: 12px 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1001 !important;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    min-height: 50px !important;
}

/* Shimmer effect for the announcement bar */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 1rem;
}

/* Animated News Ticker */
.news-ticker {
    flex: 1;
    min-width: 300px;
    max-width: 60%;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    padding: 8px 20px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 35px;
    display: flex;
    align-items: center;
}

.news-ticker .ticker-content {
    display: inline-block;
    animation: scroll-news 30s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

.news-ticker .ticker-item {
    display: inline;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
    margin-right: 100px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Smooth and Readable Scrolling Animation */
@keyframes scroll-news {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Pause animation on hover */
.news-ticker:hover .ticker-content {
    animation-play-state: paused;
    cursor: pointer;
}

/* Gradient fade effects */
.news-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 41, 128, 0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 41, 128, 0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.top-announcement .contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.top-announcement .contact-info a i {
    color: #ffffff !important;
}

.top-announcement .contact-info a:hover {
    opacity: 1;
    color: #fbbf24;
}

.top-announcement .contact-info a:hover i {
    color: #fbbf24 !important;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-apply-top {
    background: #1e40af;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-apply-top:hover {
    background: #1e3a8a;
}

.social-icons-top {
    display: flex;
    gap: 0.5rem;
}

.social-icons-top a {
    width: 28px;
    height: 28px;
    background: #1e40af;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icons-top a:hover {
    background: #1e3a8a;
    transform: scale(1.1);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.logo-text small {
    font-size: 0.75rem;
    font-weight: 600;
    color: #c53030;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    white-space: nowrap;
}

.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    position: relative;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-nav);
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e40af, #0f4c75);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
}

.nav-menu a:hover::before,
.nav-menu a.nav-active::before {
    width: 30px;
}

.nav-menu a.nav-active {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.08);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    color: #666;
    font-weight: 400;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #1e40af;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* ── Career dropdown — matches mega menu style, compact ── */
.career-dropdown {
    position: relative;
}

.career-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-top: 2px solid #fbbf24;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 14px 0 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.career-dropdown:hover .career-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.career-menu-header {
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 16px 8px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    margin-bottom: 6px;
}

.career-menu ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.career-menu ul li {
    list-style: none !important;
}

.career-menu ul li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0;
}

.career-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fbbf24;
    padding-left: 20px;
}

.career-menu ul li a i {
    width: 14px;
    font-size: 0.78rem;
    color: #fbbf24;
    text-align: center;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.announcement {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-apply {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

.btn-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.prev-slide,
.next-slide {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1001;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #1e40af;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e3a8a;
    transform: scale(1.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Page Styles */
.page-content {
    margin-top: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-content p {
    color: white;
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 1.1rem;
    margin-top: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.about-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.content-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    padding-left: 0;
}

.content-text ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-text ul li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Error message styles */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

/* Responsive Design for Page Content */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .announcement-content {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0.5rem;
    }

    .news-ticker {
        display: none;
    }

    .ticker-item {
        font-size: 11px;
        margin-right: 60px;
    }

    .ticker-content {
        animation-duration: 45s;
    }

    .contact-info {
        display: none;
    }

    .top-actions {
        flex-direction: row;
        gap: 0.5rem;
    }

    /* Keep search bar hidden on mobile */
    .top-search-bar {
        display: none !important;
    }

    .top-left {
        display: none;
    }

    /* Announcement content: centered — only apply buttons visible on mobile */
    .announcement-content {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 6px 0 !important;
    }

    /* Social icons — desktop only */
    .social-icons-top {
        display: none !important;
    }

    /* Top-right: just the apply buttons strip */
    .top-right {
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Row 2: apply buttons — full-width horizontal scroll strip */
    .apply-buttons-group {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        width: 100% !important;
        padding: 1px 0 !important;
        justify-content: center !important;
    }

    .apply-buttons-group::-webkit-scrollbar {
        display: none;
    }

    /* Compact but readable buttons */
    .btn-apply-program {
        font-size: 0.72rem !important;
        padding: 5px 11px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 14px !important;
        letter-spacing: 0.3px !important;
    }

    /* Announcement bar sticks at top — sits ABOVE the nav overlay (z-index: 1000) */
    .top-announcement {
        position: sticky !important;
        top: 0 !important;
        z-index: 1003 !important;
    }

    /* Header sticks just below the announcement bar.
       JS sets the exact top offset so they don't overlap. */
    .header {
        position: sticky !important;
        top: 0 !important;   /* JS overrides this to announcement bar height */
        z-index: 1001 !important;
    }

    /* Header row: logo left, hamburger right */
    .header-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.55rem 0 !important;
        gap: 0 !important;
    }

    .logo {
        justify-content: flex-start;
    }

    .logo-text h3 {
        font-size: 0.9rem;
    }

    .logo-text small {
        font-size: 0.65rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* Hamburger on the far right */
    .nav-toggle {
        display: flex;
        padding: 8px;
        margin-left: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 1002;
    }

    /* Logo must also sit above the nav overlay */
    .logo {
        position: relative;
        z-index: 1002;
    }

    /* Nav menu: fixed full-screen overlay sitting below the sticky header */
    .nav-menu {
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        padding-top: 62px;   /* push items below the header (announcement bar hidden on mobile) */
        background: white;
        flex-direction: column !important;
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        z-index: 1000 !important;
        box-shadow: none;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Keep header on top of nav overlay and show a bottom border so hamburger X is clearly visible */
    .header {
        background: #fff !important;
        border-bottom: 2px solid #e5e7eb !important;
    }

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

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .social-sidebar {
        display: none;
    }
}

/* Loading and Animation Effects */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* --- RESTORED SECTIONS FROM ORIGINAL STYLE.CSS --- */

/* Notification Boards */
.notification-boards {
    background: #f9fafb;
    padding: 80px 0;
    border-bottom: none;
    position: relative;
}

.notification-boards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #c53030 100%);
    opacity: 0.03;
    z-index: 0;
}

.notification-boards::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 48, 48, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.notification-boards .container {
    position: relative;
    z-index: 1;
}

.notification-boards .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f4c75;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.notification-boards .section-title::before {
    content: '📢';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -45px;
    font-size: 2rem;
}

.notification-boards .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #0f4c75 0%, #c53030 100%);
    margin: 18px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(197, 48, 48, 0.3);
}

/* Notification Tabs */
.notification-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.notification-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.notification-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.notification-tab:hover::before {
    left: 100%;
}

.notification-tab i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.notification-tab:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: #0f4c75;
    color: #0f4c75;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-tab:hover i {
    transform: scale(1.15);
}

.notification-tab.active {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    border-color: #0f4c75;
    color: white;
    box-shadow: 0 6px 24px rgba(15, 76, 117, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.notification-tab.active:hover {
    background: linear-gradient(135deg, #1a5a8a 0%, #0f4c75 100%);
    border-color: #1a5a8a;
    color: white;
}

/* Notification Content Wrapper */
.notification-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.notification-tab-content {
    display: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border-top: 6px solid #c53030;
    border-left: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.notification-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

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

.notification-ticker {
    height: 450px;
    overflow: hidden;
    padding: 20px;
    background: #ffffff;
    position: relative;
}

.ticker-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.notification-ticker .ticker-content {
    display: flex;
    flex-direction: column;
    animation: ticker-scroll 20s linear infinite;
    gap: 12px;
}

/* Pause animation on hover */
.notification-ticker:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.notification-ticker .ticker-item {
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e293b;
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    white-space: normal;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.notification-ticker .ticker-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0f4c75 0%, #c53030 100%);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.notification-ticker .ticker-item:hover::before {
    height: 70%;
}

.notification-ticker .ticker-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(15, 76, 117, 0.08);
    border-color: #e2e8f0;
    transform: translateX(6px) scale(1.01);
}

/* Calendar Date Badge */
.ticker-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ticker-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.ticker-item:hover .ticker-date {
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    box-shadow: 0 6px 18px rgba(197, 48, 48, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transform: scale(1.08) rotate(-2deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.date-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.ticker-text {
    flex: 1;
    padding-right: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* View Button */
.ticker-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(197, 48, 48, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ticker-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ticker-view-btn:hover::before {
    left: 100%;
}

.ticker-view-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.03);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.ticker-view-btn::after {
    content: '→';
    margin-left: 8px;
    font-size: 1.15rem;
    transition: margin-left 0.3s ease;
    font-weight: 900;
}

.ticker-view-btn:hover::after {
    margin-left: 14px;
}

.notification-footer {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 2px solid #f1f5f9;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(197, 48, 48, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-weight: 900;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(197, 48, 48, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.view-all-btn:hover::after {
    transform: translateX(4px);
}

/* Clinical Training */
.clinical-info h3 {
    font-size: 1.8rem;
    color: #0f4c75;
    margin-bottom: 20px;
}

.clinical-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.clinical-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinical-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    border-left: 4px solid #22c55e;
}

.clinical-feature i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 5px;
}

.clinical-feature h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.clinical-feature p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.clinical-breakdown {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
}

.clinical-breakdown h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-chart {
    margin: 20px 0;
}

.hour-item {
    margin-bottom: 15px;
}

.hour-bar {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-hours {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 10px;
    color: #0f4c75;
    font-size: 1.1rem;
}

/* Assessment Methods */
.assessment-methods {
    padding: 80px 0;
    background: white;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.assessment-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.1);
    border-color: #22c55e;
}

.assessment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.assessment-icon i {
    font-size: 2rem;
    color: white;
}

.assessment-card h3 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.subject-item:last-child {
    margin-bottom: 0;
}

.subject-item i {
    color: #22c55e;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    width: 24px;
}

.subject-item h5 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subject-item p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.credit-hours {
    color: #0f4c75;
    font-size: 0.85rem;
    font-weight: 600;
    background: #e6f3ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.assessment-section {
    padding: 50px 0;
    background: #f8fafc;
}

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

.assessment-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
}

.assessment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.assessment-icon i {
    color: white;
    font-size: 2rem;
}

.assessment-card h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.assessment-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.assessment-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.detail-item .label {
    color: #4a5568;
    font-weight: 500;
}

.detail-item .value {
    color: #0f4c75;
    font-weight: 600;
}

.learning-outcomes-section {
    padding: 80px 0;
    background: white;
}

.outcomes-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.outcome-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.outcome-content h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.outcome-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.outcomes-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.outcomes-circle {
    width: 300px;
    height: 300px;
    position: relative;
    border: 3px solid #0f4c75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Curriculum Structure */
.curriculum-structure {
    padding: 50px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header h2 i {
    color: #22c55e;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.curriculum-years {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.year-card {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.1);
    border-color: #22c55e;
}

.year-header {
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    color: white;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.year-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year-header h3 {
    font-size: 1.2rem;
    margin: 0 0 3px 0;
    color: white;
}

.year-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    color: white;
}

.year-subjects {
    padding: 20px;
}

.year-subjects ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.year-subjects li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.2s ease;
}

.year-subjects li:hover {
    background: #f0f9ff;
    border-color: #22c55e;
    transform: translateX(5px);
}

.year-subjects li i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Career Opportunities */
.career-opportunities {
    padding: 80px 0;
    background: #f8fafc;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.career-category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    border: 1px solid #e2e8f0;
}

.career-category h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.career-category h3 i {
    color: #22c55e;
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
}

.career-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.career-item i {
    color: #22c55e;
    font-size: 1.3rem;
    margin-top: 3px;
}

.career-info h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin-bottom: 5px;
    font-weight: 600;
}

/* === MEGA MENU - FIXED POSITIONING SYSTEM === */
.mega-menu {
    position: relative;
    z-index: 1000;
}

.mega-dropdown {
    position: fixed;
    top: var(--header-height, 120px);
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    border-top: 2px solid #fbbf24;
    transform: translateY(-8px);
}

.mega-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Bridge the gap between nav item and dropdown - pointer-events: none so it never blocks nav items */
.mega-menu::after {
    content: '';
    position: fixed;
    top: calc(var(--header-height, 120px) - 20px);
    left: 0;
    width: 100%;
    height: 25px;
    z-index: 9998;
    display: none;
    pointer-events: none;
}

.mega-menu:hover::after {
    display: block;
}

/* Position it right below header */
.header {
    position: relative;
}

/* JavaScript will calculate the exact position */

.mega-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 32px;
    width: 100%;
    box-sizing: border-box;
}

.mega-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.programs-mega .mega-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.student-mega .mega-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.student-mega .mega-content {
    padding: 20px 32px;
}

.student-mega .mega-col h4 {
    font-size: 0.72rem;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(251,191,36,0.3);
}

.student-mega .mega-col ul li {
    margin-bottom: 2px;
}

.student-mega .mega-col ul li a {
    gap: 8px;
    padding: 5px 8px;
    font-size: 0.82rem;
}

.mega-col h4 {
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 2px;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.82rem;
    transition: all 0.2s ease;
}

.mega-col ul li a:hover {
    background: rgba(255,255,255,0.12);
    color: #fbbf24;
    transform: translateX(4px);
}

.mega-col ul li a i {
    width: 14px;
    font-size: 0.78rem;
    color: #fbbf24;
    text-align: center;
    flex-shrink: 0;
}

/* Navigation hover indicator */
.nav-menu > li > a:hover,
.mega-menu:hover > a {
    color: #1e40af;
}

.nav-menu > li > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mega-menu:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown visibility is fully controlled by JavaScript - no CSS hover rules here */

/* Ensure proper header positioning */
.header {
    position: relative;
    z-index: 1000;
    background: white;
}

/* Navigation menu positioning */
.nav-menu {
    position: relative;
    z-index: 1001;
}

.mega-menu > a {
    position: relative;
    z-index: 1002;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure no gaps in hover area */
.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 10px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    /* Ensure full hover area */
    position: relative;
    z-index: 1001;
}

/* Mega menu final positioning fixes */
.nav-menu > li.mega-menu {
    position: static;
}

/* Dropdown open state applied by JavaScript */

/* Ensure dropdown content is interactive */
.mega-dropdown * {
    pointer-events: auto;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: #fbbf24;
    padding-left: 10px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 0;
    text-align: center;
    background: #111827;
    margin-top: 40px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f8fafc;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 30px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
    line-height: 1.1;
    color: #ffffff !important;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 1;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    line-height: 1.4;
    color: #ffffff !important;
}

.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fde047, #facc15);
    color: #1f2937;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #fde047;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(253, 224, 71, 0.3);
}

.slide-btn:hover {
    background: transparent;
    color: #fde047;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(253, 224, 71, 0.5);
    border-color: #fde047;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: #fbbf24;
    border-color: white;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
    }
    
    .slide-content p {
        font-size: 1.1rem;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    }
    
    .slide-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
    }
    
    .slide-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    }
}

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

/* Apply Buttons Group */
.apply-buttons-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-apply-program {
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-apply-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}

.btn-apply-program:hover::before {
    left: 100%;
}

/* MBBS Button - Red Theme */
.btn-apply-program.mbbs {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-color: #dc2626;
}

.btn-apply-program.mbbs:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* DPT Button - Green Theme */
.btn-apply-program.dpt {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border-color: #059669;
}

.btn-apply-program.dpt:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

/* Nutrition Button - Purple Theme */
.btn-apply-program.nutrition {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    border-color: #7c3aed;
}

.btn-apply-program.nutrition:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* Nursing Button - Teal Theme */
.btn-apply-program.nursing {
    background: linear-gradient(135deg, #0e7490, #0c6178);
    color: white;
    border-color: #0e7490;
}

.btn-apply-program.nursing:hover {
    background: linear-gradient(135deg, #0c6178, #0a5162);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(14, 116, 144, 0.4);
}

/* Top Search Bar Styles */
.top-search-bar {
    margin-right: 15px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2px 10px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.search-input {
    border: none;
    background: transparent;
    padding: 5px;
    font-size: 12px;
    width: 120px;
    outline: none;
    color: #333;
}

.search-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #1e40af;
}

/* Adjust Top Right Spacing */
.top-right {
    gap: 1rem !important;
}

/* How to Apply Section */
.how-to-apply {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    padding: 80px 0;
    color: #ffffff;
}

.how-to-apply .section-title {
    color: #ffffff !important;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.apply-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.apply-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #c53030;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Important Links Section */
.important-links {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.important-links::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.important-links .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 20px;
    position: relative;
}

.important-links .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #c53030, #0f4c75);
    margin: 15px auto;
    border-radius: 2px;
}

.important-links .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.link-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #0f4c75;
}

.link-card[data-category='academic']:hover {
    border-color: #c53030;
    box-shadow: 0 25px 50px rgba(197, 48, 48, 0.2);
}

.link-card[data-category='technology']:hover {
    border-color: #0f4c75;
    box-shadow: 0 25px 50px rgba(15, 76, 117, 0.2);
}

.link-card[data-category='resources']:hover {
    border-color: #c53030;
    box-shadow: 0 25px 50px rgba(197, 48, 48, 0.2);
}

.link-card[data-category='events']:hover {
    border-color: #0f4c75;
    box-shadow: 0 25px 50px rgba(15, 76, 117, 0.2);
}

.link-card[data-category='legal']:hover {
    border-color: #c53030;
    box-shadow: 0 25px 50px rgba(197, 48, 48, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #0f4c75, #c53030, #0f4c75);
    animation: iconRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover .card-icon::before {
    opacity: 1;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

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

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.link-card:hover .card-title {
    color: #1e40af;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.link-card:hover .card-description {
    color: #374151;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #c53030 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* Combined Welcome & Affiliations Section */
.welcome-affiliations-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.welcome-affiliations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.welcome-affiliations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Welcome Column Styling */
.welcome-column {
    position: relative;
    z-index: 2;
}

.welcome-column .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c53030, #0f4c75);
    margin-bottom: 25px;
    border-radius: 2px;
}

.welcome-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.welcome-text strong {
    color: #1e40af;
    font-weight: 600;
}

.welcome-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #c53030 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.welcome-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.4);
}

.welcome-btn i {
    transition: transform 0.3s ease;
}

.welcome-btn:hover i {
    transform: translateX(5px);
}

/* Affiliations Column Styling */
.affiliations-column {
    position: relative;
    z-index: 2;
}

.affiliations-column .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.2;
}

.affiliation-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.affiliation-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.affiliation-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 90px;
}

.affiliation-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #0f4c75;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    padding: 5px;
    transition: all 0.3s ease;
}

.affiliation-logo:hover .logo-image {
    transform: scale(1.05);
    background: #fef3c7;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.affiliation-logo:hover .logo-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.1);
}

.logo-content {
    flex: 1;
}

.logo-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.affiliation-logo:hover .logo-name {
    color: #1e40af;
}

.logo-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}


/* Vision Mission Page Styles */
.vision-mission-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #c53030 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    color: white;
    text-align: center;
}

.vision-mission-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"rgba(255,255,255,0.1)\" stroke-width=\"1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grid)\"/></svg>');
    opacity: 0.3;
}

.vision-mission-header h1 {
    font-size: 2.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.vision-mission-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.current {
    color: white;
    font-weight: 500;
}

/* Vision Mission Main Content */
.vision-mission-main {
    padding: 100px 0;
    background: #f8fafc;
}

.vision-section,
.mission-section {
    margin-bottom: 120px;
}

.mission-section {
    margin-bottom: 0;
}

.vm-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.vision-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.mission-icon {
    background: linear-gradient(135deg, #c53030, #b91c1c);
    box-shadow: 0 10px 25px rgba(197, 48, 48, 0.3);
}

.vm-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f4c75;
    margin: 0;
}

.vision-statement,
.mission-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 35px;
    padding: 30px;
    background: white;
    border-left: 5px solid #3b82f6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.mission-statement {
    border-left-color: #c53030;
}

.vision-details,
.mission-details {
    margin-top: 30px;
}

.vision-details h3,
.mission-details h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-points,
.mission-points {
    list-style: none;
    padding: 0;
}

.vision-points li,
.mission-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-points li:hover,
.mission-points li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-points li i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
}

.mission-points li i {
    color: #c53030;
    font-size: 1.1rem;
    width: 20px;
}

/* VM Image Styling */
.vm-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #c53030;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Strategic Goals Section */
.strategic-goals-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.goals-timeline {
    margin-top: 60px;
}

.goal-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.goal-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 49px;
    top: 100px;
    width: 2px;
    height: 60px;
    background: #cbd5e1;
}

.goal-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 76, 117, 0.3);
    position: relative;
    z-index: 2;
}

.goal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.goal-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.goal-content h3 {
    font-size: 1.6rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.goal-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.goal-features {
    list-style: none;
    padding: 0;
}

.goal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.goal-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Vision Mission Content Section */
.vm-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.vm-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f4c75, #1a5a8e, #0f4c75);
}

.vm-block {
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.08);
    border: 1px solid rgba(15, 76, 117, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
}

.vm-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0f4c75 0%, #1a5a8e 100%);
    transition: all 0.4s ease;
}

.vm-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 76, 117, 0.03));
    transition: all 0.4s ease;
}

.vm-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 76, 117, 0.15);
    border-color: rgba(15, 76, 117, 0.15);
}

.vm-block:hover::before {
    width: 8px;
    background: linear-gradient(180deg, #c53030 0%, #e53e3e 100%);
}

.vm-block:hover::after {
    width: 100%;
}

.vm-block:last-child {
    margin-bottom: 0;
}

.vm-block-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f4c75;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.vm-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0f4c75, #1a5a8e);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.vm-block:hover .vm-block-title::after {
    width: 120px;
    background: linear-gradient(90deg, #c53030, #e53e3e);
}

.vm-block-title .title-accent {
    display: none;
}

.vm-block-text {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #4a5568;
    margin-bottom: 18px;
    padding-left: 0;
    position: relative;
    transition: all 0.3s ease;
}

.vm-block-text:hover {
    color: #1e3a5f;
}

.vm-block-text:last-child {
    margin-bottom: 0;
}

.vm-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.vm-numbered-list li {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 18px 25px;
    padding-left: 70px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(15, 76, 117, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    counter-increment: item;
}

.vm-numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8e 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
}

.vm-numbered-list li:hover {
    color: #1e3a5f;
    transform: translateX(10px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(15, 76, 117, 0.15);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.1);
}

.vm-numbered-list li:hover::before {
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
    transform: translateY(-50%) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

/* Mission Statement Table Section */
.mission-table-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-alignment-table {
    overflow-x: auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #0f4c75;
    animation: fadeInUp 0.8s ease-out;
}

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

@keyframes shimmerEffect {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.mission-alignment-table .styled-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.mission-alignment-table .styled-table thead tr {
    background: #0f4c75;
    color: white;
}

.mission-alignment-table .styled-table th {
    padding: 18px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid #0f4c75;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-alignment-table .styled-table th::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mission-alignment-table .styled-table th:hover::after {
    left: 100%;
}

.mission-alignment-table .styled-table th:last-child {
    border-right: none;
}

.mission-alignment-table .styled-table th.mission-col {
    width: 55%;
}

.mission-alignment-table .styled-table th.alignment-col {
    width: 22%;
}

.mission-alignment-table .styled-table th.los-col {
    width: 23%;
}

.mission-alignment-table .styled-table td {
    padding: 30px 25px;
    vertical-align: top;
    background: white;
    border-right: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mission-alignment-table .styled-table td:hover {
    background: #f8fafc;
}

.mission-alignment-table .styled-table td:last-child {
    border-right: none;
}

.mission-alignment-table .mission-statements p {
    margin-bottom: 20px;
    line-height: 1.85;
    color: #1e3a5f;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.mission-alignment-table .mission-statements p:hover {
    color: #0f4c75;
    transform: translateX(5px);
}

.mission-alignment-table .mission-statements p:last-child {
    margin-bottom: 0;
}

.mission-alignment-table .alignment-points ul,
.mission-alignment-table .los-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-alignment-table .alignment-points li {
    padding: 8px 0;
    color: #1e3a5f;
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.mission-alignment-table .alignment-points li:hover {
    color: #0f4c75;
    transform: translateX(8px);
    font-weight: 500;
}

.mission-alignment-table .alignment-points li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #0f4c75;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mission-alignment-table .alignment-points li:hover::before {
    color: #c53030;
    transform: scale(1.3);
}

.mission-alignment-table .los-points li {
    padding: 8px 0;
    color: #1e3a5f;
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.mission-alignment-table .los-points li:hover {
    color: #0f4c75;
    transform: translateX(8px);
    font-weight: 500;
}

.mission-alignment-table .los-points li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #0f4c75;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mission-alignment-table .los-points li:hover::before {
    color: #c53030;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .mission-alignment-table .styled-table {
        display: block;
    }
    
    .mission-alignment-table .styled-table thead {
        display: none;
    }
    
    .mission-alignment-table .styled-table tbody,
    .mission-alignment-table .styled-table tr,
    .mission-alignment-table .styled-table td {
        display: block;
        width: 100%;
    }
    
    .mission-alignment-table .styled-table td {
        border-right: none;
        border-bottom: 2px solid #0f4c75;
        padding: 25px;
    }
    
    .mission-alignment-table .styled-table td:last-child {
        border-bottom: none;
    }
    
    .mission-alignment-table .styled-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #0f4c75;
        display: block;
        margin-bottom: 15px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-bottom: 10px;
        border-bottom: 2px solid #0f4c75;
    }
    
    .mission-alignment-table .mission-statements::before {
        content: 'SRMC Mission Statement';
    }
    
    .mission-alignment-table .alignment-points::before {
        content: 'Alignment';
    }
    
    .mission-alignment-table .los-points::before {
        content: 'LOs (PMDC 7 Star Doctor)';
    }
}

@media (max-width: 768px) {    .mission-alignment-table .mission-statements::before {
        content: 'SRMC Mission Statement';
    }
    
    .mission-alignment-table .alignment-points::before {
        content: 'Alignment';
    }
    
    .mission-alignment-table .los-points::before {
        content: 'LOs (PMDC 7 Star Doctor)';
    }
}

/* CTA Section */
.vm-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #c53030 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: white;
    color: #0f4c75;
}

.cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Vision Mission */
@media (max-width: 992px) {
    .vm-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-section .vm-content-grid {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .goal-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .goal-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .goal-item:not(:last-child)::after {
        left: 39px;
        top: 80px;
    }
}

@media (max-width: 768px) {
    .vision-mission-header h1 {
        font-size: 2rem;
    }
    
    .vm-title {
        font-size: 2rem;
    }
    
    .vision-statement,
    .mission-statement {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .goal-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .goal-number {
        margin: 0 auto;
    }
    
    .goal-item:not(:last-child)::after {
        display: none;
    }
    
    .goal-features li {
        justify-content: center;
    }
    
    .goal-features li::before {
        position: static;
        margin-right: 10px;
    }
}


/* History Page Styles */
/* History Page Specific Styles */
.history-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0891b2 100%);
}

.principal-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
}

.alumni-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
}

.career-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.quality-header {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
}

.it-header {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
}

.history-stats-section {
    padding: 60px 0;
    background: #f8fafc;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid-history {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 76, 117, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card .stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-card .stat-label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.history-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0891b2 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.history-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"history-pattern\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"3\" fill=\"rgba(255,255,255,0.1)\"/><path d=\"M10,25 Q25,10 40,25 T70,25\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"1\" fill=\"none\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23history-pattern)\"/></svg>');
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.3);
}

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

.history-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.history-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.history-hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.history-hero .breadcrumb i {
    margin-right: 5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fcd34d;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-divider {
    display: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* College Journey Section */
.college-journey-section {
    padding: 100px 0;
    background: #f8fafc;
}

.journey-content {
    margin-top: 60px;
}

.journey-text .lead-paragraph {
    font-size: 1.2rem;
    color: #0f4c75;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

/* History Page Specific Highlight Items */
.college-journey-section .highlight-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
    position: relative;
    overflow: visible;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.college-journey-section .highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.college-journey-section .highlight-item i {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.college-journey-section .highlight-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.college-journey-section .highlight-item h4 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.college-journey-section .highlight-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Founding Vision Section */
.founding-vision-section {
    padding: 100px 0;
    background: white;
}

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

.vision-story .lead-paragraph {
    font-size: 1.2rem;
    color: #0f4c75;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vision-story p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founding-principles {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid #22c55e;
}

.founding-principles h4 {
    color: #0f4c75;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.principles-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 500;
}

.principles-list i {
    color: #22c55e;
    font-size: 1.1rem;
}

.founders-gallery {
    text-align: center;
}

.main-founder {
    background: linear-gradient(135deg, #0f4c75, #3b82f6);
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 30px;
}

.main-founder h4 {
    color: white;
}

.main-founder p {
    color: white;
    opacity: 0.95;
}

.founder-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
}

.main-founder h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.founding-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.stat-info .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f4c75;
}

.stat-info .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

/* Legacy & Impact Section */
.legacy-impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
    position: relative;
}

.legacy-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"impact-pattern\" width=\"30\" height=\"30\" patternUnits=\"userSpaceOnUse\"><circle cx=\"15\" cy=\"15\" r=\"1\" fill=\"rgba(255,255,255,0.1)\"/></pattern></defs><rect width=\"60\" height=\"60\" fill=\"url(%23impact-pattern)\"/></svg>');
    opacity: 0.4;
}

.legacy-impact-section .section-subtitle {
    color: white;
    opacity: 0.95;
}

.legacy-impact-section .container {
    position: relative;
    z-index: 2;
}

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

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Future Vision Section */
.future-vision-section {
    padding: 100px 0;
    background: #f8fafc;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.goal-item {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(15, 76, 117, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.12);
}

.goal-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(15, 76, 117, 0.2);
}

.goal-item:hover .goal-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}

.goal-content {
    flex: 1;
}

.goal-item h4 {
    font-size: 1.5rem;
    color: #0f4c75;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.goal-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.future-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.future-cta h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 700;
}

.future-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background: #0f4c75;
    color: white;
    border: 2px solid #0f4c75;
}

.cta-btn.primary:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #0f4c75;
    border: 2px solid #0f4c75;
}

.cta-btn.secondary:hover {
    background: #0f4c75;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 76, 117, 0.3);
}

/* Responsive Design for History Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
    }
}


/* Quality Enhancement Page Styles */
.quality-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #3b82f6 50%, #22c55e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.quality-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"quality-pattern\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"2\" fill=\"rgba(255,255,255,0.1)\"/><rect x=\"20\" y=\"20\" width=\"10\" height=\"10\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23quality-pattern)\"/></svg>');
    opacity: 0.6;
}

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

.quality-hero .hero-title {
    color: #ffffff !important;
}

/* QEC Portal Section */
.qec-portal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.qec-highlight {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid #22c55e;
    position: relative;
    overflow: hidden;
}

.qec-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.qec-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.qec-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.qec-text h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 700;
}

.qec-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.qec-portal-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #0f4c75, #3b82f6);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
    font-weight: 600;
}

.qec-portal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 76, 117, 0.4);
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.qec-portal-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.qec-portal-btn span {
    font-size: 1rem;
    margin-bottom: 4px;
}

.qec-portal-btn small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Quality Framework Section */
.quality-framework-section {
    padding: 100px 0;
    background: white;
}

.framework-overview .lead-paragraph {
    font-size: 1.2rem;
    color: #0f4c75;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.pillar-item {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
}

.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-item h3 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Quality Initiatives Section */
.quality-initiatives-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.initiative-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #22c55e;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.initiative-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.initiative-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.initiative-header h4 {
    color: #0f4c75;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.initiative-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.initiative-content li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.initiative-content li::before {
    content: '';
    color: #22c55e;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Quality Metrics Section */
.quality-metrics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
}

.quality-metrics-section .section-title {
    color: #ffffff !important;
}

.quality-metrics-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #22c55e;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.metric-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* QA Process Section */
.qa-process-section {
    padding: 100px 0;
    background: white;
}

.qa-process-section .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

@media (max-width: 600px) {
    .qa-process-section .process-timeline {
        grid-template-columns: 1fr;
    }
}

.qa-process-section .process-step {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.qa-process-section .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 auto 15px auto;
    position: static;
}

.qa-process-section .step-content {
    width: 100%;
    text-align: center;
}

.qa-process-section .step-content h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 600;
}

.qa-process-section .step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Quality Committees Section */
.quality-committees-section {
    padding: 100px 0;
    background: #f8fafc;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.committee-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
}

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

.committee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.committee-card h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.committee-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.committee-functions {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.committee-functions li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.committee-functions li::before {
    content: '';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.committee-link {
    margin-top: 20px;
}

.qec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qec-link:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

/* Future Goals Section */
.future-goals-section {
    padding: 100px 0;
    background: white;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.goal-item {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
}


/* Career Page Styles */
.career-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f8a 50%, #22c55e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"career-pattern\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"2\" fill=\"rgba(255,255,255,0.1)\"/><rect x=\"15\" y=\"15\" width=\"20\" height=\"20\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23career-pattern)\"/></svg>');
    opacity: 0.3;
}

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

.career-hero .hero-title {
    color: #ffffff !important;
}

/* Why Work Section */
.why-work-section {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Job Openings Section */
.job-openings-section {
    padding: 100px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

.job-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #22c55e;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-bottom: 1px solid #e5e7eb;
}

.job-type-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-type-badge.faculty {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.job-type-badge.administration {
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    color: white;
}

.job-type-badge.support {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.job-meta {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta i {
    color: #22c55e;
}

.job-content {
    padding: 20px 25px;
}

.job-title {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 20px;
    font-weight: 600;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    padding: 5px 0;
}

.job-detail i {
    color: #22c55e;
    width: 16px;
    font-size: 0.85rem;
}

.job-detail .last-date {
    color: #dc2626;
    font-weight: 600;
}

.job-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.apply-btn {
    flex: 1;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-1px);
}

.save-job-btn {
    padding: 8px 12px;
    background: white;
    color: #64748b;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.save-job-btn:hover {
    background: #f8fafc;
    color: #0f4c75;
    border-color: #0f4c75;
}

/* Application Process Section */
.application-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
}

.process-step h3 {
    color: #0f4c75;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact HR Section */
.contact-hr-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.contact-hr-card {
    background: linear-gradient(135deg, #0f4c75, #1a5f8a, #0f4c75);
    color: white;
    padding: 0;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.contact-hr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.contact-header {
    text-align: center;
    padding: 60px 50px 50px;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-header h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hr-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-value {
    font-size: 1.15rem;
    color: white;
    font-weight: 700;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-btn {
    padding: 20px 36px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.contact-btn.secondary {
    background: white;
    color: #0f4c75;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-btn.secondary:hover {
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.contact-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

/* Contact Alumni Section */
.contact-alumni-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.contact-alumni-card {
    background: linear-gradient(135deg, #0f4c75, #1a5f8a, #0f4c75);
    color: white;
    padding: 0;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.contact-alumni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.contact-alumni-card .contact-header {
    text-align: center;
    padding: 60px 50px 50px;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-alumni-card .contact-header h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.contact-alumni-card .contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.contact-alumni-card .contact-content {
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.alumni-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Alumni Page Styles */
.alumni-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f8a 50%, #22c55e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.alumni-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"alumni-pattern\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><path d=\"M25 0L50 25L25 50L0 25Z\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23alumni-pattern)\"/></svg>');
    opacity: 0.3;
}

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

.alumni-hero .hero-title {
    color: #ffffff !important;
}

/* Alumni Message Section */
.alumni-message-section {
    padding: 100px 0;
    background: white;
}

.message-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.message-image {
    position: relative;
    overflow: hidden;
}

.message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.message-card:hover .message-image img {
    transform: scale(1.05);
}

.message-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-content h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 10px;
}

.alumni-role {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: block;
}

.message-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f4c75;
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.story-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.story-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}

.story-overlay span {
    color: #22c55e;
    font-weight: 600;
}

.story-content {
    padding: 30px;
}

.story-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-story-btn {
    color: #0f4c75;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-story-btn:hover {
    gap: 12px;
    color: #22c55e;
}

/* Alumni Events Section */
.alumni-events-section {
    padding: 100px 0;
    background: white;
}

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

.event-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #22c55e;
}

.event-date {
    background: #0f4c75;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-details {
    padding: 25px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 10px;
}

.event-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

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

.event-info i {
    color: #22c55e;
}

.event-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.register-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #0f4c75;
    color: #0f4c75;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #0f4c75;
    color: white;
}

/* Registration Section */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f8a 100%);
    color: white;
    text-align: center;
}

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

.registration-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.registration-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.join-btn {
    padding: 15px 40px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.join-btn:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}


/* Program Page Styles */
.program-header {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    color: white;
}

.program-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.program-icon-large i {
    font-size: 3rem;
    color: white;
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c53030;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
}

.program-content {
    padding: 40px 30px;
}

.program-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 5px;
    text-align: center;
}

.program-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    text-align: center;
}

.program-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.feature-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.feature-item span {
    color: #374151;
    font-weight: 500;
}

.program-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.program-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-btn.primary {
    background: linear-gradient(135deg, #c53030, #b91c1c);
    color: white;
    border: 2px solid #c53030;
}

.program-btn.primary:hover {
    background: transparent;
    color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 48, 48, 0.3);
}

.program-btn.secondary {
    background: transparent;
    color: #0f4c75;
    border: 2px solid #0f4c75;
}

.program-btn.secondary:hover {
    background: #0f4c75;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 117, 0.3);
}

/* Program Statistics */
.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 2px solid #64748b;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Program Specific Styling */
.mbbs-program .program-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.dpt-program .program-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
}

.nutrition-program .program-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}


/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f4c75, #22c55e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #22c55e;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    font-size: 3rem;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
    font-weight: 900;
}

.contact-icon i.fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 15px;
}

.contact-card p {
    color: #374151;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* Contact Page Header */
.contact-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f8a 50%, #22c55e 100%);
}

/* Department Contacts Section */
.department-contacts-section {
    padding: 100px 0;
    background: white;
}

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

.department-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #22c55e;
}

.dept-header {
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.dept-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #22c55e;
}

.dept-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.dept-content {
    padding: 30px 25px;
}

.dept-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #4b5563;
}

.dept-info:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.dept-info i {
    width: 24px;
    color: #22c55e;
    font-size: 1.1rem;
}

.dept-info span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f4c75, #1a5f8a, #22c55e);
}

.map-header {
    margin-bottom: 60px;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.3);
    animation: pulse-map 2s ease-in-out infinite;
    font-size: 3rem;
}

@keyframes pulse-map {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(15, 76, 117, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(15, 76, 117, 0.4);
    }
}

.map-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid white;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    pointer-events: none;
}

.location-pin {
    background: linear-gradient(135deg, #0f4c75, #1a5f8a);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.4);
    font-weight: 600;
    font-size: 1rem;
    animation: bounce-pin 2s ease-in-out infinite;
}

.location-pin::before {
    content: '';
    font-size: 1.8rem;
    animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes bounce-pin {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.directions-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    border: 1px solid rgba(15, 76, 117, 0.1);
    position: relative;
    overflow: hidden;
}

.directions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f4c75, #22c55e);
}

.directions-card h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.directions-card h3 i {
    color: #22c55e;
    font-size: 2rem;
}

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

.direction-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 20px;
    border-left: 5px solid #22c55e;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.direction-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    border-left-color: #0f4c75;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.direction-item i {
    font-size: 2.5rem;
    color: #0f4c75;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    transition: all 0.3s ease;
}

.direction-item:hover i {
    transform: scale(1.1);
    color: #22c55e;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.2);
}

.direction-item h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 700;
}

.direction-item p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 20px auto 0;
}

.contact-form-modern {
    background: #f8fafc;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f4c75;
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #c53030, #b91c1c);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.4);
}


/* About Page Styles */
.about-intro-section {
    padding: 80px 0;
    background: white;
}

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

.about-text-content {
    padding-right: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

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

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
}

/* CEO Message Styles */
.ceo-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #c53030 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.ceo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"ceo-pattern\" width=\"40\" height=\"40\" patternUnits=\"userSpaceOnUse\"><circle cx=\"20\" cy=\"20\" r=\"2\" fill=\"rgba(255,255,255,0.1)\"/></pattern></defs><rect width=\"80\" height=\"80\" fill=\"url(%23ceo-pattern)\"/></svg>');
    opacity: 0.4;
}

.ceo-message-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ceo-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.ceo-profile-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 100px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.ceo-profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #c53030, #0f4c75);
    border-radius: 25px;
    z-index: -1;
}

.ceo-image-container {
    margin-bottom: 30px;
}

.ceo-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    border: 5px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ceo-image:hover img {
    transform: scale(1.1);
}

.ceo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #c53030 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.ceo-image:hover .ceo-placeholder {
    transform: scale(1.1);
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.avatar-circle i {
    font-size: 4rem;
    color: #0f4c75;
}

.professional-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #c53030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.4);
    border: 3px solid white;
}

.professional-badge i {
    font-size: 1.2rem;
    color: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ceo-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 3rem;
    color: white;
}

.ceo-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ceo-title {
    font-size: 1.2rem;
    color: #c53030;
    font-weight: 600;
    margin-bottom: 5px;
}

.ceo-college {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.ceo-credentials {
    text-align: left;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f1f5f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.credential-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
}

.credential-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.ceo-message-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.message-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f1f5f9;
}

.message-header h3 {
    font-size: 2rem;
    color: #0f4c75;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-header i {
    color: #c53030;
}

.opening-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e40af;
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-left: 5px solid #3b82f6;
    border-radius: 10px;
}

.message-body {
    line-height: 1.8;
    color: #374151;
}

.message-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.advice-section,
.college-development {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.advice-section h4,
.college-development h4 {
    color: #0f4c75;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advice-section h4 i,
.college-development h4 i {
    color: #22c55e;
}

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

.advice-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advice-list li i {
    color: #3b82f6;
    margin-top: 3px;
    font-size: 1rem;
}

.closing-message {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
}

.closing-message p {
    margin-bottom: 15px;
    color: #4b5563;
}

.closing-message .blessing {
    font-style: italic;
    color: #92400e;
    font-weight: 500;
    margin-bottom: 0;
}

/* Chairman Message Styles */
.chairman-header {
    background: linear-gradient(135deg, #c53030 0%, #f59e0b 50%, #0f4c75 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.chairman-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"chairman-pattern\" width=\"20\" height=\"20\" patternUnits=\"userSpaceOnUse\"><polygon points=\"10,0 20,10 10,20 0,10\" fill=\"rgba(255,255,255,0.08)\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23chairman-pattern)\"/></svg>');
    opacity: 0.3;
}

.chairman-message-section {
    padding: 100px 0;
    background: #f8fafc;
}

.chairman-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.chairman-profile-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 100px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.chairman-profile-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #c53030, #f59e0b, #0f4c75);
    border-radius: 25px;
    z-index: -1;
}

.chairman-image-container {
    margin-bottom: 30px;
}

.chairman-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    border: 5px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.chairman-image:hover img {
    transform: scale(1.1);
}

.chairman-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(197, 48, 48, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chairman-image:hover .image-overlay {
    opacity: 1;
}

.chairman-image .overlay-content i {
    font-size: 3rem;
    color: white;
}

.chairman-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c53030 0%, #f59e0b 50%, #0f4c75 100%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.chairman-image:hover .chairman-placeholder {
    transform: scale(1.1);
}

.chairman-placeholder .avatar-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.chairman-placeholder .avatar-circle i {
    font-size: 4rem;
    color: #0f4c75;
}

.chairman-placeholder .professional-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    border: 3px solid white;
}

.chairman-placeholder .professional-badge i {
    font-size: 1.2rem;
    color: white;
}

.chairman-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 8px;
    line-height: 1.2;
}

.chairman-title {
    font-size: 1.2rem;
    color: #c53030;
    font-weight: 600;
    margin-bottom: 5px;
}

.chairman-college {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.chairman-credentials {
    text-align: left;
}

.chairman-credentials .credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f1f5f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chairman-credentials .credential-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.chairman-credentials .credential-item i {
    color: #f59e0b;
    font-size: 1.1rem;
}


/* Programs Overview Section */
.programs-overview-section {
    padding: 80px 0;
    background: white;
}

.programs-overview-section .container {
    max-width: 1400px;
}

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

.program-card {
    background: #f8fafc;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #c53030;
}

.program-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #c53030, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 2.2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 15px;
}

.program-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    color: white;
}

.why-choose-section .section-title {
    color: #ffffff !important;
}

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

.why-choose-section .feature-item {
    text-align: center !important;
    padding: 30px 20px !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
}

.why-choose-section .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-choose-section .feature-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.why-choose-section .feature-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-section .feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff !important;
    text-align: center;
}

.why-choose-section .feature-item p {
    opacity: 0.9;
    line-height: 1.6;
    color: white;
    text-align: center;
}

/* Principal Message Styles */
.principal-message-section {
    padding: 100px 0;
    background: white;
}

.message-content {
    max-width: 1000px;
    margin: 0 auto;
}

.principal-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #22c55e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.principal-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0f4c75, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    border: 4px solid #22c55e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-info {
    text-align: left;
}

.principal-name {
    font-size: 2.2rem;
    color: #0f4c75;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.principal-title {
    font-size: 1.3rem;
    color: #c53030;
    margin-bottom: 5px;
    font-weight: 600;
}

.institution-name {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.qualification-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qualification-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #bae6fd;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.message-greeting h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 30px;
    font-weight: 600;
    font-style: italic;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #0f4c75;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
}

.message-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.message-highlights {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #22c55e;
}

/* IT Services Page Styles */
.it-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #7c3aed 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.it-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"it-pattern\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"1.5\" fill=\"rgba(255,255,255,0.1)\"/><rect x=\"20\" y=\"20\" width=\"10\" height=\"10\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23it-pattern)\"/></svg>');
    opacity: 0.4;
}

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

.it-hero .hero-title {
    color: #ffffff !important;
}

.it-overview-section {
    padding: 90px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f4c75, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 76, 117, 0.12);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0f4c75, #1a6fa8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(15, 76, 117, 0.25);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.service-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    padding: 14px 0 0;
    margin: auto 0 0;
    border-top: 1px solid #f1f5f9;
}

.service-features li {
    position: relative;
    padding: 5px 0 5px 24px;
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.7rem;
    top: 8px;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 100px 0;
    background: white;
}

.infrastructure-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #64748b;
    font-size: 1.1rem;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.infra-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f4c75, #22c55e, #0891b2);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.infra-card:hover::before {
    opacity: 1;
}

.infra-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 20px 50px rgba(15, 76, 117, 0.15),
                0 10px 30px rgba(34, 197, 94, 0.1);
    background: linear-gradient(145deg, #ffffff, #fefeff);
}

.infra-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(15, 76, 117, 0.2);
}

.infra-card:hover .infra-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #22c55e 0%, #0891b2 50%, #0f4c75 100%);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.infra-card h4 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.infra-card:hover h4 {
    color: #22c55e;
}

.infra-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* IT Services Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .it-overview-section {
        padding: 70px 0;
    }
}
@media (max-width: 576px) {
    .services-grid,
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .it-overview-section,
    .infrastructure-section {
        padding: 50px 0;
    }
    .service-card {
        padding: 28px 22px;
    }
}

/* Calculator Page Styles */
.calculator-hero {
    background: linear-gradient(rgba(15, 76, 117, 0.9), rgba(15, 76, 117, 0.9)), 
                url('../images/hero-bg-1.svg') center/cover;
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.calculator-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #22c55e 0%, #0f4c75 50%, #22c55e 100%);
    opacity: 0.8;
    z-index: -1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.feature-badge i {
    color: #22c55e;
}

.calculator-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: #0f4c75;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

.fee-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0f4c75;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group select,
.form-group input[type=\"range\"] {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.session-info {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    border-radius: 15px;
    color: white;
}

.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.session-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.session-details {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group select:focus,
.form-group input[type=\"range\"]:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: white;
    border-color: #22c55e;
}

.checkbox-item input[type=\"checkbox\"] {
    width: 20px;
    height: 20px;
    accent-color: #22c55e;
}

.checkbox-item label {
    margin: 0;
    color: #475569;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
}

.range-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

#merit-value,
#need-value {
    background: #22c55e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.calculate-btn {
    background: linear-gradient(135deg, #0f4c75, #22c55e);
}


/* MBBS Curriculum Header */
.mbbs-curriculum-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
    padding: 4rem 0;
    color: white;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.mbbs-curriculum-header .row {
    display: flex;
    align-items: center;
    width: 100%;
}

.mbbs-curriculum-header .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 2rem;
}

.mbbs-curriculum-header .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mbbs-curriculum-header .page-header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    line-height: 1.2;
}

.mbbs-curriculum-header .curriculum-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.mbbs-curriculum-header .header-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.mbbs-curriculum-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.mbbs-curriculum-header .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mbbs-curriculum-header .breadcrumb a:hover {
    opacity: 1;
}

.mbbs-curriculum-header .separator {
    opacity: 0.6;
}

.mbbs-curriculum-header .current {
    opacity: 1;
    font-weight: 500;
}

.mbbs-curriculum-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.9);
    z-index: 1;
}

.mbbs-curriculum-header .container {
    position: relative;
    z-index: 2;
}

.mbbs-curriculum-header .curriculum-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.mbbs-curriculum-header .curriculum-highlights {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.mbbs-curriculum-header .highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* DPT Header Specific Styling */
.dpt-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0f4c75 100%);
    position: relative;
    overflow: hidden;
}

/* MBBS Header Specific Styling */
.mbbs-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    position: relative;
    overflow: hidden;
}

.dpt-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"rgba(255,255,255,0.1)\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grid)\"/></svg>');
    opacity: 0.3;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.program-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0 25px;
    font-weight: 400;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.program-highlights .highlight-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    margin: 5px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.program-highlights .highlight-item i {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 1rem;
}

/* Fee Hero Section */
.fee-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0f4c75 100%);
    padding: 140px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.fee-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.fee-hero .hero-overlay {
    display: none;
}

.fee-hero .container {
    position: relative;
    z-index: 1;
}

.fee-hero .hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    max-width: none;
}

.fee-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.fee-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.fee-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.fee-hero .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.fee-hero .hero-stats .stat-item {
    text-align: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fee-hero .hero-stats .stat-item:last-child {
    border-bottom: none;
}

.fee-hero .hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.fee-hero .hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 5px;
}

.fee-hero .hero-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.fee-hero .hero-stats .stat-divider {
    display: none;
}

/* Responsive for Fee Hero */
@media (max-width: 992px) {
    .fee-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fee-hero .breadcrumb {
        justify-content: center;
    }
    
    .fee-hero .hero-subtitle {
        max-width: none;
    }
    
    .fee-hero .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .fee-hero .hero-stats .stat-item {
        flex: 1 1 33%;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .fee-hero .hero-stats .stat-item:last-child {
        border-right: none;
    }
}

/* Current Fee Section */
.current-fee-section {
    padding: 60px 0;
    background: #f8fafc;
}

.fee-header {
    text-align: center;
    margin-bottom: 40px;
}

.fee-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allocation-info {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 500;
}

.merit-basis {
    font-size: 1rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fee Structure Table */
.fee-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.fee-structure-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.fee-structure-table thead tr:first-child th {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 100%);
    color: white;
    padding: 18px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.fee-structure-table thead tr:first-child th.fee-category {
    text-align: left;
    font-size: 1rem;
}

.fee-structure-table thead tr.subheader th {
    background: #1e40af;
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: left;
}

.fee-structure-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.fee-structure-table tbody tr:hover {
    background: #f0f9ff;
}

.fee-structure-table tbody td {
    padding: 15px;
    text-align: center;
    color: #374151;
    font-size: 0.95rem;
}

.fee-structure-table tbody td.fee-item {
    text-align: left;
    font-weight: 500;
    color: #0f4c75;
}

.fee-structure-table tbody tr.total-row {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-bottom: none;
}

.fee-structure-table tbody tr.total-row td {
    color: #0f4c75;
    font-weight: 600;
}

.fee-structure-table tbody tr.total-row td:last-child {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Fee Notes */
.fee-notes {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.fee-notes h4 {
    color: #0f4c75;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-notes h4::before {
    content: '⚠';
    font-size: 1.2rem;
}

.fee-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-notes li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.fee-notes li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fee-notes li strong {
    color: #dc2626;
}


/* Faculty Page Styles */
.faculty-header {
    background: linear-gradient(135deg, #0f4c75 0%, #22c55e 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.faculty-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"faculty-pattern\" width=\"30\" height=\"30\" patternUnits=\"userSpaceOnUse\"><circle cx=\"15\" cy=\"15\" r=\"2\" fill=\"rgba(255,255,255,0.1)\"/><rect x=\"10\" y=\"10\" width=\"10\" height=\"10\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"1\"/></pattern></defs><rect width=\"60\" height=\"60\" fill=\"url(%23faculty-pattern)\"/></svg>');
    opacity: 0.4;
}

/* Faculty Statistics */
.faculty-stats-section {
    padding: 80px 0;
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

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

.stat-card {
    background: #f8fafc;
    padding: 20px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.stat-card:nth-child(1) {
    border-top-color: #ef4444;
}

.stat-card:nth-child(2) {
    border-top-color: #22c55e;
}

.stat-card:nth-child(3) {
    border-top-color: #3b82f6;
}

.stat-card:nth-child(4) {
    border-top-color: #f59e0b;
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 8px;
}

.stat-content p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Faculty Departments */
.faculty-departments-section {
    padding: 100px 0;
    background: #f8fafc;
}

.department-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 60px 0 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover,
.tab-btn.active {
    background: #0f4c75;
    color: white;
    border-color: #0f4c75;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
}

.department-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.department-content.active {
    display: block;
}

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

.department-title {
    font-size: 1.8rem;
    color: #0f4c75;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.department-title i {
    color: #22c55e;
    font-size: 2rem;
}

/* Faculty Grid */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.faculty-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.08), 
                0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0f4c75, #22c55e, #0891b2);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faculty-card:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.faculty-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, 50%);
    transition: all 0.5s ease;
}

.faculty-card:hover::after {
    transform: translate(30%, 30%) scale(1.5);
}

.faculty-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #22c55e;
    box-shadow: 0 20px 50px rgba(15, 76, 117, 0.15), 
                0 10px 30px rgba(34, 197, 94, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg, #ffffff, #fefeff);
}

.faculty-image {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0f4c75, #22c55e, #0891b2) border-box;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.faculty-card:hover .faculty-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.3);
}

.faculty-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 50%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.faculty-card:hover .faculty-placeholder {
    background: linear-gradient(135deg, #22c55e 0%, #0891b2 50%, #0f4c75 100%);
}

.faculty-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.faculty-info h4 {
    font-size: 1.5rem;
    color: #0f4c75;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faculty-card:hover .faculty-info h4 {
    color: #22c55e;
    transform: scale(1.05);
}

.designation {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(8, 145, 178, 0.1));
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faculty-card:hover .designation {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(8, 145, 178, 0.2));
    color: #0f4c75;
    font-weight: 700;
}

/* View Faculty Link on Department Cards */
.view-faculty {
    display: block;
    margin-top: 15px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.view-faculty i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.faculty-card:hover .view-faculty {
    opacity: 1;
    transform: translateY(0);
}

.faculty-card:hover .view-faculty i {
    transform: translateX(5px);
}

/* Make faculty-card work as link */
a.faculty-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.qualification {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.specializations {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.spec-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #bae6fd;
}

.experience {
    color: #22c55e;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.experience i {
    font-size: 1rem;
}

/* Faculty Excellence */
.faculty-excellence-section {
    padding: 100px 0;
    background: white;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.excellence-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border-left: 5px solid #22c55e;
}

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

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon {
    transform: scale(1.1) rotate(5deg);
}

.excellence-card h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.excellence-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Join Faculty CTA */
.join-faculty-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    text-align: center;
}


/* Program Overview Styles */
.program-overview {
    padding: 50px 0;
    background: #f8fafc;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.overview-text h2 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview-text h2 i {
    color: #22c55e;
}

.intro-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
    border-color: #22c55e;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stats Card */
.overview-stats {
    position: sticky;
    top: 100px;
}

.stats-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(15, 76, 117, 0.12);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    min-width: 280px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    background: white;
}

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

.stat-item:hover {
    background: #f8fafc;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f4c75;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.accreditation-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
}

.accreditation-info h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accreditation-info h4 i {
    color: #22c55e;
}

.accreditation-info ul {
    list-style: none;
    padding: 0;
}

.accreditation-info li {
    display: flex;
    align-items: center;
}


/* Nutrition Program Specific Styles */
.nutrition-header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.nutrition-header::before {
    background: rgba(34, 197, 94, 0.9);
}

.nutrition-header .program-icon-large {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.nutrition-header .highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Alumni Page Styles */
.alumni-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #22c55e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.alumni-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.1);
}

.alumni-message-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.alumni-quote {
    background: white;
    padding: 2rem;
    border-left: 4px solid #0f4c75;
    border-radius: 8px;
    font-style: italic;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.alumni-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #0f4c75;
}

.message-visual {
    position: relative;
    text-align: center;
}

.graduation-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.graduation-icon i {
    font-size: 4rem;
    color: white;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    position: absolute;
    background: linear-gradient(45deg, #0f4c75, #22c55e);
    border-radius: 2px;
}

.line-1 {
    width: 80px;
    height: 3px;
    top: 30px;
    left: 20px;
    transform: rotate(25deg);
}

.line-2 {
    width: 60px;
    height: 3px;
    bottom: 40px;
    right: 30px;
    transform: rotate(-25deg);
}

.line-3 {
    width: 100px;
    height: 3px;
    top: 50%;
    left: -20px;
    transform: rotate(15deg);
}

.alumni-benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 76, 117, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

.notable-alumni-section {
    padding: 80px 0;
    background: #f8fafc;
}

.alumni-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.alumni-profile {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.alumni-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 76, 117, 0.15);
}

.profile-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile-placeholder i {
    font-size: 2.5rem;
    color: white;
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 0.25rem;
}

.profile-location, .profile-class {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.profile-description {
    color: #4a5568;
    line-height: 1.6;
    margin: 1rem 0;
}

.profile-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.achievement {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.alumni-registration-section {
    padding: 80px 0;
    background: white;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.registration-info {
    padding-right: 2rem;
}

.registration-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #4a5568;
    font-weight: 500;
}

.registration-form-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.registration-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alumni-registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alumni-registration-form .form-group {
    margin-bottom: 1rem;
}

.alumni-registration-form label {
    display: block;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.alumni-registration-form input,
.alumni-registration-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.alumni-registration-form input:focus,
.alumni-registration-form select:focus {
    outline: none;
    border-color: #0f4c75;
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 117, 0.3);
}

.alumni-events-section {
    padding: 80px 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 76, 117, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.event-detail i {
    color: #0f4c75;
    width: 16px;
}

.event-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-btn {
    background: #0f4c75;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: #1e40af;
}


/* Principal Message Page Styles */
.principal-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #3b82f6 50%, #22c55e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.principal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.1);
}

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

.principal-message-section {
    padding: 100px 0;
    background: white;
}

.message-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Principal Profile */
.principal-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #22c55e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.principal-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0f4c75, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    border: 4px solid #22c55e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-info {
    text-align: left;
}

.principal-name {
    font-size: 2.2rem;
    color: #0f4c75;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.principal-title {
    font-size: 1.3rem;
    color: #c53030;
    margin-bottom: 5px;
    font-weight: 600;
}

.institution-name {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.qualification-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qualification-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #bae6fd;
}

/* Message Text */
.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.message-greeting h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 30px;
    font-weight: 600;
    font-style: italic;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #0f4c75;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
}

.message-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.message-highlights {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #22c55e;
}

.message-highlights h4 {
    color: #0f4c75;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 500;
}

.commitment-list i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.message-closing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.closing-text {
    font-size: 1.2rem;
    color: #0f4c75;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

.signature {
    text-align: right;
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
}

.signature-name {
    font-size: 1.3rem;
    color: #0f4c75;
    font-weight: 700;
    margin-bottom: 5px;
}

.signature-title {
    color: #c53030;
    font-weight: 600;
    margin-bottom: 3px;
}

.signature-institution {
    color: #64748b;
    font-weight: 500;
}

/* Principal Achievements Section */
.principal-achievements-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #22c55e;
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.achievement-card h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Principal Section */
.contact-principal-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f4c75, #22c55e);
    color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.contact-principal-section .cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-principal-section .cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.contact-principal-section .cta-section p {
    color: white;
    opacity: 0.95;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-principal-section .section-title {
    color: white;
}

.contact-principal-section .section-subtitle {
    color: white;
    opacity: 0.95;
}

/* Principal Message Page CTA Section */
.principal-message-section .cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.principal-message-section .cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.principal-message-section .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}


/* ================================
   Curriculum Page Styles
   ================================ */

/* Curriculum Overview */
.curriculum-overview {
    padding: 40px 0;
    background: #f8fafc;
}

.curriculum-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Curriculum Stats Box - New Design */
.curriculum-stats-box {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.3);
}

.curriculum-stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.curriculum-stat-row:last-child {
    border-bottom: none;
}

.curriculum-stat-row:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.curriculum-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.curriculum-stat-icon i {
    font-size: 1.3rem;
    color: #22c55e;
}

.curriculum-stat-info {
    display: flex;
    flex-direction: column;
}

.curriculum-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.curriculum-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .curriculum-overview .overview-content {
        grid-template-columns: 1fr;
    }
    
    .curriculum-stats-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .curriculum-stat-row {
        border-bottom: none;
    }
}

.curriculum-description {
    margin-top: 20px;
}

.curriculum-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.highlight-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
    border-color: #22c55e;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-card h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.curriculum-stats {
    position: sticky;
    top: 100px;
}

.curriculum-features {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    margin-top: 25px;
}

.curriculum-features h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curriculum-features h4 i {
    color: #22c55e;
}

.curriculum-features ul {
    list-style: none;
    padding: 0;
}

.curriculum-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-weight: 500;
}

.curriculum-features li i {
    color: #22c55e;
}

/* Semester Curriculum */
.semester-curriculum {
    padding: 40px 0;
    background: white;
}

.semesters-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.semester-card {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.semester-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.1);
    border-color: #22c55e;
}

.semester-header {
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.semester-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
}

.semester-info h3 {
    font-size: 1.15rem;
    margin: 0 0 3px 0;
    color: white;
}

.semester-info p {
    margin: 0 0 6px 0;
    opacity: 0.9;
    font-size: 0.9rem;
    color: white;
}

.credit-hours {
    font-size: 0.9rem;
    background: #22c55e;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.semester-courses {
    padding: 15px 18px;
}

.course-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 7px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.course-item:hover {
    background: #f0f9ff;
    border-color: #22c55e;
    transform: translateX(5px);
}

.course-code {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 70px;
    text-align: center;
}

.course-details {
    flex: 1;
}

.course-details h4 {
    font-size: 0.9rem;
    color: #0f4c75;
    margin: 0 0 3px 0;
    font-weight: 600;
}

.course-details p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.credits {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.85rem;
    align-self: center;
}

/* Side-by-side Semesters Layout */
.semesters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

/* Responsive design for semesters */
@media (max-width: 768px) {
    .semesters-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Clinical Training */
.clinical-training {
    padding: 40px 0;
    background: #f8fafc;
}

.clinical-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    margin-top: 25px;
}

.clinical-info h3 {
    font-size: 1.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.clinical-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.clinical-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinical-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    border-left: 4px solid #22c55e;
}

.clinical-feature i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 5px;
}

.clinical-feature h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.clinical-feature p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.clinical-breakdown {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
}

.clinical-breakdown h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-chart {
    margin: 20px 0;
}

.hour-item {
    margin-bottom: 15px;
}

.hour-bar {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-hours {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 10px;
    color: #0f4c75;
    font-size: 1.1rem;
}

/* Assessment Methods */
.assessment-methods {
    padding: 80px 0;
    background: white;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.assessment-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.1);
    border-color: #22c55e;
}

.assessment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.assessment-icon i {
    font-size: 2rem;
    color: white;
}

.assessment-card h3 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.assessment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.assessment-weight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Download Section */
.curriculum-download {
    padding: 50px 0;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon i {
    font-size: 2rem;
    color: white;
}

.download-text h3 {
    font-size: 1.4rem;
    color: #0f4c75;
    margin-bottom: 8px;
    font-weight: 600;
}

.download-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Design for DPT Curriculum */
@media (max-width: 1200px) {
    .clinical-content {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .semesters-container {
        grid-template-columns: 1fr;
    }
    
    .curriculum-highlights {
        grid-template-columns: 1fr;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .semester-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .semester-number {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .course-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .clinical-features {
        gap: 15px;
    }
}

/* ================================
   About Page - Location Highlight
   ================================ */
.location-highlight {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
}

.location-text h3 {
    font-size: 1.8rem;
    color: #0f4c75;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-text h3 i {
    color: #c53030;
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.location-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #22c55e;
}

.location-features .feature-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.location-visual {
    display: flex;
    justify-content: center;
}

.location-card {
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.3);
    width: 100%;
}

.card-header h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.card-header p {
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
}

.card-body {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-body p {
    color: white;
    opacity: 0.9;
}

.city-illustration {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f59e0b;
}

/* ================================
   Chairman Message Page Styles
   ================================ */

.holistic-development,
.invitation-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.holistic-development h4,
.invitation-section h4 {
    color: #0f4c75;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.holistic-development h4 i {
    color: #f59e0b;
}

.invitation-section h4 i {
    color: #22c55e;
}

/* Scoped Achievements Grid for Chairman Page */
.vision-section .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.achievement-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}

.achievement-item h5 {
    color: #0f4c75;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.achievement-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Activities List */
.activities-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.activities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activities-list li i {
    color: #f59e0b;
    font-size: 1rem;
}

/* Future Vision Cards */
.future-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.vision-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #22c55e;
}

.vision-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.vision-card h5 {
    color: #0f4c75;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.vision-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.chairman-message-content .message-signature {
    margin-top: 40px;
    text-align: right;
}

.chairman-message-content .signature-line {
    width: 200px;
    height: 2px;
    background: #e2e8f0;
    margin-left: auto;
    margin-bottom: 15px;
}

.chairman-message-content .signature-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #0f4c75;
    font-weight: 700;
    margin-bottom: 5px;
}

.chairman-message-content .signature-title {
    color: #c53030;
    font-weight: 600;
}

/* College Values Section */
.college-values-section {
    padding: 80px 0;
    background: white;
}

.college-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.college-values-section .value-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.college-values-section .value-card:nth-child(1) { border-top-color: #ef4444; }
.college-values-section .value-card:nth-child(2) { border-top-color: #3b82f6; }
.college-values-section .value-card:nth-child(3) { border-top-color: #f59e0b; }
.college-values-section .value-card:nth-child(4) { border-top-color: #22c55e; }

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

.college-values-section .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.college-values-section .value-card:nth-child(1) .value-icon { background: #ef4444; }
.college-values-section .value-card:nth-child(2) .value-icon { background: #3b82f6; }
.college-values-section .value-card:nth-child(3) .value-icon { background: #f59e0b; }
.college-values-section .value-card:nth-child(4) .value-icon { background: #22c55e; }

.college-values-section .value-card h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.college-values-section .value-card p {
    color: #64748b;
    line-height: 1.6;
}


/* ================================
   Chairman Message - Missing Styles
   ================================ */

.chairman-credentials {
    text-align: left;
}

.chairman-credentials .credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f1f5f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chairman-credentials .credential-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.chairman-credentials .credential-item i {
    color: #f59e0b;
    font-size: 1.1rem;
    width: 20px;
}

.chairman-credentials .credential-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

/* Chairman Message Content Container */
.chairman-message-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.chairman-message-content .message-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f1f5f9;
}

.chairman-message-content .message-header h3 {
    font-size: 2rem;
    color: #0f4c75;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chairman-message-content .message-header i {
    color: #c53030;
}

.chairman-message-content .opening-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #dc2626;
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 5px solid #c53030;
    border-radius: 10px;
}

.chairman-message-content .message-body {
    line-height: 1.8;
    color: #374151;
}


/* Campus Life Highlight */
.campus-life-highlight {
    padding: 80px 0;
    background: #f8fafc;
}

.campus-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.campus-text h3 {
    font-size: 1.8rem;
    color: #0f4c75;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.campus-text h3 i {
    color: #c53030;
}

.campus-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.campus-features {
    margin-top: 25px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.campus-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
}

.campus-features .feature-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.activity-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.activity-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f59e0b;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-card i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 15px;
    display: block;
}

.activity-card h5 {
    color: #0f4c75;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Chairman CTA */
.chairman-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #c53030, #f59e0b);
    text-align: center;
}

.chairman-cta .cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.chairman-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design for Chairman Page */
@media (max-width: 768px) {
    .chairman-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chairman-profile-card {
        position: static;
        margin-bottom: 30px;
    }
    
    .chairman-message-content {
        padding: 30px 25px;
    }
    
    .campus-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
}


/* Leadership Values Section */
.leadership-values {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.leadership-values .title-underline {
    margin: 0 auto 50px;
}

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

.value-box {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-box:nth-child(1) {
    border-top-color: #3b82f6;
}

.value-box:nth-child(2) {
    border-top-color: #22c55e;
}

.value-box:nth-child(3) {
    border-top-color: #c53030;
}

.value-box:nth-child(4) {
    border-top-color: #f59e0b;
}

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

.value-box .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.value-box:nth-child(1) .value-icon {
    background: #3b82f6;
}

.value-box:nth-child(2) .value-icon {
    background: #22c55e;
}

.value-box:nth-child(3) .value-icon {
    background: #c53030;
}

.value-box:nth-child(4) .value-icon {
    background: #f59e0b;
}

.value-box h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-box p {
    color: #64748b;
    line-height: 1.6;
}

/* CEO CTA Section */
.ceo-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f4c75, #c53030);
    text-align: center;
}

.ceo-cta .cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.ceo-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design for CEO Page */
@media (max-width: 768px) {
    .ceo-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ceo-profile-card {
        position: static;
        margin-bottom: 30px;
    }
    
    .ceo-message-content {
        padding: 30px 25px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}


/* Message Signature */
.message-signature {
    margin-top: 40px;
    text-align: right;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: #c53030;
    margin-left: auto;
    margin-bottom: 15px;
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 5px;
}

.signature-title {
    color: #64748b;
    font-style: italic;
}


/* Global Font Update */

/* Enhanced Navigation Icons */
.nav-menu a i.fa-chevron-down {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

/* Refined Dropdown Shadows */
.dropdown-menu {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}


/* Rotation Schedule Section */
.rotation-schedule {
    margin-top: 50px;
}

.rotation-schedule h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rotation-schedule h3 i {
    color: #c53030;
    font-size: 1.8rem;
}

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

.rotation-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.rotation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rotation-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.rotation-header i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 12px;
}

.rotation-header h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 8px;
    font-weight: 600;
}

.rotation-header .duration {
    background: linear-gradient(135deg, #f59e0b, #c53030);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rotation-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rotation-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.rotation-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Admission Requirements Section */
.requirement-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.requirement-categories .requirement-category:last-child {
    grid-column: 1 / -1;
}

.requirement-category {
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid #3b82f6;
    transition: all 0.3s ease;
}

.requirement-category:nth-child(2) {
    border-left-color: #22c55e;
}

.requirement-category:nth-child(3) {
    border-left-color: #f59e0b;
}

.requirement-category:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.requirement-category h3 {
    font-size: 1.25rem;
    color: #0f4c75;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.requirement-category h3 i {
    font-size: 1.3rem;
    color: #3b82f6;
}

.requirement-category:nth-child(2) h3 i {
    color: #22c55e;
}

.requirement-category:nth-child(3) h3 i {
    color: #f59e0b;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-category li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.requirement-category li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirement-category li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #22c55e;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rotations-grid {
        grid-template-columns: 1fr;
    }
    
    .rotation-header {
        align-items: center;
        text-align: center;
    }
    
    .requirement-categories {
        grid-template-columns: 1fr;
    }
    
    .requirement-categories .requirement-category:last-child {
        grid-column: auto;
    }
    
    .requirement-category {
        padding: 20px;
    }
}


/* Ready to Apply Section - Enhanced */
.apply-now-card {
    background: linear-gradient(135deg, #1e40af 0%, #0f4c75 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.apply-now-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.apply-now-card .card-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.apply-now-card .card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
}

.apply-now-card .card-header h3 i {
    color: #fbbf24;
    font-size: 1.6rem;
}

.apply-now-card .card-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.application-steps .step {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 18px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.application-steps .step:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.application-steps .step-number {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 10px 0 !important;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    color: #1e40af;
    flex-shrink: 0;
}

.application-steps .step-text {
    width: 100%;
    text-align: center;
}

.application-steps .step-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
}

.application-steps .step-text p {
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.apply-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.apply-buttons .btn {
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.apply-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e40af;
}

.apply-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.apply-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.apply-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .apply-now-card {
        padding: 35px 25px;
    }
    
    .apply-now-card .card-header h3 {
        font-size: 1.8rem;
    }
    
    .application-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .apply-buttons {
        flex-direction: column;
    }
    
    .apply-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-header {
        padding: 40px 30px 35px;
    }
    
    .contact-header h3 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 18px;
    }
    
    .contact-item:hover {
        transform: translateX(0);
        transform: translateY(-3px);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        gap: 20px;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .directions-content {
        grid-template-columns: 1fr;
    }
    
    .directions-card {
        padding: 30px 25px;
    }
    
    .directions-card h3 {
        font-size: 1.5rem;
    }
    
    .direction-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Admission Requirements Section - Fixed Spacing */
.admission-requirements {
    padding: 60px 0;
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.requirements-text h2 {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirements-text h2 i {
    color: #22c55e;
}

.requirements-text > p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Responsive Design for Requirements */
@media (max-width: 992px) {
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ================================
   Curriculum Page - Stats Sidebar
   ================================ */
.curriculum-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.curriculum-overview .overview-stats {
    position: sticky;
    top: 100px;
}

.curriculum-overview .stats-grid {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 20px 50px rgba(15, 76, 117, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.curriculum-overview .stats-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.curriculum-overview .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

.curriculum-overview .stat-item:last-child {
    border-bottom: none;
}

.curriculum-overview .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.curriculum-overview .stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.curriculum-overview .stat-icon i {
    font-size: 1.3rem;
    color: #22c55e !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.curriculum-overview .stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.curriculum-overview .stat-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white !important;
    margin: 0 0 2px 0;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
}

.curriculum-overview .stat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ================================
   Program Requirements Section
   ================================ */
.program-requirements {
    padding: 60px 0;
    background: #f8fafc;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.requirement-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.requirement-card:nth-child(2)::before {
    background: linear-gradient(90deg, #3b82f6, #1e40af);
}

.requirement-card:nth-child(3)::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.requirement-card:nth-child(2) .requirement-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.requirement-card:nth-child(3) .requirement-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.requirement-icon i {
    font-size: 1.5rem;
    color: white;
}

.requirement-card h3 {
    font-size: 1.25rem;
    color: #0f4c75;
    margin-bottom: 18px;
    font-weight: 700;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-card li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

.requirement-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

.requirement-card:nth-child(2) li::before {
    color: #3b82f6;
}

.requirement-card:nth-child(3) li::before {
    color: #f59e0b;
}

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

/* ================================
   Apply MBBS Section
   ================================ */
.apply-mbbs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.apply-mbbs-section .apply-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.apply-mbbs-section .apply-header h2 {
    font-size: 2.2rem;
    color: #0f4c75;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.apply-mbbs-section .apply-header h2 i {
    color: #f59e0b;
    font-size: 1.8rem;
}

.apply-mbbs-section .apply-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.apply-mbbs-section .apply-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.apply-mbbs-section .apply-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.apply-mbbs-section .apply-highlight:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.apply-mbbs-section .apply-highlight i {
    color: #22c55e;
    font-size: 1.1rem;
}

.apply-mbbs-section .apply-highlight span {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.apply-mbbs-section .admission-info {
    background: white;
    padding: 25px;
    border-radius: 14px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.apply-mbbs-section .admission-info h3 {
    font-size: 1.15rem;
    color: #0f4c75;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-mbbs-section .admission-info h3 i {
    color: #3b82f6;
}

.apply-mbbs-section .admission-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-mbbs-section .admission-info li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.92rem;
    padding-left: 20px;
    position: relative;
}

.apply-mbbs-section .admission-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Apply Card */
.apply-mbbs-section .apply-card {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 40px 35px;
    color: white;
    box-shadow: 0 25px 60px rgba(15, 76, 117, 0.35);
    position: relative;
    overflow: hidden;
}

.apply-mbbs-section .apply-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -25%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.apply-mbbs-section .apply-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 180px;
    height: 180px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
}

.apply-mbbs-section .apply-card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.apply-mbbs-section .apply-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(34, 197, 94, 0.4);
}

.apply-mbbs-section .apply-icon i {
    font-size: 2.2rem;
    color: white;
}

.apply-mbbs-section .apply-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.apply-mbbs-section .apply-card-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.apply-mbbs-section .apply-features {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.apply-mbbs-section .apply-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.apply-mbbs-section .apply-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.apply-mbbs-section .apply-features .feature-item i {
    font-size: 1.2rem;
    color: #fbbf24;
    width: 24px;
}

.apply-mbbs-section .apply-features .feature-item div h4 {
    font-size: 0.95rem;
    margin: 0 0 2px 0;
    color: white;
}

.apply-mbbs-section .apply-features .feature-item div span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.apply-mbbs-section .apply-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.apply-mbbs-section .btn-apply-primary {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.apply-mbbs-section .btn-apply-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.apply-mbbs-section .btn-apply-secondary {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.apply-mbbs-section .btn-apply-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.apply-mbbs-section .contact-info {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.apply-mbbs-section .contact-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

.apply-mbbs-section .contact-info p i {
    margin-right: 8px;
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 992px) {
    .apply-mbbs-section .apply-content {
        grid-template-columns: 1fr;
    }
    
    .apply-mbbs-section .apply-highlights {
        grid-template-columns: 1fr;
    }
    
    .curriculum-overview .overview-content {
        grid-template-columns: 1fr;
    }
    
    .curriculum-overview .overview-stats {
        position: static;
        margin-top: 30px;
    }
    
    .curriculum-overview .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px 15px;
        justify-content: center;
    }
    
    .curriculum-overview .stat-item {
        flex: 1 1 45%;
        min-width: 140px;
        padding: 12px 10px;
        border-bottom: none;
    }
    
    .curriculum-overview .stat-item:hover {
        transform: none;
    }
    
    .curriculum-overview .stat-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .curriculum-overview .stat-icon i {
        font-size: 1rem;
    }
    
    .curriculum-overview .stat-content h3 {
        font-size: 1.4rem;
    }
    
    .curriculum-overview .stat-content p {
        font-size: 0.75rem;
    }
}

/* ================================
   Fee Calculator Section
   ================================ */
.fee-calculator-section {
    padding: 60px 0;
    background: white;
}

.calculator-promo {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 76, 117, 0.3);
}

.calculator-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.calculator-content {
    position: relative;
    z-index: 1;
    color: white;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.calculator-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calculator-icon-large i {
    font-size: 2rem;
    color: #22c55e;
}

.calculator-text h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: white;
}

.calculator-text p {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.calculator-features {
    margin-bottom: 25px;
}

.calculator-features .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calculator-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.calculator-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.calculator-features .feature-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.calculator-features .feature-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.calculator-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
}

.calculator-info small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Calculator Preview */
.calculator-preview {
    position: relative;
    z-index: 1;
}

.preview-window {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.preview-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls .control.red { background: #ef4444; }
.window-controls .control.yellow { background: #f59e0b; }
.window-controls .control.green { background: #22c55e; }

.window-title {
    color: #94a3b8;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
}

.preview-content {
    padding: 25px;
}

.preview-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-form .form-field label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.preview-form .field-preview {
    padding: 10px 12px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0f4c75;
    font-weight: 500;
}

.checkbox-preview {
    margin-bottom: 20px;
}

.checkbox-preview .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-preview .checkbox-item i {
    color: #22c55e;
}

.checkbox-preview .checkbox-item i.far {
    color: #94a3b8;
}

.result-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-preview .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.result-preview .result-item span {
    color: #64748b;
    font-size: 0.9rem;
}

.result-preview .result-item strong {
    color: #0f4c75;
    font-size: 1.1rem;
}

.result-preview .result-item.savings {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.result-preview .result-item.savings strong {
    color: #22c55e;
}

/* ================================
   Previous Fee Resources Section
   ================================ */
.previous-fee-redesigned {
    padding: 60px 0;
    background: #f8fafc;
}

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

.section-header-center .section-title {
    font-size: 2rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header-center .section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

.fee-resources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.resource-item {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.resource-header {
    margin-bottom: 12px;
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.resource-icon i {
    font-size: 1.3rem;
    color: white;
}

.resource-icon.calculator-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.resource-header h4 {
    font-size: 1rem;
    color: #0f4c75;
    margin: 0;
    font-weight: 600;
}

.resource-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.resource-link.calculator-link {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.resource-link.calculator-link:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .calculator-promo {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .calculator-features .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fee-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Fee Structure Header
   ================================ */
.fee-structure-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0f4c75 100%);
    position: relative;
    overflow: hidden;
}

.fee-structure-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* ================================
   DPT Curriculum Page Adjustments
   ================================ */
/* Compact spacing for all DPT curriculum sections */
.semester-curriculum .assessment-methods {
    padding: 40px 0;
}

.semester-curriculum .assessment-grid {
    gap: 25px;
    margin-top: 30px;
}

.semester-curriculum .assessment-card {
    padding: 25px;
}

.semester-curriculum .assessment-icon {
    width: 70px;
    height: 70px;
}

.semester-curriculum .assessment-icon i {
    font-size: 1.8rem;
}

/* DPT Clinical training compact */
.clinical-feature {
    padding: 18px;
}

.clinical-breakdown {
    padding: 25px;
}

/* DPT responsive improvements */
@media (max-width: 992px) {
    .semesters-container {
        gap: 15px;
    }
    
    .curriculum-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .semester-header {
        padding: 12px 15px;
    }
    
    .semester-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .semester-courses {
        padding: 12px 15px;
    }
    
    .course-item {
        padding: 8px;
        gap: 10px;
    }
    
    .clinical-features {
        gap: 12px;
    }
    
    .clinical-feature {
        padding: 15px;
    }
    
    .download-content {
        gap: 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
    }
    
    .download-icon i {
        font-size: 1.6rem;
    }
}

/* ================================
   Departments Page Styles
   ================================ */
.departments-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e40af 50%, #0f4c75 100%);
}

.departments-overview {
    padding: 50px 0;
    background: #f8fafc;
}

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

.stat-box {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
    border-color: #22c55e;
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-box .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-box h3 {
    font-size: 2rem;
    color: #0f4c75;
    margin: 10px 0 5px;
    font-weight: 700;
}

.stat-box p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.program-departments {
    padding: 50px 0;
    background: white;
}

.program-departments.dpt-section {
    background: #f8fafc;
}

.program-departments.nutrition-section {
    background: white;
}

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

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-badge.dpt-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.program-badge.nutrition-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.program-badge i {
    font-size: 1.2rem;
}

.program-header-section h2 {
    font-size: 2rem;
    color: #0f4c75;
    margin: 15px 0 10px;
    font-weight: 700;
}

.program-header-section p {
    color: #666;
    font-size: 1.05rem;
}

.department-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    color: #0f4c75;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #22c55e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: #22c55e;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.department-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.15);
    border-color: #22c55e;
}

.dept-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.dept-icon i {
    font-size: 1.5rem;
    color: white;
}

.department-card h4 {
    font-size: 1.15rem;
    color: #0f4c75;
    margin: 0 0 10px;
    font-weight: 600;
}

.department-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.dept-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.dept-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f9ff;
    color: #0f4c75;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dept-features span i {
    color: #22c55e;
    font-size: 0.7rem;
}

.support-departments {
    padding: 50px 0;
    background: #f8fafc;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.support-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.15);
    border-color: #22c55e;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 1.8rem;
    color: white;
}

.support-card h4 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin: 0 0 10px;
    font-weight: 600;
}

.support-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.explore-programs-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f4c75, #1e40af);
    text-align: center;
    color: white;
}

.explore-programs-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.explore-programs-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.program-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.program-link-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.program-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon i {
    font-size: 2rem;
    color: white;
}

.program-link-card h4 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin: 0;
    font-weight: 700;
}

.program-link-card span {
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-link-card span i {
    transition: transform 0.3s ease;
}

.program-link-card:hover span i {
    transform: translateX(5px);
}

/* Responsive Design for Departments Page */
@media (max-width: 992px) {
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .program-header-section h2 {
        font-size: 1.6rem;
    }
}

/* Academic Programs Section */
.academic-programs-section {
    padding: 90px 0 100px;
    background: #fafbfc;
    position: relative;
}

.academic-programs-section::before {
    display: none;
}

.academic-programs-section .container {
    position: relative;
    z-index: 1;
}

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

.section-header .section-title {
    font-size: 2.2rem;
    color: #0f4c75;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c53030;
    border-radius: 2px;
}

.section-header .section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-top: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.programs-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-showcase-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-showcase-card::before {
    display: none;
}

.program-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #dce1e5;
}

.program-icon-wrapper {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
}

.program-icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.program-icon-wrapper.dpt-icon {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.program-icon-wrapper.nutrition-icon {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
}

.program-showcase-card:hover .program-icon-wrapper {
    transform: scale(1);
}

.program-icon-wrapper i {
    font-size: 4rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Program Image Styles */
.program-image-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.program-showcase-card:hover .program-image {
    transform: scale(1.08);
}

.program-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.program-showcase-card:hover .program-image-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.program-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #0f4c75;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.program-badge.dpt-badge {
    color: #047857;
}

.program-badge.nutrition-badge {
    color: #ea580c;
}

.program-showcase-card:hover .program-badge {
    background: #c53030;
    color: white;
    transform: translateY(-4px);
}

.program-showcase-content {
    padding: 30px 26px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-showcase-content h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.program-duration {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #f0f4f8;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 600;
    margin-bottom: 16px;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
}

.program-duration i {
    color: #0f4c75;
    font-size: 0.85rem;
}

.program-desc {
    color: #526377;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

.program-highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 4px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #334155;
    font-weight: 600;
    transition: all 0.2s ease;
}

.program-showcase-card:hover .highlight-tag {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.highlight-tag i {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: bold;
}

.program-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #c53030;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(197, 48, 48, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.program-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.program-learn-more:hover::before {
    left: 100%;
}

.program-learn-more:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(197, 48, 48, 0.35);
    gap: 12px;
}

.program-learn-more i {
    transition: transform 0.25s ease;
    font-size: 0.9rem;
}

.program-learn-more:hover i {
    transform: translateX(4px);
}

/* Statistics Section */
.stats-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

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

.stat-card {
    position: relative;
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f4c75, #1a5a8a);
    transition: height 0.4s ease;
}

.stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #c53030, #e53e3e);
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #0f4c75, #1a5a8a);
}

.stat-card:nth-child(4)::before {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 76, 117, 0.15);
}

.stat-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #c53030, #e53e3e);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.3);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.3);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.3);
}

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

.stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon i {
    transform: scale(1.1);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0f4c75;
    line-height: 1;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.stat-card:hover .stat-label {
    color: #0f4c75;
}

/* Updated How to Apply Section */
.how-to-apply {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.how-to-apply::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.how-to-apply .section-title {
    color: #ffffff !important;
    text-align: center;
}

.how-to-apply .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    margin-bottom: 50px;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.apply-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.apply-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.step-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.apply-cta {
    text-align: center;
    margin-top: 50px;
}

.apply-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
}

.apply-now-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    box-shadow: 0 12px 35px rgba(197, 48, 48, 0.5);
    transform: translateY(-3px);
}

.apply-now-btn i {
    transition: transform 0.3s ease;
}

.apply-now-btn:hover i {
    transform: translateX(5px);
}

/* Quick Links Section */
.important-links-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    position: relative;
    overflow: hidden;
}

.important-links-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.important-links-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.important-links-section .section-title {
    color: #ffffff !important;
}

.important-links-section .section-title::after {
    background: linear-gradient(90deg, #c53030, #ffffff) !important;
}

.important-links-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-link-card:hover .quick-link-icon {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.quick-link-icon i {
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.quick-link-card:hover .quick-link-icon i {
    color: #0f4c75;
    transform: scale(1.1);
}

.quick-link-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
}

.quick-link-card:hover h3 {
    color: #ffffff;
    transform: translateY(-2px);
}

.quick-link-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    transition: color 0.4s ease;
    position: relative;
    line-height: 1.5;
}

.quick-link-card:hover p {
    color: rgba(255, 255, 255, 1);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-link-card:hover .link-arrow {
    background: #c53030;
    color: #ffffff;
    transform: translateX(8px) scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

.link-arrow i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .link-arrow i {
    transform: translateX(2px);
}

/* Welcome About Section */
.welcome-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 30px;
    margin-bottom: 20px;
}

.welcome-badge i {
    color: #c53030;
    font-size: 1.2rem;
}

.welcome-badge span {
    color: #92400e;
    font-weight: 600;
    font-size: 0.9rem;
}

.welcome-content-wrapper .section-title {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.welcome-intro {
    font-size: 1.15rem;
    color: #0f4c75;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(15, 76, 117, 0.15);
    transform: translateX(10px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.welcome-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.welcome-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #0f4c75 0%, #1a5a8a 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.3);
}

.welcome-btn-primary:hover {
    background: linear-gradient(135deg, #c53030 0%, #991b1b 100%);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
    transform: translateY(-2px);
}

.welcome-btn-primary i {
    transition: transform 0.3s ease;
}

.welcome-btn-primary:hover i {
    transform: translateX(5px);
}

.welcome-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: transparent;
    color: #0f4c75;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #0f4c75;
    transition: all 0.3s ease;
}

.welcome-btn-secondary:hover {
    background: #0f4c75;
    color: white;
}

.welcome-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.campus-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 76, 117, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
}

.overlay-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Affiliations Section */
.affiliations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

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

.affiliation-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
}

.affiliation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(15, 76, 117, 0.15);
    border-color: #0f4c75;
}

.affiliation-logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.affiliation-card:hover .affiliation-logo-wrapper {
    background: #e0f2fe;
    transform: scale(1.1);
}

.affiliation-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.affiliation-card h3 {
    font-size: 1.1rem;
    color: #0f4c75;
    margin-bottom: 10px;
    font-weight: 700;
}

.affiliation-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .welcome-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .campus-image {
        height: 400px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .affiliations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Student Section Pages CSS */
.page-header-content {
    text-align: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-top: 15px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
}

.content-section {
    padding: 80px 0;
    background: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eef3;
}

.content-card h3 {
    color: #0f4c75;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h3 i {
    color: #c53030;
}

.content-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-card h4 {
    color: #0f4c75;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.08);
    border-left: 4px solid #0f4c75;
}

.sidebar-card.urgent {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left-color: #c53030;
}

.sidebar-card h4 {
    color: #0f4c75;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h4 i {
    color: #c53030;
}

.contact-info p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #0f4c75;
    width: 20px;
}

.timings-info p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.timings-info p strong {
    color: #0f4c75;
    display: block;
    margin-top: 10px;
}

.timings-info .note {
    background: #e0f2fe;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: #e0f2fe;
    color: #0f4c75;
    transform: translateX(5px);
}

.quick-links a i {
    color: #0f4c75;
    width: 18px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.styled-list li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    color: #059669;
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item strong {
    color: #0f4c75;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}

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

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #0f4c75;
}

.stat-item i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 2rem;
    color: #0f4c75;
    font-weight: 800;
    margin: 10px 0 5px;
}

.stat-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.rotation-grid, .workshop-grid, .activity-grid, .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.rotation-card, .workshop-item, .activity-card, .facility-card, .facility-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rotation-card:hover, .workshop-item:hover, .activity-card:hover, 
.facility-card:hover, .facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
    border-color: #0f4c75;
}

.rotation-icon, .workshop-icon, .activity-icon, .facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rotation-icon i, .workshop-icon i, .activity-icon i, .facility-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.workshop-duration {
    display: inline-block;
    background: #e0f2fe;
    color: #0f4c75;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.event-card {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #0f4c75;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 5px 20px rgba(15, 76, 117, 0.1);
    transform: translateX(5px);
}

.event-date {
    text-align: center;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    padding: 15px;
    border-radius: 10px;
    flex-shrink: 0;
    width: 80px;
}

.event-date .date-day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-date .date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
}

.event-details h4 {
    color: #0f4c75;
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.event-details p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 5px 0;
}

.event-details i {
    color: #c53030;
    margin-right: 5px;
}

.competition-list, .services-grid, .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.competition-item, .service-card, .menu-category {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border-top: 3px solid #0f4c75;
}

.competition-item i, .service-card i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.competition-item h4, .service-card h4, .menu-category h4 {
    color: #0f4c75;
    font-size: 1.1rem;
    margin: 10px 0;
}

.menu-category h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.menu-category ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.menu-category ul li:last-child {
    border-bottom: none;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 76, 117, 0.3);
}

.btn-primary i {
    margin-right: 8px;
}

/* Societies Page Styles */
.societies-showcase {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.society-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0f4c75;
    transition: all 0.3s ease;
}

.society-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.15);
}

.society-card.featured {
    border-left-color: #c53030;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.society-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.society-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.society-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.society-title h3 {
    color: #0f4c75;
    font-size: 1.5rem;
    margin: 0 0 5px;
}

.society-tagline {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.society-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.society-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0f4c75;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.society-activities {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.society-activities li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.society-activities li i {
    color: #059669;
}

.society-contact a {
    color: #0f4c75;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.join-society-section {
    margin-top: 50px;
}

.join-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.join-step {
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.join-benefits {
    margin-top: 30px;
}

.join-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.join-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
}

.join-benefits li i {
    color: #f59e0b;
    font-size: 1.2rem;
}

/* Hostel Styles */
.hostel-overview {
    margin: 40px 0;
}

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

.hostel-block {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hostel-header {
    padding: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hostel-header.boys {
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
}

.hostel-header.girls {
    background: linear-gradient(135deg, #c53030, #e53e3e);
}

.hostel-header i {
    font-size: 2.5rem;
}

.hostel-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.hostel-details {
    padding: 30px;
    display: grid;
    gap: 15px;
}

.hostel-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.hostel-stat i {
    font-size: 2rem;
    color: #0f4c75;
}

.hostel-stat strong {
    color: #0f4c75;
    font-size: 1.5rem;
}

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

.meal-card {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.meal-card i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.meal-card h4 {
    color: #0f4c75;
    margin: 10px 0;
}

.meal-card p {
    color: #c53030;
    font-weight: 600;
    margin: 10px 0;
}

.meal-card span {
    font-size: 0.9rem;
    color: #64748b;
}

.fee-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.fee-item strong {
    color: #0f4c75;
    font-size: 1.2rem;
}

.process-steps, .appointment-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.process-step, .step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
}

.process-step .step-num, .step-card .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step .step-content, .step-card .step-content {
    flex: 1;
}

.process-step h4, .step-card h4 {
    color: #0f4c75;
    margin: 0 0 8px;
}

.process-step p, .step-card p {
    margin: 0;
    color: #64748b;
}

/* Transport Page Styles */
.routes-grid {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.route-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0f4c75;
}

.route-number {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.route-stops {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.route-stops i {
    color: #c53030;
    margin-top: 3px;
}

.timing-table {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
}

.timing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
}

.timing-row.header {
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    font-weight: 600;
}

.timing-row:not(.header) {
    border-bottom: 1px solid #e2e8f0;
}

.timing-row:last-child {
    border-bottom: none;
}

/* Portal Page Styles */
.portal-login-section {
    margin: 50px 0;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.login-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.login-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

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

.login-form label {
    display: block;
    color: #0f4c75;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #0f4c75;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.forgot-link {
    color: #0f4c75;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 76, 117, 0.3);
}

.portal-features {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.portal-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.portal-feature:last-child {
    border-bottom: none;
}

.portal-feature i {
    color: #0f4c75;
    font-size: 1.5rem;
    margin-top: 5px;
}

.portal-feature h5 {
    color: #0f4c75;
    margin: 0 0 5px;
}

.portal-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

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

.service-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.category-header i {
    font-size: 2rem;
    color: #0f4c75;
}

.category-header h4 {
    color: #0f4c75;
    margin: 0;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.service-category ul li::before {
    content: "•";
    color: #059669;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Scholarship Styles */
.scholarship-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.scholarship-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #64748b;
    transition: all 0.3s ease;
}

.scholarship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.scholarship-card.gold {
    border-top-color: #f59e0b;
}

.scholarship-card.silver {
    border-top-color: #94a3b8;
}

.scholarship-card.bronze {
    border-top-color: #d97706;
}

.scholarship-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.scholarship-card.gold .scholarship-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.scholarship-card.silver .scholarship-badge {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.scholarship-card.bronze .scholarship-badge {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.scholarship-badge i {
    font-size: 2.5rem;
    color: #ffffff;
}

.scholarship-amount {
    font-size: 1.5rem;
    color: #0f4c75;
    font-weight: 700;
    margin: 20px 0;
    padding: 12px;
    background: #e0f2fe;
    border-radius: 8px;
}

.scholarship-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.scholarship-card ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.scholarship-card ul li:last-child {
    border-bottom: none;
}

.special-scholarships {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.special-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #0f4c75;
}

.special-item h4 {
    color: #0f4c75;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.special-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* Career Services Styles */
.stats-grid-career {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.career-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.career-stat i {
    font-size: 3rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.career-stat h4 {
    font-size: 2.5rem;
    color: #0f4c75;
    font-weight: 800;
    margin: 10px 0;
}

.career-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.career-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #0f4c75;
    transition: all 0.3s ease;
}

.career-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
}

.career-service-card i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.career-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.path-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.path-category h4 {
    color: #0f4c75;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.path-category ul {
    list-style: none;
    padding: 0;
}

.path-category ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.timeline-event {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
}

.timeline-event .event-date {
    display: inline-block;
    background: #e0f2fe;
    color: #0f4c75;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-event h4 {
    color: #0f4c75;
    margin: 10px 0;
}

/* Support Center Styles */
.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.support-cat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.support-cat-card i {
    font-size: 3rem;
    color: #0f4c75;
    margin-bottom: 20px;
}

.support-cat-card h4 {
    color: #0f4c75;
    margin-bottom: 15px;
}

.support-cat-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.support-cat-card ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.support-cat-card ul li::before {
    content: "→";
    color: #059669;
    position: absolute;
    left: 0;
}

.help-topics {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.help-topic {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topic-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.topic-content h4 {
    color: #0f4c75;
    margin: 0 0 8px;
}

.topic-content p {
    margin: 0;
    color: #64748b;
}

.peer-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.peer-program {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.peer-program i {
    font-size: 3rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-box {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 3px solid #0f4c75;
}

.service-box i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.service-box h5 {
    color: #0f4c75;
    margin: 10px 0;
}

.service-box p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Counseling Specific Styles */
.counseling-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.stat-box i {
    font-size: 3rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.stat-box h4 {
    font-size: 2rem;
    color: #0f4c75;
    font-weight: 800;
    margin: 10px 0;
}

.services-list-counseling {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.service-content h4 {
    color: #0f4c75;
    margin: 0 0 10px;
}

.service-content p {
    margin: 0;
    color: #64748b;
}

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

.issue-tag {
    background: #e0f2fe;
    color: #0f4c75;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.issue-tag i {
    color: #059669;
}

.crisis-text {
    color: #c53030;
    font-weight: 600;
    margin-bottom: 10px;
}

.crisis-number {
    font-size: 1.3rem;
    color: #c53030;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.crisis-note {
    background: #fef2f2;
    color: #c53030;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.workshop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.workshop-item-counseling {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border-top: 3px solid #0f4c75;
}

.workshop-item-counseling i {
    font-size: 2.5rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #0f4c75;
}

.faq-item h4 {
    color: #0f4c75;
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: #64748b;
}

.app-download {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.app-info i {
    font-size: 4rem;
    color: #0f4c75;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn small {
    font-size: 0.75rem;
    display: block;
}

.app-btn strong {
    font-size: 1.1rem;
    display: block;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.emergency-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.1);
    border-top: 3px solid #c53030;
}

.emergency-card i {
    font-size: 3rem;
    color: #c53030;
    margin-bottom: 15px;
}

.emergency-card h4 {
    color: #c53030;
    margin: 10px 0;
}

.emergency-number {
    font-size: 1.5rem;
    color: #c53030;
    font-weight: 700;
    margin: 15px 0;
}

.wellness-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.program-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateX(5px);
}

/* ========== NOTICES LIST PAGES STYLING ========== */
.notices-list-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

.notice-item-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: background 0.2s ease;
}

.notice-item-card:hover {
    background: #f9fafb;
}

.notice-date-badge {
    background: #0f4c75;
    color: white;
    padding: 8px 12px;
    text-align: center;
    min-width: 70px;
}

.notice-date-badge .date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.notice-date-badge .date-month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.notice-date-badge .date-year {
    display: none;
}

.notice-content {
    flex: 1;
}

.notice-title {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.notice-description {
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-meta {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.notice-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #f3f4f6;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
}

.notice-category i {
    font-size: 0.7rem;
}

/* Category badge colors for different types in admin */
.badge-notices {
    background: #dbeafe;
    color: #1e40af;
}

.badge-admissions {
    background: #dcfce7;
    color: #166534;
}

.badge-exams {
    background: #fef3c7;
    color: #b45309;
}

.notice-actions {
    display: flex;
    align-items: center;
}

.btn-view-notice {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #0f4c75;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.btn-view-notice:hover {
    background: #1a5a8a;
}

.btn-view-notice i {
    font-size: 0.85rem;
}

.no-notices-message {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.no-notices-message i {
    font-size: 2.5rem;
    color: #d1d5db;
    margin-bottom: 15px;
}

.no-notices-message h3 {
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.no-notices-message p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: white;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.page-link.active {
    background: #0f4c75;
    color: white;
    border-color: #0f4c75;
}

.page-dots {
    padding: 8px;
    color: #9ca3af;
}

.pagination-info {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notice-item-card {
        flex-wrap: wrap;
        padding: 12px 15px;
    }
    
    .notice-date-badge {
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .notice-date-badge .date-day {
        font-size: 1.3rem;
    }
    
    .notice-title {
        font-size: 0.95rem;
    }
    
    .notice-description {
        font-size: 0.8rem;
    }
    
    .notice-actions {
        width: 100%;
        margin-top: 8px;
    }
    
    .btn-view-notice {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 7px 12px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

.program-item {
    text-align: center;
    border-top: 3px solid #059669;
}

.program-item i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 15px;
}

.program-item h4 {
    color: #0f4c75;
    margin: 10px 0;
}

.timing-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.time-slot {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0f4c75;
}

.time-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f4c75, #1a5a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.time-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.time-details h4 {
    color: #0f4c75;
    margin: 0 0 5px;
}

.time-details .time {
    color: #c53030;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 5px 0;
}

.time-details .description {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.price-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #0f4c75;
}

.price-card.featured {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    border-top-color: #c53030;
    transform: scale(1.05);
}

.price-card h4 {
    color: #0f4c75;
    margin: 0 0 15px;
}

.price-card .price {
    font-size: 2.5rem;
    color: #c53030;
    font-weight: 800;
    margin: 15px 0;
}

.price-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.special-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-menu li {
    padding: 10px 0;
    color: #4a5568;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.special-menu li:last-child {
    border-bottom: none;
}

.special-menu strong {
    color: #0f4c75;
}

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

.team-card {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 3px solid #0f4c75;
}

.team-card i {
    font-size: 3rem;
    color: #0f4c75;
    margin-bottom: 15px;
}

.team-card h4 {
    color: #0f4c75;
    margin: 10px 0;
}

.team-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.login-footer a {
    color: #0f4c75;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Styles for Student Pages */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
    }
    
    .hostel-blocks {
        grid-template-columns: 1fr;
    }
    
    .timing-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .scholarship-cards,
    .career-services-grid,
    .support-categories {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Universal Site CTA Section
   ================================ */
.site-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #1a6fa8 50%, #0d3d5e 100%);
    color: white;
    text-align: center;
}
.site-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.site-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}
.site-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}
.site-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.site-cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}
.site-cta-btn.primary {
    background: white;
    color: #0f4c75;
}
.site-cta-btn.primary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}
.site-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}
.site-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    transform: translateY(-3px);
}
.site-cta-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.site-cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.site-cta-info-item i {
    color: #22c55e;
    font-size: 1.1rem;
}
@media (max-width: 576px) {
    .site-cta {
        padding: 60px 0;
    }
    .site-cta-content h3 {
        font-size: 1.5rem;
    }
    .site-cta-content p {
        font-size: 1rem;
    }
    .site-cta-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* ================================================
   MOBILE NAVIGATION — DROPDOWN & HAMBURGER FIXES
   ================================================ */
@media (max-width: 768px) {

    /* Nav-menu items — full width, top-padded area already set above */
    .nav-menu {
        align-items: stretch;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu > li > a {
        padding: 14px 20px;
        justify-content: space-between;
        width: 100%;
        border-radius: 0;
        display: flex;
        align-items: center;
    }

    /* Rotate chevron when submenu is open */
    .nav-menu .dropdown.mobile-open > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .nav-menu > li > a i.fa-chevron-down {
        transition: transform 0.25s ease;
    }

    /* Collapsed state — NO !important so JS inline style always wins */
    .mega-dropdown,
    .career-menu {
        display: none;
        position: static !important;
        top: auto !important;
        left: auto !important;
        z-index: auto !important;
        width: 100% !important;
        min-width: unset !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        border-top: 2px solid #fbbf24;
        border-radius: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
    }

    /* Mega menu — vertical layout on mobile */
    .mega-content {
        padding: 12px 16px 16px;
        max-width: 100%;
    }

    .mega-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
    }

    .mega-col {
        padding: 10px 0;
        border-bottom: 1px solid rgba(251,191,36,0.2);
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    /* Column headings — match desktop amber style */
    .mega-col h4 {
        color: #fbbf24 !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
        padding-bottom: 6px !important;
        border-bottom: 1px solid rgba(251,191,36,0.3) !important;
    }

    .mega-col ul {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    /* Links — white text with amber icons, matching desktop */
    .mega-col ul li a {
        color: rgba(255,255,255,0.9) !important;
        padding: 8px 8px !important;
        font-size: 0.84rem !important;
        border-radius: 5px;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
        transition: background 0.2s ease !important;
    }

    .mega-col ul li a:hover,
    .mega-col ul li a:active {
        background: rgba(255,255,255,0.12) !important;
        color: #fbbf24 !important;
    }

    .mega-col ul li a i {
        color: #fbbf24 !important;
        width: 14px !important;
        font-size: 0.78rem !important;
        flex-shrink: 0 !important;
    }

    /* Career dropdown — same colour scheme */
    .career-menu {
        padding: 12px 20px 16px !important;
    }

    .career-menu-header {
        display: none;
    }

    .career-menu ul {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    .career-menu ul li a {
        color: rgba(255,255,255,0.9) !important;
        padding: 10px 8px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        font-size: 0.88rem !important;
        border-radius: 5px;
        text-decoration: none !important;
        transition: background 0.2s ease !important;
    }

    .career-menu ul li a:hover,
    .career-menu ul li a:active {
        background: rgba(255,255,255,0.12) !important;
        color: #fbbf24 !important;
    }

    .career-menu ul li a i {
        color: #fbbf24 !important;
        width: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Hamburger → X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =============================================================
   COMPREHENSIVE MOBILE RESPONSIVE — All Page Types
   Covers: page headers, grids, cards, tables, forms, gallery
   ============================================================= */
@media (max-width: 768px) {

    /* ---------- Page hero headers (every page) ---------- */
    .page-header {
        padding: 50px 0 30px !important;
        min-height: auto !important;
    }

    .page-header h1,
    .page-header-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .page-header-content p,
    .page-header p {
        font-size: 0.92rem !important;
    }

    .header-badge {
        font-size: 0.72rem !important;
        padding: 5px 12px !important;
        margin-bottom: 12px !important;
    }

    /* Hide large decorative right-side visual on small screens */
    .header-visual {
        display: none !important;
    }

    /* Program highlights chips */
    .program-highlights {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 14px !important;
    }

    .program-highlights .highlight-item {
        padding: 7px 12px !important;
        font-size: 0.78rem !important;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.78rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    /* Section headings */
    .section-header h2,
    .section-title {
        font-size: 1.6rem !important;
    }

    .section-header p,
    .section-subtitle {
        font-size: 0.9rem !important;
    }

    /* Generic section padding */
    .section-padding {
        padding: 40px 0 !important;
    }

    /* ---------- Two-column content grids ---------- */
    .content-grid,
    .about-intro-grid,
    .about-content-grid,
    .mission-vision-grid,
    .vision-mission-content,
    .overview-content,
    .requirements-content,
    .contact-content-grid,
    .program-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Sidebar becomes static when stacked */
    .curriculum-overview .overview-content {
        grid-template-columns: 1fr !important;
    }

    .curriculum-overview .overview-stats {
        position: static !important;
    }

    /* Images in two-col layouts */
    .about-image-wrapper,
    .vision-image,
    .page-image-wrapper {
        text-align: center;
    }

    .about-image-wrapper img,
    .vision-image img,
    .page-image-wrapper img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }

    /* ---------- Department / Program card grids ---------- */
    .departments-grid,
    .programs-grid,
    .hostels-grid,
    .facilities-grid,
    .support-grid,
    .policies-grid,
    .policy-cards,
    .research-grid,
    .alumni-grid,
    .jobs-grid,
    .career-grid,
    .fee-resources-grid,
    .resource-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .department-card,
    .program-card,
    .hostel-card,
    .policy-card,
    .resource-item {
        padding: 20px !important;
    }

    /* ---------- Stats boxes ---------- */
    .overview-stats,
    .stats-grid,
    .stat-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .stat-box,
    .stat-card {
        padding: 18px 12px !important;
    }

    .stat-box .stat-number,
    .stat-card .stat-number {
        font-size: 1.8rem !important;
    }

    /* ---------- Faculty page ---------- */
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .faculty-card {
        padding: 16px !important;
    }

    .faculty-card .faculty-image,
    .faculty-placeholder {
        width: 80px !important;
        height: 80px !important;
    }

    .department-tabs {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .tab-btn {
        font-size: 0.78rem !important;
        padding: 7px 12px !important;
    }

    /* ---------- Feature / key-features cards ---------- */
    .feature-grid,
    .key-features-grid,
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .feature-card,
    .highlight-card {
        padding: 18px !important;
    }

    .feature-card h4,
    .highlight-card h4 {
        font-size: 0.95rem !important;
    }

    /* ---------- Gallery ---------- */
    .gallery-categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .masonry-grid {
        column-count: 2 !important;
        column-gap: 10px !important;
    }

    .category-card .category-image {
        height: 160px !important;
    }

    /* ---------- Contact page ---------- */
    .cp-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .cp-card {
        padding: 20px !important;
    }

    /* ---------- Apply / Admission forms ---------- */
    .form-row,
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Prevents iOS Safari zooming into inputs */
    .form-group input,
    .form-group select,
    .form-group textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }

    /* ---------- Fee structure tables ---------- */
    .fee-table-container,
    .table-responsive,
    .table-wrapper,
    .timing-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 8px;
    }

    .fee-structure-table,
    .timing-table,
    .schedule-table,
    .exam-table {
        min-width: 520px !important;
        font-size: 0.82rem !important;
    }

    .fee-structure-table th,
    .fee-structure-table td,
    .timing-table th,
    .timing-table td {
        padding: 10px 10px !important;
        white-space: nowrap;
    }

    /* ---------- Student section pages ---------- */
    .student-grid,
    .activities-grid,
    .society-grid,
    .events-grid,
    .workshops-grid,
    .sports-grid,
    .societies-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* ---------- Timeline (apply pages) ---------- */
    .timeline-steps,
    .admission-steps {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .timeline-step,
    .step-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    /* ---------- Nursing / DPT / Nutrition program grids ---------- */
    .nursing-program-grid,
    .dpt-overview-grid,
    .program-overview-grid,
    .nutrition-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* ---------- Hospital / Rehab / IT page grids ---------- */
    .hospital-grid,
    .services-grid,
    .it-grid,
    .rehab-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* ---------- Alumni / Research ---------- */
    .alumni-stats,
    .research-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* ---------- CTA / Button groups ---------- */
    .cta-buttons,
    .btn-group,
    .action-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .cta-buttons .btn,
    .btn-group .btn,
    .action-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* ---------- Global image safety ---------- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* ---------- BSN Nursing & Midwifery page ---------- */
    .bsn-fw-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ns-legend {
        gap: 10px !important;
    }

    .ns-legend-item {
        font-size: 0.78rem !important;
    }

    .career-opportunities .section-header {
        margin-bottom: 20px !important;
    }

    /* ---------- BSN Nutrition program page ---------- */
    .program-overview,
    .career-opportunities,
    .curriculum-structure,
    .admission-requirements {
        padding: 36px 0 !important;
    }

    .careers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .career-category {
        padding: 20px !important;
    }

    .career-category h3 {
        font-size: 1.15rem !important;
    }

    .career-item {
        padding: 14px !important;
    }

    /* Release sticky sidebar when stacked */
    .program-overview .overview-stats {
        position: static !important;
    }

    .stats-card {
        min-width: 0 !important;
        width: 100% !important;
    }

    /* Stats card items side-by-side when stacked as full width */
    .stats-card .stat-item {
        padding: 20px 15px !important;
    }

    .stats-card .stat-number {
        font-size: 2rem !important;
    }

    /* Intro text size */
    .intro-text {
        font-size: 0.97rem !important;
    }
}

/* ---- Extra-small phones (≤ 480px) ---- */
@media (max-width: 480px) {
    .page-header h1,
    .page-header-content h1 {
        font-size: 1.45rem !important;
    }

    .section-header h2,
    .section-title {
        font-size: 1.3rem !important;
    }

    .faculty-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-grid,
    .key-features-grid {
        grid-template-columns: 1fr !important;
    }

    .overview-stats,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-categories-grid {
        grid-template-columns: 1fr !important;
    }

    .masonry-grid {
        column-count: 1 !important;
    }

    .stat-box .stat-number,
    .stat-card .stat-number {
        font-size: 1.6rem !important;
    }

    .fee-structure-table,
    .timing-table {
        font-size: 0.72rem !important;
    }
}