/**
 * CSS 		: Bootstrap
 * Author	: JK 
 * Domain	: drmgrdu.ac.in
 */


:root {
  --mgr-purple: #2D0B5A;
  --mgr-gold: #FFCB00;
  --mgr-gold-alt: #FFC107;
  --mgr-red: #C41E3A;
  --font-sans: 'Outfit', sans-serif;
  --font-lexend: 'Lexend', sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
h5,
.font-lexend,
.dept-title,
[class*="lbl-"],
nav a,
.nav-link {
  font-family: var(--font-lexend) !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* =========================================
   UTILITIES
   ========================================= */

/* Typography */
.font-black { font-weight: 900 !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.tracking-widest-plus { letter-spacing: 0.2em !important; }
.text-10px { font-size: 10px !important; }
.text-13px { font-size: 13px !important; }
.text-14px { font-size: 14px !important; }

/* Colors */
.bg-mgr-gold { background-color: var(--mgr-gold) !important; }
.text-mgr-purple { color: var(--mgr-purple) !important; }
.text-mgr-gold { color: var(--mgr-gold) !important; }
.text-mgr-purple-30 { color: rgba(45, 11, 90, 0.3) !important; }
.border-mgr-purple-10 { border-color: rgba(45, 11, 90, 0.1) !important; }
.bg-white-90 { background-color: rgba(255, 255, 255, 0.9) !important; }
.border-gray-200-50 { border-color: rgba(229, 231, 235, 0.5) !important; }

/* Sizing & Spacing */
.max-w-7xl { max-width: 80rem !important; margin-left: auto; margin-right: auto; }
.py-1-5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2-5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.md-text-xs { font-size: 12px !important; }
@media (min-width: 768px) {
  .md-text-xs { font-size: 12px !important; }
}

/* Effects & Others */
.z-60 { z-index: 60 !important; }
.z-100 { z-index: 100 !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.translate-y-minus-100 { transform: translateY(-100%); }
.translate-y-0 { transform: translateY(0); }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.hover-underline:hover { text-decoration: underline !important; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-500 { transition-duration: 500ms; }
.duration-300 { transition-duration: 300ms; }

/* =========================================
   COMPONENTS
   ========================================= */

/* Top Bar Button */
.btn-programmes {
    background-color: var(--mgr-purple);
    color: var(--mgr-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 0 #1a0636;
    transition: all 0.3s;
    border: 2px solid var(--mgr-purple);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-programmes:hover {
    background-color: var(--mgr-gold);
    color: var(--mgr-purple);
}
.btn-programmes:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1a0636;
}
.btn-programmes:hover i {
    transform: translateX(4px);
}
.btn-programmes i {
    transition: transform 0.3s;
}

/* Header CTA Button */
.btn-header-cta {
    background-color: var(--mgr-purple);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.2), 0 4px 6px -4px rgba(168, 85, 247, 0.2);
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}
.btn-header-cta:hover {
    background-color: var(--mgr-gold);
    color: var(--mgr-purple);
    transform: translateY(-2px);
}

/* Nav Links */
.nav-link-custom {
    font-size: 12px;
    font-weight: 900;
    color: var(--mgr-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    text-decoration: none;
}
.nav-link-custom:hover {
    color: var(--mgr-gold);
}

/* Logos */
.logo-mgr { height: 2.5rem; width: auto; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); }
@media (min-width: 768px) { .logo-mgr { height: 3.5rem; } }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section { height: 500px; }
@media (min-width: 768px) { .hero-section { height: 100vh; } }
.bg-black { background-color: #000 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }
.mt-hero { margin-top: 5rem !important; }
@media (min-width: 768px) { .mt-hero { margin-top: 18rem !important; } }
.rounded-2xl { border-radius: 1rem !important; }

/* Swiper overrides for Hero */
.heroSwiper .swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    width: 30px;
    height: 3px;
    border-radius: 0;
}
.heroSwiper .swiper-pagination-bullet-active {
    background: #FFC107 !important;
    opacity: 1;
    width: 60px;
}

@keyframes slow-pan {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.1) translateX(1%); }
}
.animate-slow-pan { animation: slow-pan 20s linear infinite alternate; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-gradient-flow { animation: gradient-flow 3s ease infinite; }

/* Admissons CTA */
.btn-admissions-cta {
    position: relative;
    background: linear-gradient(to right, #2196F3, #E91E63, #2196F3);
    background-size: 200% auto;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 20px 50px rgba(233,30,99,0.5);
    transition: all 0.5s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Galada', cursive;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}
@media (min-width: 768px) {
    .btn-admissions-cta {
        padding: 0.875rem 3rem;
    }
}
.btn-admissions-cta:hover {
    transform: scale(1.05);
    color: white;
}
.conic-sparkle {
    position: absolute;
    inset: -150%;
    background: conic-gradient(from 0deg, transparent 75%, #FFD700 85%, #FFFFFF 90%, #FFD700 95%, transparent 100%);
    animation: spin 1.5s linear infinite;
    opacity: 1;
    filter: blur(2px);
}
.inset-minus-4px { inset: -4px; }

/* Large Typography Mask Slider */
.min-h-50vh { min-height: 50vh; }
.md-min-h-70vh { min-height: 70vh; }
@media (min-width: 768px) { .md-min-h-70vh { min-height: 70vh; } }
.bg-slate-900 { background-color: #0f172a; }
.scale-110 { transform: scale(1.1); }
.opacity-40 { opacity: 0.4; }
.blur-12px { filter: blur(12px); }
.border-slate-900-10 { border-color: rgba(15, 23, 42, 0.1); }

.animate-single-slide {
    animation: singleLetterSlide 12s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    animation-fill-mode: both;
}

/* Pause on Hover */
.group:hover .pause-slider {
    animation-play-state: paused;
}

/* Glowing letters effect */
.text-mask-g {
    filter: drop-shadow(0 0 0px rgba(168, 85, 247, 0));
}

.group:hover .text-mask-g {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

@keyframes singleLetterSlide {
    0% { transform: translateX(100%); opacity: 0; }
    10% { transform: translateX(0); opacity: 1; }
    80% { transform: translateX(0); opacity: 1; }
    90% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(-100%); opacity: 0; }
}

/* Responsive Font Sizing */
@media (max-width: 768px) {
    #drMgrTextMask text {
        font-size: 12vw !important;
    }
}

/* =========================================
   MILESTONES SECTION
   ========================================= */
.py-16 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.text-gray-900 { color: #111827 !important; }
.bg-gray-200 { background-color: #e5e7eb !important; }
.border-gray-100 { border-color: #f3f4f6 !important; }

/* Gradients text */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent !important; }
.from-indigo-600 { --tw-gradient-from: #4f46e5; --tw-gradient-to: rgba(79, 70, 229, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Custom Rounded */
.rounded-32px { border-radius: 32px !important; }
.shadow-gray-200-50 { box-shadow: 0 20px 25px -5px rgba(229, 231, 235, 0.5), 0 10px 10px -5px rgba(229, 231, 235, 0.5) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }
.hover-minus-translate-y-2:hover { transform: translateY(-0.5rem); }

/* Aspect ratio */
.aspect-4-3 { aspect-ratio: 4 / 3; }
@media (min-width: 768px) { .md-aspect-auto { aspect-ratio: auto; } }

/* Extra specifics */
.text-300px { font-size: 300px !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-03 { opacity: 0.03 !important; }
.rotate-12 { transform: rotate(12deg); }

.text-mgr-purple-60 { color: rgba(45, 11, 90, 0.6) !important; }
.bg-mgr-purple-10 { background-color: rgba(45, 11, 90, 0.1) !important; }
.text-mgr-purple-70 { color: rgba(45, 11, 90, 0.7) !important; }

/* Tokens */
.emboss-a-plus {
    color: #ffffff;
    text-shadow:
    -1px -1px 0px rgba(255, 255, 255, 0.3),
    1px 1px 2px rgba(0, 0, 0, 0.9),
    2px 2px 4px rgba(0, 0, 0, 0.6);
    display: inline-block;
}

.acc-token {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.acc-token:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.acc-token .logo-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.acc-token img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.acc-token:hover img {
    transform: scale(1.08);
}

/* =========================================
   CONSTITUENT INSTITUTIONS
   ========================================= */
.py-12 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.text-indigo-600 { color: #4f46e5 !important; }
.text-sm { font-size: 0.875rem !important; }

@keyframes marqueeColleges {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee-colleges:hover { animation-play-state: paused; }

.college-pill {
    flex-shrink: 0;
    height: 45px;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}
.college-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.college-pill img {
    height: 100%;
    width: auto;
    object-fit: contain;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* =========================================
   INTERACTIVE HIGHLIGHT SECTION
   ========================================= */
.bg-cover { background-size: cover !important; }
.bg-center { background-position: center !important; }
.max-w-1400 { max-width: 1400px !important; margin-left: auto; margin-right: auto; }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }
.bg-white-5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.hover-bg-white-10:hover { background-color: rgba(255, 255, 255, 0.1) !important; }
.hover-border-white-30:hover { border-color: rgba(255, 255, 255, 0.3) !important; }
.text-11px { font-size: 11px !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }
.shrink-0 { flex-shrink: 0 !important; }
.group:hover .group-hover-scale-110 { transform: scale(1.1) !important; }
.group:hover .group-hover-bg-white-10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.group:hover .group-hover-text-white { color: white !important; }

.interactive-core { perspective: 1000px; }
.orbit-system { width: 300px; height: 300px; }
@media (min-width: 768px) { .orbit-system { width: 460px; height: 460px; } }
.central-logo-container { width: 160px; height: 160px; border-width: 6px; }
@media (min-width: 768px) { .central-logo-container { width: 220px; height: 220px; } }

/* The animations from the original inline CSS */
@keyframes gradient-slow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-gradient-slow { background-size: 200% 200%; animation: gradient-slow 15s ease infinite; }

.central-logo-container { animation: floatLogo 6s ease-in-out infinite, rgbOutglow 8s linear infinite; }
@keyframes rgbOutglow {
    0% { box-shadow: 0 0 20px 5px rgba(168, 85, 247, 0.6); border-color: rgba(168, 85, 247, 0.4); }
    25% { box-shadow: 0 0 20px 5px rgba(34, 197, 94, 0.6); border-color: rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.6); border-color: rgba(59, 130, 246, 0.4); }
    75% { box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.6); border-color: rgba(245, 158, 11, 0.4); }
    100% { box-shadow: 0 0 20px 5px rgba(168, 85, 247, 0.6); border-color: rgba(168, 85, 247, 0.4); }
}
@keyframes floatLogo {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

.rotating-layer { animation: rotateOrbit 40s linear infinite; transform-origin: center center; }
@keyframes rotateOrbit { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.orbit-icon-wrapper { animation: inverseRotateOrbit 40s linear infinite; }
@keyframes inverseRotateOrbit { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

.base-ring { animation: rotateOrbit 60s linear infinite reverse; transform-origin: 230px 230px; }

.interactive-core.hover-active .rotating-layer,
.interactive-core.hover-active .orbit-icon-wrapper,
.interactive-core.hover-active .base-ring { animation-play-state: paused; }

.interactive-core.hover-active .central-logo-container { transform: scale(1.05) translateY(-5px); }
.interactive-core.hover-active .glow-layer { opacity: 0.8 !important; transform: scale(1.3) !important; }

.orbit-icon-wrapper.active-hover { transform: scale(1.25) !important; z-index: 50; }
.pulse-effect { animation: pulseRing 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
.orbit-icon-wrapper.active-hover .pulse-effect { opacity: 1; }

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; border-width: 3px; }
    100% { transform: scale(1.8); opacity: 0; border-width: 1px; }
}

.highlight-item {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s ease-out;
}
.highlight-item.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

.highlight-line { stroke-linecap: round; filter: drop-shadow(0 0 5px currentColor); }
.highlight-line.active { opacity: 1; stroke-dashoffset: 0; }

/* =========================================
   CAMPUS FACILITIES MARQUEE
   ========================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    padding: 15px 0;
    margin: -15px 0;
}

.marquee-track {
    display: flex;
    width: fit-content;
}

.track-left {
    animation: marqueeLeft 35s linear infinite;
}

.track-right {
    animation: marqueeRight 40s linear infinite;
}

.track-left-slow {
    animation: marqueeLeft 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.facility-pill {
    background-color: #2D0B5A;
    color: #f1f5f9;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 2.2rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 15px -3px rgba(34, 57, 59, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: default;
}

.facility-pill:hover {
    background-color: #192a2c;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 20px -5px rgba(34, 57, 59, 0.3);
    border-radius: 12px 30px 12px 30px;
}

.facility-pill span.material-symbols-outlined {
    color: #FFC107;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.facility-pill:hover span.material-symbols-outlined {
    color: #818cf8;
    opacity: 1;
}

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

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

@media (max-width: 768px) {
    .facility-pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
}

/* =========================================
   INNOVATIVE RANKINGS & ACCREDITATION
   ========================================= */
.bg-0a0f1c { background-color: #0a0f1c !important; }
.blur-100px { filter: blur(100px); }
.blur-120px { filter: blur(120px); }
.mix-blend-screen { mix-blend-mode: screen; }

@keyframes border-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glowing-border-wrapper {
    position: relative;
    padding: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glowing-border-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, #FFCB00 0deg, #2D0B5A 90deg, #FFCB00 180deg, #2D0B5A 270deg, #FFCB00 360deg);
    animation: border-rotate 4s linear infinite;
    z-index: 0;
    filter: blur(8px);
}

.glowing-border-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #0a0f1c;
}

/* =========================================
   EXPERIENCE THE FUTURE
   ========================================= */
.bg-fafafa { background-color: #fafafa !important; }
.border-l-4 { border-left-width: 4px !important; }
.border-l-mgr-gold { border-left-color: #FFD166 !important; }
.group:hover .group-hover-text-mgr-purple { color: #2D0B5A !important; }

/* =========================================
   PROGRAM TABS
   ========================================= */
.custom-prog-tabs .nav-link {
    background-color: #2D0B5A; /* Purple background for inactive tabs */
    color: white; /* White text for inactive tabs */
    border: 1px solid #1e1b4b;
    border-radius: 8px 8px 0 0;
    margin-right: 4px;
    padding: 0.4rem 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.custom-prog-tabs .nav-link:hover {
    background-color: #1e1b4b; /* Darker purple on hover */
    border-color: #1e1b4b;
    color: white;
}

.custom-prog-tabs .nav-link.active {
    background-color: #FFCB00; /* Yellow active tab */
    color: #1a1a24; /* Dark text */
    border-color: #FFCB00;
}

/* =========================================
   PLACEMENTS & SUCCESS STORIES
   ========================================= */
.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.bg-mgr-purple-70 { color: rgba(45, 11, 90, 0.7) !important; }
.bg-ffd166 { background-color: #FFD166 !important; }
.text-ffd166 { color: #FFD166 !important; }

/* Student Success Stories */
.bg-fdf8f5 { background-color: #fdf8f5 !important; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }
.text-1a1a24 { color: #1a1a24 !important; }
.bg-red-100 { background-color: #fee2e2 !important; }
.text-red-700 { color: #b91c1c !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.text-blue-700 { color: #1d4ed8 !important; }
.bg-orange-100 { background-color: #ffedd5 !important; }
.text-orange-700 { color: #c2410c !important; }
.bg-teal-100 { background-color: #ccfbf1 !important; }
.text-teal-700 { color: #0f766e !important; }
.bg-purple-100 { background-color: #f3e8ff !important; }
.text-purple-700 { color: #7e22ce !important; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* =========================================
   TESTIMONIALS & LABS
   ========================================= */
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.animate-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee-labs {
    display: flex;
    width: max-content;
    animation: marquee-labs 50s linear infinite;
    will-change: transform;
}
.animate-marquee-labs:hover { animation-play-state: paused; }
@keyframes marquee-labs {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}
video::-webkit-media-controls { display: none !important; }
.text-100px { font-size: 100px !important; }
@media (min-width: 768px) {
    .text-md-150px { font-size: 150px !important; }
}
.tracking-tighter { letter-spacing: -0.05em !important; }
/* =========================================
   DEPARTMENT LISTS & BULLETS
   ========================================= */
.dept-card ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.dept-card ul li {
    position: relative;
    padding-left: 1.2rem !important;
    display: block;
    line-height: 1.5;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.dept-card ul li::before {
    content: "›" !important;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.3rem;
    color: var(--mgr-gold-alt);
    font-weight: 900;
    line-height: 1.5;
}

/* Website Team Animation - Multi-Color Edition */
.website-team-anim {
    background: linear-gradient(90deg, #FFCB00, #818cf8, #4f46e5, #FFCB00);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}


@keyframes shine {
    to { background-position: 200% center; }
}

.dept-card .dept-title {
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
    display: block;
}


.dept-card .lbl-ug, 
.dept-card .lbl-pg, 
.dept-card .lbl-hons, 
.dept-card .lbl-minor {
    margin-bottom: 12px !important;
}



/* =========================================
   ADMISSIONS HIGHLIGHTS - LIQUID GLASS MODEL (REVERSED)
   ========================================= */
.admissions-highlights-section {
    background: linear-gradient(135deg, #f8faff 0%, #fffbf0 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.liquid-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(45, 11, 90, 0.03) 0%, rgba(255, 203, 0, 0.03) 100%);
    filter: blur(40px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph 15s linear infinite alternate;
    z-index: 0;
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translate(0, 0) rotate(0deg); }
    100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; transform: translate(20px, 40px) rotate(180deg); }
}

.innovative-admissions-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 11, 90, 0.1);
    border-radius: 15px 40px 15px 40px; /* Reversed Default Shape */
    padding: 1.75rem 1.25rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px -10px rgba(45, 11, 90, 0.08); /* Default Shadow */
}

.innovative-admissions-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-radius: 40px 15px 40px 15px; /* Shape Flips on Hover */
    background: #ffffff;
    box-shadow: 0 35px 70px -15px rgba(45, 11, 90, 0.15);
    border-color: var(--mgr-gold);
}

.card-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--mgr-purple); /* Purple Default */
    color: var(--mgr-gold); /* Gold Icon Default */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 8px 20px -5px rgba(45, 11, 90, 0.3);
}

.card-icon-box::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--mgr-gold);
    animation: spin 10s linear infinite;
    opacity: 0.4; /* Partially visible by default */
    transition: opacity 0.3s, border-color 0.3s;
}

.innovative-admissions-card:hover .card-icon-box {
    background: var(--mgr-gold); /* Turns Gold on Hover */
    color: var(--mgr-purple); /* Icon turns Purple */
    transform: rotateY(180deg);
}

.innovative-admissions-card:hover .card-icon-box::after {
    opacity: 1;
    border-color: var(--mgr-purple);
}

.card-icon-box span {
    font-size: 1.75rem;
}

.card-title-innovative {
    font-size: 1rem;
    font-weight: 800;
    color: var(--mgr-purple);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-desc-innovative {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-cta-innovative {
    background: transparent;
    color: var(--mgr-purple);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--mgr-purple);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.innovative-admissions-card:hover .card-cta-innovative {
    background: var(--mgr-gold); /* Yellow on Hover */
    color: var(--mgr-purple);
    border-color: var(--mgr-gold);
    box-shadow: 0 10px 20px -5px rgba(255, 203, 0, 0.4);
}

.btn-group-innovative {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.btn-group-innovative .card-cta-innovative {
    padding: 0.5rem 0.25rem;
    font-size: 0.65rem;
}
