:root {
    --maroon: #800000;
    --maroon-dark: #500000;
    --navy: #001f3f;
    --navy-light: #003366;
    --gold: #d4af37;
    --gold-bright: #f9d976;
    --gold-metallic: linear-gradient(135deg, #d4af37 0%,#f9d976 50%,#d4af37 100%);
    --white: #ffffff;
    --black: #000000;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.section-header {
    margin-bottom: 50px;
}

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

.sub-title {
    display: block;
    color: var(--maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Ultra Premium Utility */
.bg-pattern {
    background-image: url('premium_abstract_pattern_maroon_navy_1776316687611.png');
    background-size: cover;
    background-attachment: fixed;
}

.text-gradient-gold {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

/* Top Bar - Ultra Premium Redesign */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 2px solid var(--gold);
    position: relative;
    z-index: 1100;
}

.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('premium_abstract_pattern_maroon_navy_1776316687611.png') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info i {
    color: var(--gold);
    font-size: 0.9rem;
}

.top-links a {
    margin-left: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.top-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.btn-apply-mini {
    background: var(--gold-metallic);
    color: var(--navy) !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.pulsing-dot {
    width: 6px;
    height: 6px;
    background: var(--maroon);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(128, 0, 0, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(128, 0, 0, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(128, 0, 0, 0); }
}

/* Main Header - Premium Glass Redesign */
.main-header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

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

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 35px;
    position: relative;
}

.nav-menu a {
    font-weight: 700;
    color: var(--navy);
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
}

/* Luxury Link Animation */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--maroon);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--maroon);
}

/* Mobile Toggle - Animated Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dropdown Premium Style */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 250px;
    padding: 20px 0;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border-radius: 0 0 15px 15px;
    border-top: 4px solid var(--maroon);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

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

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.dropdown a:hover {
    background: rgba(165, 28, 48, 0.05);
}

/* Hero Slider Section */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s linear;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

/* Hero Overlay - Split Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 31, 63, 0.7) 40%, rgba(0, 31, 63, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 60px 8%;
    background: radial-gradient(circle at left, rgba(0, 31, 63, 0.45) 0%, transparent 80%);
}

.slide .hero-content h1, 
.slide .hero-content p, 
.slide .hero-content .badge, 
.slide .hero-content .hero-btns {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide.active .hero-content h1, 
.slide.active .hero-content p, 
.slide.active .hero-content .badge, 
.slide.active .hero-content .hero-btns {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide.active .hero-content .badge { transition-delay: 0.2s; transition-duration: 1.2s; }
.slide.active .hero-content h1 { transition-delay: 0.4s; transition-duration: 1.2s; }
.slide.active .hero-content p { transition-delay: 0.6s; transition-duration: 1.2s; }
.slide.active .hero-content .hero-btns { transition-delay: 0.8s; transition-duration: 1.2s; }

.hero-content h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: -4px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 10px 50px rgba(0, 31, 63, 0.8);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 1;
    max-width: 700px;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.badge {
    display: inline-block;
    background: var(--gold-metallic);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.highlight {
    background: linear-gradient(to bottom, #fff 20%, var(--gold) 50%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

/* Slider Navigation - Museum Glass Style */
.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 8%;
    z-index: 30;
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-count {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-right: 10px;
}

.slide-dot {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.slide-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 7s linear;
}

.slide-dot.active::after {
    left: 0;
}

.slide-dot.active {
    background: rgba(255,255,255,0.4);
}

.slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 30;
    display: flex;
    gap: 20px;
}

.arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.hero-btns .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    margin-right: 20px;
    display: inline-block;
}

.hero-btns .btn-secondary {
    border: 2px solid var(--white);
    padding: 13px 35px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 2px;
    animation: scroll 2s infinite ease-in-out;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Quick Links Section - Editorial Redesign */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -100px; /* Dramatic overlap with hero */
    position: relative;
    z-index: 100;
    padding: 0 40px 80px;
}

.link-card {
    background: var(--white);
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    transition: var(--transition-slow);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    border-top: 6px solid var(--maroon);
}

.link-card::before {
    content: attr(data-index);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
    transition: var(--transition-slow);
}

.link-card:hover {
    transform: translateY(-25px);
    box-shadow: 0 50px 100px rgba(128, 0, 0, 0.12);
    border-top-color: var(--gold);
}

.link-card:hover::before {
    color: rgba(212, 175, 55, 0.05);
    transform: scale(1.1) translateX(-10px);
}

