/* ==========================================================================
   MSR LAW COLLEGE - WORLD-CLASS PREMIUM UNIVERSITY HOMEPAGE STYLE SHEET
   ========================================================================== */

/* 1. DESIGN VARIABLES & CONFIGURATION */
:root {
    --brand-navy: #0B1035;         /* Deep Ivy League Scholar Navy Blue */
    --brand-navy-dark: #060922;    /* Darkest obsidian midnight navy */
    --brand-navy-light: #151C52;   /* Intermediate solid navy */
    --brand-burgundy: #6D0F2B;     /* Royal Academic Burgundy */
    --brand-burgundy-light: #8E1B3D; /* Bright crimson accent burgundy */
    --brand-gold: #D4AF37;         /* Luxury metallic leaf gold */
    --brand-gold-dark: #B59329;    /* Deep brass metallic gold */
    --brand-gold-glow: rgba(212, 175, 55, 0.35);
    
    --bg-light-gray: #F8F8FA;      /* Sleek soft gray backgrounds */
    --bg-parchment: #FDFDF9;       /* Editorial off-white text paper background */
    --text-dark: #10121F;          /* High contrast charcoal */
    --text-muted: #5E6278;         /* Subheader gray */
    --text-light-muted: #B5B5C3;   /* Light gray for dark background grids */
    --border-color: #E2E5EC;       /* Clean borders */
    
    --luxury-shadow: 0 15px 45px rgba(11, 16, 53, 0.06);
    --luxury-shadow-hover: 0 30px 75px rgba(11, 16, 53, 0.16);
    --gold-shadow-hover: 0 15px 35px rgba(212, 175, 55, 0.22);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET & PAGE LAYOUT SETUP */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: var(--text-dark);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-navy);
    font-weight: 700;
}
p, span, a, li, button, input {
    font-family: 'Montserrat', sans-serif;
}

/* Global utility buttons */
.btn-gold-outline {
    border: 1.5px solid var(--brand-gold);
    color: #ffffff !important;
    background: transparent;
    text-transform: uppercase;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 0;
    transition: all 0.3s var(--transition-normal);
}
.btn-gold-outline:hover {
    background: var(--brand-gold);
    color: var(--brand-navy) !important;
    box-shadow: 0 8px 20px var(--brand-gold-glow);
    transform: translateY(-2px);
}

.btn-burgundy-fill {
    background: var(--brand-burgundy);
    color: #ffffff !important;
    border: 1.5px solid var(--brand-burgundy);
    text-transform: uppercase;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 0;
    box-shadow: 0 6px 20px rgba(109, 15, 43, 0.25);
    transition: all 0.3s var(--transition-normal);
}
.btn-burgundy-fill:hover {
    background: var(--brand-burgundy-light);
    border-color: var(--brand-burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 15, 43, 0.4);
}

/* 3. STICKY GLASSMORPHIC NAVIGATION BAR */
.msrcl-premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.4s var(--transition-normal);
}
.msrcl-premium-nav.scrolled {
    background: rgba(11, 16, 53, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18) !important;
}

.nav-logo img {
    max-height: 52px;
    transition: transform 0.3s var(--transition-normal);
}
.nav-logo:hover img {
    transform: scale(1.04);
}

.nav-links-container .nav-item {
    display: flex;
    align-items: center;
}
.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    padding: 0 14px !important;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--transition-normal);
}
.nav-link-custom:hover {
    color: var(--brand-gold) !important;
}
.nav-link-custom:hover::after {
    transform: scaleX(1);
}

