body {
    font-family: 'Segoe UI', sans-serif;
}

/* HERO BACKGROUND */


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

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

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-light-orange) 100%);
}

:root {
    --brand-blue: #155dfc;
    --brand-orange: #ed7900;
    --bg-light-blue: rgba(31, 146, 218, 0.06);
    --bg-light-orange: rgba(237, 121, 0, 0.04);
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}
header{
    position: fixed;
    width:100%;
    z-index: 1000;
}
/* Hero Container with Subtle Gradient */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-light-orange) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 146, 218, 0.15) 0%, transparent 70%);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 121, 0, 0.1) 0%, transparent 70%);
}

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

/* Trust Badge styling */
.trust-badge {
    background-color: #ffffff;
    border: 1px solid rgba(31, 146, 218, 0.15);
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.trust-badge i {
    color: var(--brand-orange);
}

/* Typography updates */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.text-gradient-blue {
    background: linear-gradient(45deg, var(--brand-blue), #0f68a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheading {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 580px;
}

.notice-tag {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

/* High Conversion CTAs */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #d66d00 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(237, 121, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 121, 0, 0.4);
}

.btn-cta-secondary {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue) !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: var(--brand-blue);
    color: #ffffff !important;
}

/* Modern Image Wrapper with Floating Effects */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 8px solid #ffffff;
}

/* Floating Analytics Dashboard Card */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 10%;
    right: -2%;
    animation: float 4s ease-in-out infinite 2s;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Subtle Floating Keyframe Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Fine-tuning */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .floating-card {
        display: none;
    }

    /* Clear clutter on smaller screens */
    .hero-image-wrapper {
        margin-top: 3rem;
    }
}
/* Course Details Base Configuration */
.course-details-section {
   overflow: hidden;
}

.max-w-720 {
    max-width: 720px;
}

/* Accent Badge styling */
.badge-accent {
    color: var(--brand-orange);
    background-color: rgba(237, 121, 0, 0.08);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
}

/* Premium Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 146, 218, 0.08);
}

/* Feature Card Icons */
.feature-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.icon-blue {
    background-color: var(--bg-light-blue);
    color: var(--brand-blue);
}

.icon-orange {
    background-color: var(--bg-light-orange);
    color: var(--brand-orange);
}

.card-headline {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Card Decorative Subtle Bottom Bars */
.card-decorative-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}
.line-blue { background-color: var(--brand-blue); }
.line-orange { background-color: var(--brand-orange); }

/* Syllabus Breakdown Module Layout */
/* Premium Deep Dark Theme Module Override */
.syllabus-breakdown-box.modern-dark-theme {
    background: radial-gradient(circle at top left, #131c2a, #0b1017) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 60px rgba(11, 16, 23, 0.4) !important;
}

/* Typography Scale Updates */
.fw-black {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.text-light-muted {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Micro Accent Badging */
.pill-badge-orange {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-orange);
    background: rgba(237, 121, 0, 0.15);
    border: 1px solid rgba(237, 121, 0, 0.3);
    border-radius: 50px;
}

/* Dark Card Elements (Glassmorphism + Interactive Borders) */
.pillar-tag-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.pillar-tag-dark:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Hover Accent Separators for Individual Pillars */
.pillar-tag-dark:hover .text-blue {
    color: #38bdf8 !important;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.pillar-tag-dark:hover .text-orange {
    color: #ff9d33 !important;
    text-shadow: 0 0 10px rgba(255, 157, 51, 0.5);
}

/* Index Number System */
.pillar-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace; /* Clean technical math sub-feel */
}

.text-blue { color: var(--brand-blue); }
.text-orange { color: var(--brand-orange); }

/* Ambient Color Backdrops within Dark Canvas */
.dark-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}
.glow-blue {
    top: -20%;
    left: -10%;
    background: var(--brand-blue);
}
.glow-orange {
    bottom: -20%;
    right: -10%;
    background: var(--brand-orange);
}

/* Z-Index Fix */
.z-1 {
    position: relative;
    z-index: 1;
}
/* Base Layout Component separation */
.features-grid-section {
    background-color: #f8fafc;
}

/* Premium Card Enclosures */
.premium-feature-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.premium-feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(31, 146, 218, 0.2);
    box-shadow: 0 20px 40px rgba(31, 146, 218, 0.06);
}

