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

:root {
    /* Primary Colors - Logo Focused */
    --primary: #c31341; /* Crimson/Magenta from Logo */
    --primary-rgb: 195, 19, 65;
    --secondary: #21255e; /* Navy Indigo from Logo Text */
    --secondary-rgb: 33, 37, 94;
    --accent: #F59E0B; /* Warm Amber */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --bg-light: #F8FAFC; /* Slate 50 */
    --bg-alt: #F1F5F9; /* Slate 100 */
    --text-main: #334155; /* Slate 700 */
    --text-muted: #64748B; /* Slate 500 */
    
    /* Design Tokens */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-dark: rgba(30, 41, 59, 0.85);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility Classes --- */
.container-custom {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1rem;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    padding: 1rem 2.2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.35);
    background-color: #0F766E; /* Darker Teal */
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--secondary-rgb), 0.35);
    background-color: #0F172A;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.section-padding {
    padding: 60px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-tag {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(30px, 40px, 35px);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* --- Header & Top Bar --- */
.header-top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact i {
    margin-right: 6px;
    color: rgba(255,255,255,0.8);
}

.top-bar-news {
    background: rgba(255,255,255,0.15);
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.header-modern {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-pill-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.header-modern.sticky {
    position: fixed;
    top: 0;
    padding: 10px 0;
    animation: slideDown 0.5s ease;
}

.header-modern.sticky .nav-pill-container {
    background: rgba(255, 255, 255, 0.95);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Dropdown Menus (Sub-menu) --- */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    width: 100%;
    margin: 5px 0px;
}

.nav-menu .sub-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.nav-menu .sub-menu a:hover {
    color: var(--primary);
    background: var(--bg-alt);
    padding-left: 25px;
}

/* Second level dropdown (3rd level menu) */
.nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(15px);
}

.nav-menu .sub-menu li:hover > .sub-menu {
    transform: translateX(0);
}

/* --- Mobile Overlay Menu --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    padding: 30px 30px 30px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-overlay.active {
    left: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--bg-alt);
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* --- Hero Section --- */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30,41,59,0.4) 0%, rgba(30,41,59,0.4) 45%, rgba(30,41,59,0.4) 100%);
    z-index: -1;
}

.swiper-slide-active .slider-bg {
    transform: scale(1);
}

.hero-content {
    max-width: 700px;
    padding-top: 50px;
    color: var(--white);
}