/* Action button configurations */
.nav-action-zone {
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-icon-trigger {
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    transition: color 0.25s ease;
}
.search-icon-trigger:hover {
    color: var(--brand-gold);
}
.btn-tour-nav {
    border: 1px solid var(--brand-gold);
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-tour-nav:hover {
    background: var(--brand-gold);
    color: var(--brand-navy) !important;
}
.btn-apply-nav {
    background: var(--brand-burgundy);
    border: 1px solid var(--brand-burgundy);
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-apply-nav:hover {
    background: var(--brand-burgundy-light);
    border-color: var(--brand-burgundy-light);
    box-shadow: 0 4px 15px rgba(109, 15, 43, 0.3);
}

/* 4. HERO SECTION (SPLIT COLLAGE CONFIGURATION) */
.hero-section-cinematic {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    background: linear-gradient(135deg, var(--brand-navy-dark) 35%, var(--brand-burgundy) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-geometric-accent {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-welcome-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1.5px solid var(--brand-gold);
    padding-bottom: 4px;
}
.hero-display-title {
    font-family: 'Playfair Display', serif;
    font-size: calc(36px + 2vw);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.hero-display-title span {
    color: var(--brand-gold);
}
.hero-desc-para {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 35px;
    max-width: 580px;
    font-weight: 500;
}
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

/* Trust Indicators Layout */
.hero-trust-badge-row {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 25px;
}
.trust-avatar-stack {
    display: flex;
    align-items: center;
}
.trust-avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--brand-navy-dark);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.trust-avatar-stack img:first-child {
    margin-left: 0;
}
.trust-text-metrics {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.trust-text-metrics span {
    color: var(--brand-gold);
}
.trust-separator-pipe {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* Right Content: Photorealistic Collage layout */
.hero-collage-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    z-index: 5;
}
.collage-building-canvas {
    position: absolute;
    width: 82%;
    height: 80%;
    top: 5%;
    right: 5%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.collage-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 16, 53, 0.1) 0%, rgba(109, 15, 43, 0.3) 100%);
}
.collage-gavel-foreground {
    position: absolute;
    width: 320px;
    bottom: -15px;
    left: -30px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.35));
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}
.collage-justice-foreground {
    position: absolute;
    height: 380px;
    bottom: 20px;
    right: -25px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transform: scaleX(-1);
    transition: transform 0.5s ease;
}
.hero-collage-wrapper:hover .collage-gavel-foreground {
    transform: rotate(0deg) translateY(-5px);
}
.hero-collage-wrapper:hover .collage-justice-foreground {
    transform: scaleX(-1) translateY(-5px);
}

/* 5. HORIZONTAL ACHIEVEMENT STRIP */
.achievement-strip-horizontal {
    background: var(--brand-navy-dark);
    border-top: 1.5px solid var(--brand-gold);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}
.achievement-strip-horizontal .row {
    max-width: 1500px;
    margin: 0 auto;
}
.achievement-inline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}
.achievement-inline-item i {
    font-size: 24px;
    color: var(--brand-gold);
}
.achievement-inline-title {
    font-family: 'Playfair Display', serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.achievement-inline-desc {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}
.achievement-vertical-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

/* 6. CHAIRMAN MESSAGE SECTION */
.chairman-message-section {
    background: #ffffff;
    padding: 110px 0;
    position: relative;
}
.portrait-message-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--luxury-shadow);
    padding: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--transition-normal), box-shadow 0.4s;
}
.portrait-message-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: var(--luxury-shadow-hover);
}
.portrait-img-box {
    overflow: hidden;
    background: #FAF8F5;
}
.portrait-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s var(--transition-normal);
}
.portrait-message-wrapper:hover .portrait-img-box img {
    transform: scale(1.03);
}
.chairman-signature-meta {
    border-top: 1px solid var(--border-color);
}
.chairman-sign-label {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--brand-navy);
}
.chairman-role-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold-dark);
}
.chairman-frame-geometry {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border: 2px solid var(--brand-gold);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.4s var(--transition-normal);
}
.portrait-message-wrapper:hover ~ .chairman-frame-geometry {
    transform: translate(6px, 6px);
}

.chairman-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: calc(28px + 1vw);
    line-height: 1.25;
    color: var(--brand-navy);
}
.chairman-main-heading span {
    color: var(--brand-burgundy);
    position: relative;
}
.chairman-desc-para {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 500;
}

/* Achievement metrics cards */
.chairman-metric-card {
    background: var(--bg-light-gray);
    border: 1px solid var(--border-color);
    padding: 22px;
    border-top: 3px solid var(--brand-gold);
    transition: all 0.3s var(--transition-normal);
}
.chairman-metric-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--brand-burgundy);
    box-shadow: 0 10px 25px rgba(11, 16, 53, 0.05);
}
.chairman-metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-navy);
}
.chairman-metric-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-message-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.25s ease;
}
.btn-message-link:hover {
    color: var(--brand-burgundy) !important;
}