/* Dynamic Inline SVG Box Control */
.custom-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* SVG Color System Inheritance */
.custom-icon-wrapper svg {
    transition: transform 0.3s ease;
}

.premium-feature-box:hover .custom-icon-wrapper {
    transform: scale(1.1) rotate(3deg);
}

/* Color Palette Variable Sync mapping */
.bg-blue-tint { background-color: rgba(31, 146, 218, 0.1) !important; }
.bg-orange-tint { background-color: rgba(237, 121, 0, 0.1) !important; }
.text-blue { color: var(--brand-blue); }
.text-orange { color: var(--brand-orange); }

/* Typography Scales */
.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.feature-description {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .premium-feature-box { padding: 1.5rem !important; }
}

/* Mobile responsive refinements for multi-grid scaling */
@media (max-width: 575.98px) {
    .premium-feature-box {
        padding: 1.5rem !important;
    }
}

/* Social Proof Banner System */
.mentor-metric-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(31, 146, 218, 0.12);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.mentor-metric-badge svg {
    color: var(--brand-orange);
}

.mentor-metric-badge .highlight-count {
    color: var(--brand-blue);
    font-weight: 700;
}

/* High-Fidelity Faculty Cards (Derived from image_7b6249.png) */
/* Deep Immersive Section Wrapper */
.faculty-immersive-section {
    background-color: #0b0f19; /* Pure deep slate mathematical void dark color */
    padding: 6rem 0;
}

/* 100% CSS Vector Math Formula Blueprint Layer (Simulating image_7bd6a9.png) */
.math-blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04; /* Keeps formulas elegant, subtle, and readable without blocking text */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Header Elements Styling */
.badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(31, 146, 218, 0.12);
    border: 1px solid rgba(31, 146, 218, 0.25);
    color: #38bdf8;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
}

.global-metric-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(237, 121, 0, 0.15);
    border-radius: 50%;
    color: #f97316;
    margin-right: 10px;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- THE HIGH-FIDELITY FACULTY CARD --- */
.faculty-academic-card {
    background: rgba(17, 24, 39, 0.7); /* Deep elegant glass backdrop */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(16px); /* Premium OS level glass effect */
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Neon Core Glow Hover Effect */
.faculty-academic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(56, 189, 248, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faculty-academic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.03);
}

.faculty-academic-card:hover::before {
    opacity: 1;
}