.hero-title {
    font-size: 45px;
    color: var(--white);
    margin: 1rem 0 1.5rem;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #2DD4BF 0%, #0D9488 100%); /* Lighter Teal to Primary */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* --- Features Bento --- */
.feature-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bento-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.bento-card:hover .bento-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.bento-col-4 { grid-column: span 4; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 991px) {
    .bento-col-4, .bento-col-8 { grid-column: span 12; }
}

/* --- Messages Section --- */
.message-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.message-card:hover {
    box-shadow: var(--shadow-lg);
}

.message-img {
    width: 35%;
    object-fit: cover;
    min-height: 100%;
}

.message-content {
    padding: 2rem 3rem;
    width: 65%;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(13, 148, 136, 0.08);
    line-height: 1;
}

.message-content p {
    font-size: 1.0rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.message-author h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.message-author span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .message-card { flex-direction: column; }
    .message-img { width: 100%; height: 300px; }
    .message-content { width: 100%; padding: 2rem; }
}

/* --- Placements Section --- */
.placements-marquee {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.marquee-item i {
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Courses Grid --- */
.course-card-nursing {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card-nursing:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-thumb {
    position: relative;
    height: 240px;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card-nursing:hover .course-thumb img {
    transform: scale(1.08);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
}

.course-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.course-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.course-meta span {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.course-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* --- Faculty Slider --- */
.faculty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    margin: 15px; /* for swiper spacing */
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.2);
}

.faculty-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--bg-alt);
}

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

.faculty-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.faculty-card p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* --- Footer --- */
.footer-modern {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0 0px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(50px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-desc {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Utilities for JS */
/* --- Video Tour & Notice Board --- */
.campus-updates-wrapper {
    background: var(--white);
    position: relative;
}
.video-item{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.video-thumb{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.play-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display:flex;
    align-items:center;
    justify-content:center;
}

.play-btn{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#e63946;
}

.video-tour-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.video-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-item:hover .play-overlay {
    background: rgba(0,0,0,0.5);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 4px; /* optical alignment */
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Notice Board */
.notice-board-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    height: auto;
}

.notice-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 10px;
}

.notice-tab {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.notice-tab.active {
    background: var(--primary);
    color: var(--white);
}

.notice-list {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.notice-list.active {
    display: flex;
}

.notice-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.notice-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notice-date {
    background: var(--bg-alt);
    min-width: 70px;
    text-align: center;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border-top: 3px solid var(--primary);
}

.notice-date h5 {
    color: var(--secondary);
    font-size: 20px;
    margin: 0;
    line-height: 1;
}

.notice-date span {
    font-size: 15px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.notice-content a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    transition: var(--transition);
    display: block;
}

.notice-content a:hover {
    color: var(--primary);
}

/* --- Faculty Large Card Slider --- */
.faculty-card-large {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
}

.faculty-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.2);
}

.faculty-img-large {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.faculty-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Important for portraits */
    transition: var(--transition);
}

.faculty-card-large:hover .faculty-img-large img {
    transform: scale(1.05);
}

.faculty-info {
    padding: 1.5rem;
    text-align: center;
}

.faculty-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.faculty-info p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-pill-container { border-radius: 0; width: 100%; border: none; padding: 15px 20px;}
    .header-modern { top: 0; padding: 0; }
    .header-top-bar { display: none; }
    .hero-title { font-size: 2.8rem; }
    .video-grid { grid-template-columns: 1fr; }
}

/* --- Premium Footer --- */
.footer-modern {
    background-color: var(--secondary);
    color: var(--white);
    padding: 50px 0 0px;
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
}

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff4b72 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 80px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(195, 19, 65, 0.4);
    border-color: var(--primary);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.discover-8-col-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }

            @media (max-width: 992px) {
                .discover-8-col-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            }

            @media (max-width: 768px) {
                .discover-8-col-grid { grid-template-columns: repeat(2, 1fr); }
            }

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

            .discover-card {
                background: var(--white);
                border-radius: var(--radius-md);
                padding: 35px 20px;
                text-align: center;
                box-shadow: var(--shadow-sm);
                transition: var(--transition);
                border-bottom: 3px solid transparent;
                height: 100%;
                cursor: pointer;
            }

            .discover-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-md);
                border-color: var(--primary);
            }

            .discover-icon {
                width: 70px;
                height: 70px;
                background: rgba(195, 19, 65, 0.05);
                color: var(--primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                margin: 0 auto 20px;
                transition: var(--transition);
            }

            .discover-card:hover .discover-icon {
                background: var(--primary);
                color: var(--white);
                transform: scale(1.1);
            }

            .discover-card h4 {
                font-size: 1.1rem;
                color: var(--secondary);
                margin: 0;
                font-weight: 600;
            }

 .affiliation-card { border-bottom: 4px solid transparent; background: white; padding: 20px 0px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: var(--transition);}
            .affiliation-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-md);
                border-bottom-color: var(--primary);
            }

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

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

.footer-contact li {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 17px;
}

 .clinical-title {
                color: #ed1c24; 
                font-weight: 800; 
                font-size: 2.8rem; 
                letter-spacing: -0.5px;
                position: relative;
                display: inline-block;
                margin-bottom: 0.5rem;
            }
            .clinical-title::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 4px;
                background: linear-gradient(90deg, #ed1c24, #ff6b6b);
                border-radius: 4px;
            }
            .clinical-list-modern {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .clinical-list-modern li {
                display: flex;
                align-items: center;
                padding: 5px 20px;
    margin-bottom: 10px;
                background: #ffffff;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.02);
                border: 1px solid rgba(0,0,0,0.04);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .clinical-list-modern li:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 20px rgba(237, 28, 36, 0.08);
                border-color: rgba(237, 28, 36, 0.15);
                background: #fffcfc;
            }
            .clinical-icon-wrap {
                width: 42px;
                height: 42px;
                background: rgba(237, 28, 36, 0.08);
                color: #ed1c24;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                margin-right: 16px;
                flex-shrink: 0;
                transition: all 0.3s ease;
            }
            .clinical-list-modern li:hover .clinical-icon-wrap {
                background: #ed1c24;
                color: #ffffff;
                transform: scale(1.1);
            }
            .clinical-text {
                    font-size: 17px;
    font-weight: 400;
    color: #334155;
    line-height: 14px;
    transition: color 0.3s ease;
            }
            .clinical-list-modern li:hover .clinical-text {
                color: #ed1c24;
            }

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(195, 19, 65, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid rgba(195, 19, 65, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 25px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-bottom-links a { margin: 0 10px; }
}