/* 7. WHY CHOOSE MSR LAW (6-CARDS GRID) */
.choose-msr-section {
    background: var(--bg-light-gray);
    padding: 110px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.choose-section-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-burgundy);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.choose-section-title {
    font-family: 'Playfair Display', serif;
    font-size: calc(26px + 1vw);
    color: var(--brand-navy);
}
.choose-card-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--luxury-shadow);
    padding: 35px 30px;
    height: 100%;
    transition: transform 0.4s var(--transition-normal), box-shadow 0.4s, border-color 0.4s;
}
.choose-card-icon {
    width: 58px;
    height: 58px;
    background: rgba(11, 16, 53, 0.05);
    border: 1.5px solid rgba(11, 16, 53, 0.1);
    color: var(--brand-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    transition: all 0.4s var(--transition-normal);
}
.choose-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--brand-gold);
}
.choose-card-item:hover .choose-card-icon {
    background: var(--brand-burgundy);
    color: #ffffff;
    border-color: var(--brand-burgundy);
    transform: scale(1.06);
}
.choose-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 12px;
}
.choose-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* 8. ABOUT LEGACY SECTION */
.legacy-split-section {
    background: #ffffff;
    padding: 110px 0;
    border-bottom: 1px solid var(--border-color);
}
.video-preview-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    box-shadow: var(--luxury-shadow);
    overflow: hidden;
}
.video-preview-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--transition-slow);
}
.video-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 53, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.video-play-btn {
    width: 76px;
    height: 76px;
    background: var(--brand-burgundy);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(109, 15, 43, 0.4);
    transition: all 0.3s var(--transition-normal);
}
.video-play-btn:hover {
    background: #ffffff;
    color: var(--brand-burgundy);
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(255,255,255,0.4);
}
.video-preview-wrapper:hover .video-preview-img {
    transform: scale(1.04);
}
.video-preview-wrapper:hover .video-overlay-tint {
    background: rgba(11, 16, 53, 0.35);
}

.legacy-about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
.legacy-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light-gray);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
}
.legacy-badge-item i {
    color: var(--brand-gold-dark);
    font-size: 14px;
}
.legacy-badge-item span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
}

/* Luxury Ranking Box Card */
.luxury-ranking-card-box {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--luxury-shadow);
    padding: 35px;
    position: relative;
    overflow: hidden;
}
.ranking-decor-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
}
.ranking-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ranking-card-title span {
    color: var(--brand-gold);
}
.ranking-card-subtitle {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--brand-gold);
    margin-bottom: 22px;
}
.btn-ranking-link {
    background: transparent;
    border: 1.5px solid var(--brand-gold);
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 10px 22px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-ranking-link:hover {
    background: var(--brand-gold);
    color: var(--brand-navy) !important;
}

/* 9. ACADEMIC PROGRAMMES CARDS CAROUSEL */
.programs-section-grid {
    background: var(--bg-light-gray);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}
.programs-grid-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: calc(26px + 1vw);
    color: var(--brand-navy);
}
.program-slider-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: transform 0.4s var(--transition-normal), box-shadow 0.4s;
}
.program-slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-slow);
}
.program-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 16, 53, 0) 35%, rgba(11, 16, 53, 0.95) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    transition: background 0.4s ease;
}
.program-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow-hover);
}
.program-slider-card:hover img {
    transform: scale(1.05);
}
.program-slider-card:hover .program-slider-overlay {
    background: linear-gradient(180deg, rgba(109, 15, 43, 0.25) 20%, rgba(11, 16, 53, 0.98) 85%);
}
.program-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 800;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 6px;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s var(--transition-normal), opacity 0.4s;
}
.program-slider-card:hover .program-card-subtitle {
    transform: translateY(0);
    opacity: 1;
}
.program-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.program-card-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-light-muted);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-normal), opacity 0.4s;
}
.program-slider-card:hover .program-card-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 8px;
}

.programs-cta-zone {
    text-align: center;
    margin-top: 50px;
}