/* Header Component with Icon Layout (Ref: image_7bd6a9.png) */
.institution-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bg-blue-glow {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.bg-orange-glow {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.badge-meta {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
}

.badge-subtitle {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Content Layout elements */
.card-glass-body {
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.professor-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.4px;
}

.professor-bio {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Section Mini Cards Layout from image_7bd6a9.png */
.card-glass-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    position: relative;
    z-index: 2;
}

.footer-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hiring-section {
    background: #fff;
}

/* IMAGE WRAPPER */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* MAIN IMAGE */
.main-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* FLOATING BADGE */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    animation: floatBox 3s ease-in-out infinite;
}

/* ICON */
.floating-badge .icon {
    width: 40px;
    height: 40px;
    background: #e8fff0;
    color: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* TEXT */
.floating-badge h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.floating-badge p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* CONTINUOUS ANIMATION */
@keyframes floatBox {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .floating-badge {
        padding: 10px 12px;
        bottom: 10px;
        left: 10px;
    }

    .floating-badge h5 {
        font-size: 14px;
    }
}
.main-graphic-panel {
    width: 100%;
    height: 380px;
    background: linear-gradient(145deg, #111827, #0f172a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.inner-math-matrix {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.07;
    background: radial-gradient(circle at 20% 30%, #38bdf8 1px, transparent 1px) 0 0/20px 20px;
}

.panel-content-shield {
    position: relative;
    z-index: 2;
    height: 100%;
    background: linear-gradient(to top, rgba(9,13,22,1) 0%, rgba(9,13,22,0.4) 60%, transparent 100%);
}

/* FLOATING OVERLAPPING TESTIMONIAL/METRIC CARD (Exactly like image_7d99a4.png) */
.floating-metric-card {
    position: absolute;
    bottom: 40px;
    left: -25px; /* Creates the unique edge breakout aesthetic */
    background: #ffffff;
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0,0,0,0.05);
    z-index: 5;
    animation: floatingGently 4s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
}
/* Core Section Deck Wrapper */
.ioqm-premium-deck {
    background-color: #f8fafc;
    padding-bottom: 20px !important;
}

/* Base Variable Fallbacks */
.fw-black { font-weight: 900; }
.tracking-tight { letter-spacing: -1px; }
.text-xs { font-size: 0.725rem; }
.uppercase-text { text-transform: uppercase; }
.border-slate-100 { border-color: #f1f5f9 !important; }

/* The Core Two-Column Asymmetrical Split Glass Card Container */
.neo-glass-card-wrapper {
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.06), 
                0 0 0 1px rgba(15, 23, 42, 0.01);
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtle Frame Hover Elevation Lift */
.neo-glass-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 50px 100px -20px rgba(31, 146, 218, 0.12);
    border-color: rgba(31, 146, 218, 0.15);
}

/* Left Content Aesthetics */
.academic-lens-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.02;
    background-image: radial-gradient(#1f92da 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 1;
}

/* Modern Minimalist Live Pulse Badge Component */
.live-signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.pulse-beacon {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    position: relative;
}

.pulse-beacon::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background-color: #ef4444;
    border-radius: 50%;
    animation: livePulseRadar 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

.signal-string {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

/* Premium Highlight Date Pill Asset */
.highlight-date-pill {
    background: rgba(31, 146, 218, 0.06);
    border: 1px solid rgba(31, 146, 218, 0.15);
    color: #0284c7;
    padding: 0.15rem 0.5rem;
    font-weight: 700;
    border-radius: 6px;
}


/* --- RIGHT CONVERSION ENGINE PANEL (HIGH EYE-CATCHING VISUAL WEIGHT) --- */
.action-terminal-mesh {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

/* Decorative Ambient Kinetic Background Light Orb */
.terminal-glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(31, 146, 218, 0.25) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 1;
}

/* Ultra-Premium Glass Offer Tag System */
.premium-offer-tag-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #38bdf8;
    padding: 0.55rem 1.1rem;
    border-radius: 12px;
    position: relative;
}

.tag-glow-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

/* Modern Typography Pricing Layout */
.pricing-display-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slashed-price-container {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: line-through;
    opacity: 0.8;
}

.slashed-price-container .currency-symbol {
    font-size: 1rem;
    margin-right: 2px;
}

.active-price-container {
    font-size: 3.75rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-top: 2px;
}

.active-price-container .currency-symbol-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #38bdf8;
    margin-right: 2px;
}


/* --- THE CALL TO ACTION BUTTON (SENIOR LEVEL CODE ARCHITECTURE) --- */
.btn-action-glow-masterclass {
    background: #ffffff;
    color: #0f172a !important;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    border: 1px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.icon-circle-arrow {
    width: 28px;
    height: 28px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* High Fidelity Interactive Transformations on Hover */
.btn-action-glow-masterclass:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 25px 50px rgba(56, 189, 248, 0.25), 0 0 20px rgba(255, 255, 255, 0.4);
    background: #ffffff;
}

.btn-action-glow-masterclass:hover .icon-circle-arrow {
    background: var(--brand-blue, #1f92da);
    transform: rotate(-45deg);
}

.btn-action-glow-masterclass:active {
    transform: translateY(-1px);
}


/* --- ANIMATION ENGINE KEYFRAMES --- */
@keyframes livePulseRadar {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.animate-pulse-subtle {
    animation: textBrightPulse 3s ease-in-out infinite;
}

@keyframes textBrightPulse {
    0%, 100% { text-shadow: 0 0 0px rgba(255,255,255,0); }
    50% { text-shadow: 0 0 20px rgba(56, 189, 248, 0.2); }
}


/* --- RIGOROUS RESPONSIBLE RESPONSIVE BREAKPOINTS --- */
@media (max-width: 991.98px) {
    .neo-glass-card-wrapper {
        border-radius: 24px;
    }
    .action-terminal-mesh {
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .active-price-container {
        font-size: 3.25rem;
    }
}

@media (max-width: 575.98px) {
    .neo-glass-card-wrapper {
        margin: 0 4px;
    }
    .active-price-container {
        font-size: 2.85rem;
    }
    .btn-action-glow-masterclass {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
}
/* Section Background & Global Utilities */
.faculty-slider-section {
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-light-orange) 100%);
}
.max-w-720 {
    max-width: 720px;
}

/* Badge Top Accent */
.badge-accent {
    background-color: #fdf2e9;
    color: #e67e22;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Text */
.section-title {
    color: #1e293b;
    font-size: 2.25rem;
}

/* Middle Sub-Header Pill */
.mentor-metric-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.mentor-metric-badge .highlight-count {
    color: #0284c7;
    font-weight: 700;
}

/* Faculty Image & Card Area */
.faculty-card-wrapper {
    padding: 10px;
}
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* Allows badge to overlap beautifully if needed */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.image-wrapper .main-img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
}

/* Floating Overlay Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.icon-box {
    width: 36px;
    height: 36px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.badge-content {
    display: flex;
    flex-direction: column;
}
.badge-num {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}
.badge-text {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Navigation Arrow Fixes for Owl Slider */
.faculty-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    color: #333 !important;
    font-size: 20px !important;
}
.faculty-carousel .owl-nav button.owl-prev { left: -20px; }
.faculty-carousel .owl-nav button.owl-next { right: -20px; }

/* Section Background & Global Text Settings */
.comparison-section {
    background-color: #fbf9f7; /* Matching the overall tone */
}
.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-top: 12px;
}

/* Premium Component Layout Base */
.table-responsive-wrapper {
    width: 100%;
    margin-top: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.premium-comparison-table {
    min-width: 800px; /* Assures readable format desktop */
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

/* Row Formats */
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.25s ease;
}
.comp-row:last-child {
    border-bottom: none;
}
.comp-row:not(.comp-header):hover {
    background-color: #fafafa;
}

/* Cell Formats */
.comp-cell {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
}

/* Column Differences */
.cell-metric {
    background-color: #fff;
    color: #1e293b;
    font-size: 16px;
    border-right: 1px solid #f1f5f9;
}
.cell-standard {
    color: #64748b;
    border-right: 1px solid #f1f5f9;
}

/* Highlighted Column Design (Using Warm Accent Color Palette) */
.cell-premium {
    background-color: rgba(253, 242, 233, 0.45); /* Soft premium pastel orange tint */
    color: #1e293b;
    position: relative;
}
.comp-row:hover .cell-premium {
    background-color: rgba(253, 242, 233, 0.65);
}

/* Header Specific Styles */
.comp-header {
    background: #ffffff;
    border-bottom: 2px solid #ebdccf;
}
.comp-header .comp-cell {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e293b;
    padding-top: 32px;
    padding-bottom: 32px;
}
.comp-header .cell-premium {
    background-color: #fdf2e9; /* Stronger pastel block on header */
    color: #e67e22;
}

/* Table Accent Tags and Indicators */
.premium-badge {
    position: absolute;
    top: 17px;
    right: 28px;
    background: #e67e22;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.25);
}
.text-indicator {
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}
.text-indicator.positive {
    color: #e67e22;
}
.text-indicator.negative {
    color: #cbd5e1;
}
.text-underline-highlight {
    background: linear-gradient(180deg, rgba(255,255,255,0) 70%, #ebdccf 70%);
    font-weight: 700;
}

/* Responsive Adaptive Viewport Adjustments */
@media (max-width: 768px) {
    .table-responsive-wrapper {
        overflow-x: visible;
        box-shadow: none;
    }
    .premium-comparison-table {
        min-width: 100%;
        background: transparent;
        border: none;
        gap: 24px;
    }
    .comp-row {
        grid-template-columns: 1fr;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.02);
        overflow: hidden;
    }
    .comp-header {
        display: none; /* Hide standard headers on ultra-small breakpoints to utilize stacked flex details */
    }
    .comp-cell {
        padding: 16px 20px;
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }
    .cell-metric {
        background-color: #f8fafc;
        font-size: 16px;
        color: #e67e22;
    }
    .comp-cell[data-label]::before {
        content: attr(data-label) ": ";
        display: block;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 4px;
    }
}
.footer{
    background-color: #fdf2e9;
    padding: 15px;
}
/* Base container tracking hidden setup for mobile viewports */
.sticky-contact-widget {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    flex-direction: column;
    gap: 16px; /* Space between buttons as shown in image_be8a66.png */
}

/* Common Sticky Button Styling */
.sticky-contact-widget {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    flex-direction: column;
    gap: 16px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth spring-back hover curve */
    text-decoration: none;
}

.btn-call { background-color: #155dfc; color: #fff; }
.btn-whatsapp { background-color: #1ed760; color: #fff; }
.sticky-btn svg { width: 28px; height: 28px; }

/* Dynamic Glow/Pulse Keyframes */
@keyframes WhatsAppPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 215, 96, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(30, 215, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 215, 96, 0); }
}

.pulse-effect {
    animation: WhatsAppPulse 2s infinite;
}

@media (min-width: 992px) {
    .sticky-contact-widget { display: flex; }
    
    /* Elegant Hover Interactions */
    .sticky-btn:hover {
        transform: translateY(-5px) scale(1.08);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }
    .sticky-btn:hover svg {
        transform: rotate(15deg);
        transition: transform 0.2s ease;
    }
}
@media(max-width:767px) {
    .hero-section {
        padding-top: 150px;
    }
    .apply{
        padding: 10px;
        margin-top: 10px;
    }
    .section-title {
    font-size: 28px;
}
.hero-image-wrapper {
        margin-top: 0px;
    }
    .py-5{
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .hero-title {
        font-size: 32px;
    }
}
/* Ergonmically tuned mobile interactive layout actions */
.mobile-action-btn {
    background: var(--brand-gradient);
    height: 45px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-decoration: none;
    transition: var(--transition-elastic);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-action-btn:active {
    transform: scale(0.96);
}

/* Call Action Button Modifiers */
.btn-m-call {
    background-color: #e67e22;
    color: #FFFFFF !important;
    flex: 1;
}

/* Enquire Action Button Modifiers */
.btn-m-enquire {
    background-color: #e67e22;
    color: #FFFFFF !important;
    flex: 1.3;
    /* Intentional visual weight balance hierarchy */
}

/* WhatsApp Circular Launcher Button Modifiers */
.btn-m-whatsapp {
    background-color: #e67e22;
    color: #FFFFFF !important;
    width: 52px;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1.4rem;
    padding: 0;
}

/* High-Conversion Micro-Pulse Notification System */
.pulse-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--brand-blue), #0f68a3);
    /* Vibrant Alert Red */
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.pulse-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid #0284c7;
    animation: modernBadgePulse 2s infinite ease-out;
    opacity: 1;
}

@keyframes modernBadgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* --- DESKTOP GUARD RAIL --- */
/* Completely hides the layout interface when viewports scale above tablet break lines */
@media (min-width: 768px) {
    .premium-mobile-footer {
        display: none !important;
    }

    body {
        padding-bottom: 0px;
    }
        
}
.premium-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-top: 1px solid rgba(15, 41, 66, 0.08);
    padding: 12px 16px cubic-bezier(0.1, 0.76, 0.55, 0.94);
    box-shadow: 0 -10px 30px rgba(15, 41, 66, 0.06);
    transform: translateZ(0);
    will-change: transform;
}
/* Premium Modal Wrapper Variables & Basics */
.premium-modal .modal-content {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-gradient-accent {
    height: 6px;
    background: #155dfc;
    width: 100%;
}

.fw-extrabold {
    font-weight: 800;
}

/* Custom Close Interactive Button */
.btn-close-custom {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.btn-close-custom:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: rotate(90deg);
}

/* Modern Input Customization */
.form-floating-custom label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 16px;
    user-select: none;
    pointer-events: none;
}

.form-control-custom {
    width: 100%;
    height: 50px;
    padding: 10px 16px 10px 48px;
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    background: #ffffff;
    border-color: #e67e22;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px auto;
}

/* Modal Submit Button Setup */
.btn-submit-modal {
    height: 52px;
    background: linear-gradient(45deg, var(--brand-blue), #0f68a3);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit-modal:active {
    transform: scale(0.98);
}
.ms-2 {
    margin-left: 8px !important;
}