.link-card i {
    font-size: 2.8rem;
    color: var(--maroon);
    margin-bottom: 30px;
    display: block;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.link-card:hover i {
    color: var(--gold);
    transform: rotateY(360deg);
}

.link-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.link-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--maroon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.learn-more-btn i {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.link-card:hover .learn-more-btn {
    color: var(--gold);
    gap: 15px;
}

/* Elite Recognition Bar - Premium Marquee */
.accreditation-bar {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.accreditation-bar h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--maroon);
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
}

.recognition-wrap {
    background: radial-gradient(circle at center, #ffffff 0%, #fffbf2 100%);
    padding: 60px 40px;
    border-radius: 50px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.06);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* Infinite Marquee logic */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-strip {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

.logo-strip:hover {
    animation-play-state: paused;
}

.logo-strip img {
    height: 75px;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.5;
    transition: var(--transition-slow);
    -webkit-box-reflect: below 5px linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.05));
}

.logo-strip img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Global Academic Partnerships */
.partners-section {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('premium_abstract_pattern_maroon_navy_1776316687611.png') center/cover;
    opacity: 0.1;
    mix-blend-mode: color-dodge;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.partner-logo-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.partner-logo-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
    border-color: var(--gold);
}

.partner-logo-box i {
    font-size: 3.5rem;
    color: var(--gold);
}

.partner-logo-box span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* About Section */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.bg-light { background-color: var(--light-bg); }

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.text-maroon { color: var(--maroon); }

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list i {
    color: var(--maroon);
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid var(--maroon);
    color: var(--maroon);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

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

/* Program Grid - Ultra Premium Redesign */
.programs {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.program-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

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

.program-img {
    height: 450px;
    position: relative;
    overflow: hidden;
}

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

.program-card:hover .program-img img {
    transform: scale(1.1) rotate(2deg);
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 31, 63, 0.9) 100%);
    z-index: 2;
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.program-card:hover .program-content {
    background: rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.program-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.program-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.explore-link i {
    transition: var(--transition);
}

.program-card:hover .explore-link i {
    transform: translateX(10px);
}

/* 3D Relief Icon System */
.program-icon-3d {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: var(--gold-metallic);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 20px;
    z-index: 20;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.2),
        inset 0 2px 5px rgba(255,255,255,0.5),
        inset 0 -2px 5px rgba(0,0,0,0.3);
    transition: var(--transition-slow);
    text-shadow: 2px 2px 0 rgba(255,255,255,0.3), -1px -1px 0 rgba(0,0,0,0.2);
}

.program-card:hover .program-icon-3d {
    transform: perspective(1000px) rotateY(180deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Color Coding for Schools */
.program-card.mgmt .program-icon-3d { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.program-card.pharma .program-icon-3d { background: linear-gradient(135deg, #c0392b, #e74c3c); color: white; }

/* Scanning Light Effect */
.program-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 300%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    z-index: 15;
    pointer-events: none;
    transition: 0s;
}

.program-card:hover::after {
    left: 200%;
    transition: 0.8s;
}

/* Stats Section - Premium Redesign */
.stats {
    background: var(--navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('premium_abstract_pattern_maroon_navy_1776316687611.png') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition-slow);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: var(--gold);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--gold-metallic);
    color: var(--navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-number span {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #4cd137;
    margin-top: 15px;
    font-weight: 600;
}

.stat-number small {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* 360 Tour Section */
.tour-container {
    height: 700px;
    background: url('https://shivalikcollege.edu.in/wp-content/uploads/2022/10/shivalik_inner_banner.png') center/cover;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    margin: 0 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    cursor: grab;
}

.tour-container:active {
    cursor: grabbing;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(0,31,63,0.6) 100%);
    pointer-events: none;
}

.viewfinder-corners::before,
.viewfinder-corners::after,
.viewfinder-corner-br::before,
.viewfinder-corner-br::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    z-index: 10;
    opacity: 0.5;
    transition: var(--transition);
}

.viewfinder-corners::before { top: 30px; left: 30px; border-right: 0; border-bottom: 0; }
.viewfinder-corners::after { top: 30px; right: 30px; border-left: 0; border-bottom: 0; }
.viewfinder-corner-br::before { bottom: 30px; left: 30px; border-right: 0; border-top: 0; }
.viewfinder-corner-br::after { bottom: 30px; right: 30px; border-left: 0; border-top: 0; }

.tour-container:hover .viewfinder-corners::before,
.tour-container:hover .viewfinder-corners::after,
.tour-container:hover .viewfinder-corner-br::before,
.tour-container:hover .viewfinder-corner-br::after {
    border-width: 4px;
    opacity: 1;
    width: 60px;
    height: 60px;
}

.tour-content {
    position: relative;
    z-index: 5;
    text-align: center;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.badge-360 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 0 auto 30px;
    width: fit-content;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tour-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 20;
}

.t-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.tour-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.btn-tour {
    background: var(--gold-metallic);
    color: var(--black);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
}

.btn-tour:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Accreditation Bar */
.accreditation-bar {
    background: var(--light-bg);
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.logo-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(1);
}

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

.logo-strip img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* CTA Banner - High Impact Redesign */
.cta-banner {
    padding: 150px 0;
    position: relative;
    background: url('https://shivalikcollege.edu.in/wp-content/uploads/2022/10/shivalik_inner_banner.png') center/cover fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(128, 0, 0, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cta-banner .btn-primary {
    background: var(--gold-metallic);
    color: var(--navy);
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4); transform: scale(1); }
    50% { box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6); transform: scale(1.05); }
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
}

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

/* Floating Sidebar - Premium Utility Hub */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 20px;
}

.float-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    background: rgba(0, 31, 63, 0.9);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 12px;
    border-radius: 50px 18px 18px 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-slow);
    width: 60px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.float-link i {
    font-size: 1.25rem;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    order: 2;
}

.float-link span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    order: 1;
}

.float-link:hover {
    width: 200px;
    background: var(--gold-metallic);
    color: var(--navy);
    border-color: var(--gold);
}

.float-link:hover span {
    opacity: 1;
    transform: translateX(0);
}

.float-link:hover i {
    background: rgba(0, 0, 0, 0.1);
}

.float-apply {
    background: var(--maroon) !important;
}

.float-apply:hover {
    background: var(--gold-metallic) !important;
}

/* Chatbot Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2500;
}

.chat-trigger {
    width: 60px;
    height: 60px;
    background: var(--maroon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.chat-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--navy);
}

.chat-trigger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--maroon);
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    border: 1px solid #ebebeb;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--navy);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.chat-status h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-status span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: #fdfdfd;
    overflow-y: auto;
}

.msg {
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.msg-bot {
    background: #f1f1f1;
    color: var(--text-dark);
    border-bottom-left-radius: 2px;
}

.msg-user {
    background: var(--maroon);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.chat-footer button {
    background: var(--maroon);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Prestige Footer - High Impact Redesign */
.main-footer {
    background: linear-gradient(to bottom, #001126, #000b1a);
    color: rgba(255, 255, 255, 0.7);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('premium_abstract_pattern_maroon_navy_1776316687611.png') center/cover;
    opacity: 0.03;
    mix-blend-mode: overlay;
}

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

.footer-logo {
    height: 85px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--gold);
}

.footer-links a:hover::before {
    left: -5px;
    opacity: 1;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 5px;
}

.social-glow {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

.social-glow a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-badge img {
    height: 40px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

/* Animations Trigger Classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Career Counselling Section */
.counselling-section {
    background: linear-gradient(to right, #fcfaf5, #ffffff);
    position: relative;
    z-index: 10;
}

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

.f-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: var(--maroon);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.1);
    transition: var(--transition);
}

.f-item:hover .f-icon {
    background: var(--navy);
    transform: translateY(-5px) rotateY(180deg);
}

.f-text h4 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.f-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.counselling-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 0 0 rgba(255, 71, 87, 0.4);
    animation: pulse-red-live 2s infinite;
}

@keyframes pulse-red-live {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(255, 71, 87, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.status-msg {
    font-size: 0.95rem;
    color: #27ae60;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-msg i {
    font-size: 0.6rem;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Video Mockup */
.video-mockup {
    background: #111;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 60px 120px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
}

.video-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.user-info h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.user-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    display: block;
}

.video-timer {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-family: monospace;
    letter-spacing: 1px;
}

.video-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #222;
}

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

.self-view {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 140px;
    height: 190px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    z-index: 5;
}

.video-overlay-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-overlay-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay-controls button:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.video-overlay-controls button.end-call {
    background: #ea2027;
}

.live-tag {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #ea2027;
    color: white;
    padding: 6px 18px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(234, 32, 39, 0.3);
}

.floating-label {
    position: absolute;
    background: white;
    padding: 12px 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    z-index: 15;
    animation: float 4s ease-in-out infinite;
}

.l-1 {
    top: 50%;
    left: -40px;
    animation-delay: 0s;
}

.l-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 4rem; }
}

@media (max-width: 992px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .program-grid { grid-template-columns: 1fr; }
    .grid-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .quick-links { grid-template-columns: 1fr; }
    .grid-footer { grid-template-columns: 1fr; }
    .hero-btns .btn-primary, .btn-outline-white { margin: 10px 0; width: 100%; text-align: center; }
    .video-mockup { transform: none !important; margin-top: 50px; }
    .f-item { flex-direction: column; text-align: center; align-items: center; }
    .counselling-actions { flex-direction: column; gap: 20px; }
}