/* 10. NEWS SECTION (MAGAZINE LAYOUT) */
.news-magazine-section {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.featured-news-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--luxury-shadow);
    height: 100%;
    transition: box-shadow 0.3s ease;
}
.featured-news-card:hover {
    box-shadow: var(--luxury-shadow-hover);
}
.featured-news-img-box {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.featured-news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.featured-news-card:hover .featured-news-img-box img {
    transform: scale(1.04);
}
.featured-news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-burgundy);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.featured-news-body {
    padding: 30px;
}
.featured-news-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    display: block;
}
.featured-news-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.4;
    margin-bottom: 15px;
}
.featured-news-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.btn-featured-news-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-burgundy) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}
.btn-featured-news-link:hover {
    color: var(--brand-navy) !important;
    transform: translateX(4px);
}

/* Right Column news list */
.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-list-row {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    transition: transform 0.25s;
}
.news-list-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.news-list-thumb {
    width: 120px;
    height: 85px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-list-row:hover .news-list-thumb img {
    transform: scale(1.05);
}
.news-list-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-list-date {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}
.news-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.35;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}
.news-list-title:hover {
    color: var(--brand-burgundy);
}

/* 11. VIRTUAL CAMPUS EXPERIENCE (CINEMATIC BACKDROP) */
.virtual-campus-experience {
    position: relative;
    padding: 160px 0;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}
.virtual-campus-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 9, 34, 0.9) 0%, rgba(109, 15, 43, 0.7) 100%);
    z-index: 1;
}
.virtual-campus-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #ffffff;
}
.virtual-campus-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.virtual-campus-title {
    font-family: 'Playfair Display', serif;
    font-size: calc(30px + 1.5vw);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.virtual-campus-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 500;
}

/* 12. INFRASTRUCTURE GALLERY */
.infrastructure-showcase-section {
    background: var(--bg-light-gray);
    padding: 110px 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.infrastructure-showcase-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: calc(26px + 1vw);
    color: var(--brand-navy);
}
.infra-marquee-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: infiniteScrollLoop 45s linear infinite;
}
.infra-photo-tile {
    position: relative;
    width: 290px;
    height: 200px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 5px solid #ffffff;
    outline: 1px solid var(--border-color);
    transition: transform 0.4s var(--transition-normal), box-shadow 0.4s, border-color 0.4s, outline-color 0.4s;
}
.infra-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-normal);
}
.infra-tile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(360deg, rgba(6, 9, 34, 0.95) 0%, rgba(6, 9, 34, 0) 100%);
    padding: 18px 22px;
    z-index: 2;
    color: #ffffff;
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.35s var(--transition-normal);
}
.infra-tile-caption-text {
    font-family: 'Playfair Display', serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}
.infra-caption-line {
    width: 20px;
    height: 2px;
    background: var(--brand-gold);
    margin-top: 5px;
    transition: width 0.3s ease;
}
.infra-photo-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: #ffffff;
    outline-color: var(--brand-gold);
}
.infra-photo-tile:hover img {
    transform: scale(1.05);
}
.infra-photo-tile:hover .infra-tile-caption {
    transform: translateY(0);
    opacity: 1;
}
.infra-photo-tile:hover .infra-caption-line {
    width: 45px;
}

/* 13. TESTIMONIALS & PLACEMENTS METRICS SECTION */
.testimonials-placements-grid {
    background: #ffffff;
    padding: 110px 0;
    border-bottom: 1px solid var(--border-color);
}
.placement-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--brand-navy);
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 12px;
    margin-bottom: 30px;
}
.testimonial-quote-box {
    background: var(--bg-gold-light);
    border: 1px solid var(--border-color-gold);
    padding: 50px;
    position: relative;
}
.testimonial-quote-icon {
    font-size: 38px;
    color: rgba(212, 175, 55, 0.22);
    margin-bottom: 20px;
}
.testimonial-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: calc(16px + 0.3vw);
    line-height: 1.8;
    color: var(--brand-navy);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-navy);
}
.testimonial-author-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-burgundy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Author Row selectors */
.testimonial-list-selectors {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.testimonial-row-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition-normal);
}
.testimonial-row-selector:hover {
    border-color: var(--brand-gold);
    background: var(--bg-gold-light);
    transform: translateX(4px);
}
.testimonial-row-selector.is-active {
    border-color: var(--brand-navy);
    background: var(--bg-gold-light);
    box-shadow: 0 6px 20px rgba(11, 16, 53, 0.05);
}
.selector-avatar-frame {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}
.testimonial-row-selector.is-active .selector-avatar-frame {
    border-color: var(--brand-gold);
}
.selector-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selector-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
}
.selector-author-role {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}
.selector-progress-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--brand-gold);
    width: 0;
}

/* Placements statistics cards */
.placement-metric-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-top: 4px solid var(--brand-navy);
    box-shadow: var(--luxury-shadow);
    transition: transform 0.3s var(--transition-normal), border-top-color 0.3s;
    height: 100%;
    text-align: center;
}
.placement-metric-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--brand-burgundy);
}
.placement-metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 5px;
}
.placement-metric-number i {
    font-size: 24px;
    color: var(--brand-gold-dark);
}
.placement-metric-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}
.placement-cta-zone {
    text-align: center;
    margin-top: 35px;
}

/* 14. ADMISSIONS CTA gradient banner */
.admissions-cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-navy) 100%);
    border-top: 2px solid var(--brand-gold);
    overflow: hidden;
    color: #ffffff;
}
.cta-watermark-cap {
    position: absolute;
    width: 250px;
    left: 5%;
    bottom: -30px;
    opacity: 0.08;
    pointer-events: none;
    filter: brightness(0) invert(1);
}
.cta-watermark-crest {
    position: absolute;
    width: 280px;
    right: 5%;
    top: -30px;
    opacity: 0.08;
    pointer-events: none;
    filter: brightness(0) invert(1);
}
.cta-badge-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}
.cta-title-text {
    font-family: 'Playfair Display', serif;
    font-size: calc(30px + 1.2vw);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}
.cta-subtitle-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    font-weight: 500;
}
.cta-button-deck {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 15. LUXURY UNIVERSITY FOOTER */
.site-footer-premium {
    background-color: var(--brand-navy-dark);
    color: var(--text-light-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.footer-overlay-tint {
    padding-top: 80px;
    background: linear-gradient(180deg, rgba(6, 9, 34, 0.95) 0%, #03040c 100%);
}
.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-social-circles {
    display: flex;
    gap: 10px;
}
.social-circle-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #ffffff !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--transition-normal);
}
.social-circle-link:hover {
    background: var(--brand-burgundy);
    border-color: var(--brand-burgundy);
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(109, 15, 43, 0.35);
}

.footer-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
}
.footer-custom-links li {
    margin-bottom: 12px;
}
.footer-custom-links a {
    color: var(--text-light-muted) !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}
.footer-custom-links a i {
    font-size: 8px;
    margin-right: 10px;
    color: var(--brand-gold);
    opacity: 0.5;
    transition: transform 0.25s;
}
.footer-custom-links a:hover {
    color: var(--brand-gold) !important;
    padding-left: 6px;
}
.footer-custom-links a:hover i {
    transform: translateX(4px);
    opacity: 1;
}

.footer-contact-details {
    font-size: 13.5px;
    line-height: 1.65;
}
.footer-contact-details i {
    color: var(--brand-gold);
    margin-right: 10px;
}
.footer-contact-link {
    color: var(--text-light-muted) !important;
    text-decoration: none !important;
    transition: color 0.25s;
}
.footer-contact-link:hover {
    color: var(--brand-gold) !important;
}

.footer-map-box {
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.footer-map-box iframe {
    border: 0;
    display: block;
    filter: grayscale(1) invert(0.92) contrast(1.25) brightness(0.85);
    transition: filter 0.4s ease;
}
.footer-map-box:hover iframe {
    filter: grayscale(0.15) invert(0) contrast(1.05) brightness(1);
}

.footer-bottom-copyright-strip {
    background-color: #03040c;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 50px;
    padding: 22px 0;
}
.footer-bottom-copyright-strip .copyright-text-para {
    margin: 0;
    font-size: 12px;
    color: #6C7080;
    font-weight: 500;
}
.footer-bottom-copyright-strip .policy-link-anchor {
    font-size: 12px;
    color: #6C7080 !important;
    text-decoration: none !important;
    margin-left: 15px;
    transition: color 0.25s;
}
.footer-bottom-copyright-strip .policy-link-anchor:hover {
    color: var(--brand-gold) !important;
}

/* 16. MOBILE & TABLET MEDIA QUERY RESPONSIVENESS OVERRIDES */
@media (max-width: 1199.98px) {
    /* Responsive navbar collapsed state */
    .msrcl-premium-nav {
        background: var(--brand-navy) !important;
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    .nav-logo img {
        max-height: 44px;
    }
    .nav-toggler-custom {
        color: #ffffff;
        font-size: 22px;
        background: transparent;
        border: none;
        outline: none;
        padding: 8px;
    }
    .nav-action-zone {
        display: none !important; /* Action buttons moved to sitemap drawer */
    }
    
    /* Hero Adjustments */
    .hero-section-cinematic {
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-display-title {
        font-size: 38px;
    }
    .hero-desc-para {
        margin: 0 auto 30px auto;
    }
    .hero-btn-group {
        justify-content: center;
    }
    .hero-trust-badge-row {
        justify-content: center;
    }
    .hero-collage-wrapper {
        margin-top: 50px;
        height: 380px;
    }
    .collage-building-canvas {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .collage-gavel-foreground {
        width: 200px;
        bottom: -10px;
    }
    .collage-justice-foreground {
        height: 260px;
    }
}

@media (max-width: 991.98px) {
    .achievement-vertical-line {
        display: none;
    }
    .achievement-inline-item {
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .achievement-inline-item:last-child {
        border-bottom: none;
    }
    .chairman-message-section {
        padding: 70px 0;
    }
    .chairman-frame-geometry {
        display: none;
    }
    .choose-msr-section, .legacy-split-section, .programs-section-grid, .news-magazine-section, .virtual-campus-experience, .infrastructure-showcase-section, .testimonials-placements-grid, .admissions-cta-banner {
        padding: 70px 0;
    }
    .video-preview-wrapper {
        height: 280px;
        margin-bottom: 40px;
    }
    .site-footer-premium {
        text-align: center;
    }
    .footer-section-heading {
        margin-bottom: 20px;
    }
    .footer-custom-links a {
        justify-content: center;
    }
    .footer-social-circles {
        justify-content: center;
    }
    .footer-contact-details {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    .footer-map-box {
        max-width: 450px;
        margin: 25px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btn-group .btn {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }
    .hero-trust-badge-row {
        flex-direction: column;
        gap: 15px;
    }
    .trust-separator-pipe {
        display: none;
    }
    .admissions-cta-banner .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}



/* ==========================================================================
      LEGACY SECTION ARCHITECTURAL STYLES
      ========================================================================== */

/* 1. Left Video Block */
.video-preview-card {
    border-radius: 4px;
    overflow: hidden;
    min-height: 380px;
    /* Forces stable height on desktop */
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.video-preview-card:hover .video-bg {
    transform: scale(1.05);
}

.video-tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 10, 33, 0.1) 0%, rgba(18, 10, 33, 0.4) 100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #D4AF37;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    /* Centers play triangle */
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: #D4AF37;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* 2. Middle Content Badges */
.metric-item {
    flex: 1;
}

.gold-emblem-wrapper {
    width: 48px;
    height: 48px;
    border: 1px dashed #D4AF37;
    /* Creates the sketched emblem border effect */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: #D4AF37;
    font-size: 20px;
    background: rgba(212, 175, 55, 0.05);
}

/* 3. Right Dark Navy Card */
.luxury-ranking-card {
    background-color: #0d0918;
    /* Deep rich navy matches the image perfectly */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-ranking-discover {
    display: inline-block;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ranking-discover:hover {
    background: #D4AF37;
    color: #0d0918;
    text-decoration: none;
}

/* ==========================================================================
      MOBILE VIEWPORT SNAP CONFIGURATIONS
      ========================================================================== */
@media (max-width: 991.98px) {
    .video-preview-card {
        min-height: 280px;
        /* Prevents giant scaling on phones */
    }

    .metric-item {
        margin-bottom: 20px;
    }

    .legacy-excellence-section .d-flex.justify-content-between.align-items-start {
        flex-direction: column;
        /* Stacks the three badges nicely on mobile */
        align-items: center !important;
        gap: 15px;
    }
}

