/* ==========================================================================
   Design System variables - Collegiate Crimson, Gold, & Ivory
   ========================================================================== */
:root {
    /* Primary Brand */
    --primary: #084027; /* Hindu Green */
    --secondary: #671C1B;    /* Team Shakti Maroon */
    --accent: #E77E0E; /* College Crest Orange */
    --background: #F9F5EF;
    --surface: #FFFFFF;

    /* Text */
    --text-primary: #1D1D1D;
    --text-secondary: #555555;

    /* Borders */
    --border: #D9D9D9;

    /* Alias for legacy variables used throughout the stylesheet */
    --crimson: var(--primary);
    --crimson-hover: #06301e;
    --crimson-light: #ebeeec;
    --gold: var(--accent);
    --gold-hover: #c66b09;
    --gold-light: #FEEADB;
    --secondary-green: var(--secondary);

    /* Backgrounds & Offsets */
    --bg-main: #fdfdfc;
    --bg-section: #fcfbfa;
    --bg-card: #ffffff;
    --bg-footer: #1c1917;
    
    /* Typography & Borders */
    --text-dark: #1c1917;
    --text-gray: #57534e;
    --text-light: #78716c;
    --text-white: #ffffff;
    --border-color: #e7e5e4;
    --border-focus: #c29b38;
    
    /* Shadows & Timing */
    --shadow-soft: 0 4px 20px -2px rgba(28, 25, 23, 0.04), 0 2px 8px -1px rgba(28, 25, 23, 0.02);
    --shadow-hover: 0 20px 40px -10px rgba(128, 0, 32, 0.08), 0 4px 12px -2px rgba(28, 25, 23, 0.03);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.05), 0 10px 15px -5px rgba(0,0,0,0.02);
    
    /* Geometry */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 32px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

/* ==========================================================================
   Global Reset & Base Styling
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Section Common Titles */
.section-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--crimson);
    background-color: var(--crimson-light);
    border: 1px solid rgba(128, 0, 32, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-badge.light {
    color: var(--gold);
    background-color: var(--gold-light);
    border-color: rgba(194, 155, 56, 0.15);
}

.section-main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-tagline {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 650px;
    margin-bottom: 40px;
}

/* ==========================================================================
   Navigation Bar Header (Redesigned Desktop & Mobile)
   ========================================================================== */
/* ==========================================================================
   Navigation Bar Header (Redesigned Floating Glassmorphic Pill)
   ========================================================================== */
.top-nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    padding: 6px 16px;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 24px);
    max-width: 1560px;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 10px 32px -8px rgba(128, 0, 32, 0.12), 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, top 0.35s ease, border-color 0.35s ease;
}

.top-nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 40px -5px rgba(128, 0, 32, 0.18), 0 0 18px rgba(212, 175, 55, 0.2);
    top: 5px;
    padding: 5px 14px;
    border-color: rgba(128, 0, 32, 0.3);
}

.nav-hub-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Brand Group: Dual Logos & Title */
.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo-link:hover {
    transform: scale(1.08) rotate(-3deg);
}

.logo-college {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-shakti {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
    animation: goldGlow 3s infinite alternate;
}

@keyframes goldGlow {
    from { box-shadow: 0 0 8px rgba(212, 175, 55, 0.4); }
    to { box-shadow: 0 0 18px rgba(212, 175, 55, 0.8), 0 0 6px rgba(128, 0, 32, 0.4); }
}

.brand-divider {
    width: 1.5px;
    height: 22px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.brand-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shakti-brand-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--crimson) 0%, #a00028 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.college-subtext {
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 800;
    margin-top: 2px;
}

/* Center Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    background: rgba(240, 238, 235, 0.85);
    padding: 3px 6px;
    border-radius: 35px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-dark);
    padding: 4px 7.5px;
    border-radius: 25px;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap !important;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
}

.nav-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--crimson);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(128, 0, 32, 0.08);
}

.nav-link.active {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--crimson) 0%, #900020 100%);
    box-shadow: 0 3px 12px rgba(128, 0, 32, 0.25);
}

.nav-link.active .nav-dot {
    opacity: 1;
    transform: scale(1);
    background-color: var(--gold);
}

.nav-link.admin-nav-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(128, 0, 32, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #8a6d0b !important;
    font-weight: 800 !important;
}

.nav-link.admin-nav-tag:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #b89320 100%);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* Right Actions Group & CTA Button */
.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: max-content;
    margin-left: auto;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--crimson) 0%, #a00028 50%, var(--gold) 100%);
    background-size: 200% auto;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(128, 0, 32, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(128, 0, 32, 0.4);
}

.nav-cta-btn svg {
    transition: transform 0.2s ease;
}

.nav-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Hamburger Trigger */
.hamburger-trigger {
    background: rgba(128, 0, 32, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    transition: all 0.25s ease;
    z-index: 10001;
}

.hamburger-trigger:hover {
    background: rgba(128, 0, 32, 0.1);
    border-color: var(--crimson);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background-color: var(--crimson);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger-trigger.active {
    background: var(--crimson);
    border-color: var(--crimson);
}

.hamburger-trigger.active .line-top {
    transform: translateY(6px) rotate(45deg);
    background-color: #ffffff;
}

.hamburger-trigger.active .line-mid {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-trigger.active .line-bot {
    transform: translateY(-6px) rotate(-45deg);
    background-color: #ffffff;
}

/* ==========================================================================
   Multi-Device Menu Drawer
   ========================================================================== */
.menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-card);
    z-index: 12000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

.menu-drawer.open {
    right: 0;
}

.drawer-inner {
    padding: 24px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.drawer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--crimson);
    background: var(--crimson-light);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.drawer-close-btn {
    background: rgba(128, 0, 32, 0.08);
    color: var(--crimson);
    border: 1px solid rgba(128, 0, 32, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.drawer-close-btn:hover {
    background-color: var(--crimson);
    color: #ffffff;
    border-color: var(--crimson);
    transform: rotate(90deg);
}

.drawer-nav {
    margin-top: 6px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-item {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.drawer-item:hover,
.drawer-item.active {
    color: var(--crimson);
    background: rgba(128, 0, 32, 0.06);
    transform: translateX(4px);
}

.drawer-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
    flex-shrink: 0;
}

.drawer-footer p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.shakti-tagline {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section - Asymmetrical Overtext & Shapes Layout
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 100px 24px 60px 24px;
    background-color: var(--bg-section);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Absolute Unstructured Backing Shapes */
.unstructured-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    transition: var(--transition-smooth);
}

.shape-blob-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.08) 0%, rgba(253, 253, 252, 0) 70%);
    border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
    top: -50px;
    left: -50px;
    animation: shapeMorph 15s ease-in-out infinite alternate;
}

.shape-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 155, 56, 0.06) 0%, rgba(253, 253, 252, 0) 70%);
    border-radius: 54% 46% 62% 38% / 48% 59% 41% 52%;
    bottom: -100px;
    right: -100px;
    animation: shapeMorph 20s ease-in-out infinite alternate-reverse;
}

.shape-polygon {
    width: 300px;
    height: 300px;
    background-color: rgba(128, 0, 32, 0.015);
    clip-path: polygon(10% 25%, 90% 10%, 85% 85%, 20% 90%);
    top: 25%;
    left: 45%;
    transform: rotate(12deg);
}

.shape-circle-gold {
    width: 80px;
    height: 80px;
    border: 1.5px dashed rgba(194, 155, 56, 0.3);
    border-radius: 50%;
    top: 15%;
    left: 10%;
}

@keyframes shapeMorph {
    0% { border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%; }
    100% { border-radius: 60% 40% 65% 35% / 40% 60% 40% 60%; }
}

/* Asymmetric Hero Grid */
.hero-container-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.25fr;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Floating Overtext Panel (Unparallel overlapping card) */
.hero-overtext-panel {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(231, 229, 228, 0.8);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    z-index: 10;
    margin-right: -40px; /* Slight overlap for compact panel */
    position: relative;
    align-self: center;
}

/* Hero Brand Badge with Team Shakti Logo */
.hero-brand-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 242, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.1), 0 0 15px rgba(212, 175, 55, 0.15);
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-brand-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(128, 0, 32, 0.18), 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-brand-logo-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 2px;
    background: #fff;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-brand-shakti-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-brand-badge-text {
    display: flex;
    flex-direction: column;
}

.hero-brand-badge-text .badge-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--crimson) 0%, #a00028 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-brand-badge-text .badge-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--gold);
}

/* Floating Shakti Crest on Carousel */
.gallery-floating-shakti-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 8, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    padding: 6px 14px 6px 6px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(212, 175, 55, 0.3);
    animation: floatShaktiBadge 4s ease-in-out infinite alternate;
}

@keyframes floatShaktiBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.floating-shakti-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.floating-shakti-info {
    display: flex;
    flex-direction: column;
}

.shakti-badge-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    color: #ffffff;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.shakti-badge-sub {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tag-accent {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
    display: inline-block;
}

.hero-overtext-panel h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.highlight-text {
    color: var(--crimson);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(194, 155, 56, 0.18);
    z-index: -1;
}

.hero-subtext {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    display: inline-block;
}

.hero-btn.primary-btn {
    background-color: var(--crimson);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.2);
}

.hero-btn.primary-btn:hover {
    background-color: var(--crimson-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.hero-btn.secondary-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.hero-btn.secondary-btn:hover {
    background-color: var(--bg-section);
    border-color: var(--text-dark);
}

/* Asymmetric Styled Gallery Carousel */
.hero-gallery-wrap {
    width: 100%;
    z-index: 5;
}

.gallery-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: var(--border-color);
    /* Straight hero gallery layout */
    transform: none;
    border: 8px solid var(--bg-card);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.img-placeholder {
    height: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hero Carousel Image */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slide:hover .hero-img {
    transform: scale(1.05);
}

/* Shimmer pulse for lazy loading background */
.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #1c1917 25%,
        #292524 37%,
        #1c1917 63%
    );
    background-size: 400% 100%;
    animation: skeleton-pulse 2.5s ease-in-out infinite;
    z-index: 0;
}

.slide-num {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(128, 0, 32, 0.05);
    margin-bottom: 12px;
    z-index: 2;
}

.slide-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    z-index: 2;
}

.slide-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    z-index: 2;
}

/* Gallery Controls */
.gallery-controls {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    z-index: 10;
}

.g-btn {
    background-color: rgba(28, 25, 23, 0.9);
    color: var(--text-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.g-btn:hover {
    background-color: var(--crimson);
    transform: scale(1.05);
}

.g-dots {
    display: flex;
    gap: 8px;
    background-color: rgba(28, 25, 23, 0.4);
    padding: 8px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.g-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.g-dot.active {
    background-color: var(--text-white);
    width: 16px;
    border-radius: 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 54px;
    height: 54px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 1040;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    background-color: #20ba5a;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55), 0 4px 14px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}


/* ==========================================================================
   About Us Section (Side-by-side or Asymmetric stacked Cards)
   ========================================================================== */
.about-section {
    padding: 100px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Founder Profile Card */
.founder-profile-card {
    max-width: 950px;
    margin: 50px auto 40px auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    transition: var(--transition-smooth);
}

.founder-profile-card:hover {
    box-shadow: var(--shadow-hover);
}

.founder-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-photo-box {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.founder-photo-box:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.15);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-photo-box:hover .founder-img {
    transform: scale(1.04);
}

.photo-placeholder-blank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.photo-placeholder-blank svg {
    color: var(--text-light);
    opacity: 0.7;
}

.founder-details-box {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 2px;
}

.founder-role {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 12px;
}

.founder-meta-list p {
    font-size: 0.84rem;
    color: var(--text-gray);
    margin-bottom: 4px;
    line-height: 1.4;
}

.founder-meta-list p:last-child {
    margin-bottom: 0;
}

.founder-right-col {
    display: flex;
    flex-direction: column;
}

.founder-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 6px;
}

.founder-heading {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.founder-bio-text p {
    color: var(--text-gray);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.founder-bio-text p:last-child {
    margin-bottom: 0;
}

.about-asymmetric-grid {
    max-width: 850px;
    margin: 50px auto 0;
}

.about-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(194, 155, 56, 0.15);
    position: absolute;
    top: 24px;
    right: 32px;
}

.about-card h4 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.card-desc {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.card-quote {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--crimson);
    border-left: 3px solid var(--crimson);
    padding-left: 16px;
    margin-top: 16px;
}

/* Highlights for Team Shakti card */
.shakti-card {
    border-top: 4px solid var(--crimson);
    background-color: var(--bg-section);
}

.shakti-pillars {
    list-style: none;
    margin-top: 24px;
}

.shakti-pillars li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-gray);
}

.shakti-pillars li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--crimson);
}

/* ==========================================================================
   Scholarships Section
   ========================================================================== */
.scholarships-section {
    padding: 100px 24px;
    background-color: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
}

.scholarships-table-wrap {
    margin-top: 50px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    box-shadow: var(--shadow-card);
}

.scholarships-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.94rem;
}

.scholarships-table th {
    background-color: var(--crimson);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 18px 24px;
}

.scholarships-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.scholarships-table tbody tr:last-child td {
    border-bottom: none;
}

.scholarships-table tbody tr {
    transition: var(--transition-fast);
}

.scholarships-table tbody tr:hover {
    background-color: rgba(128, 0, 32, 0.03);
}

.sch-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.02rem;
    min-width: 220px;
}

.sch-offer {
    white-space: nowrap;
    min-width: 140px;
}

.amount-pill {
    display: inline-block;
    background-color: var(--crimson-light);
    color: var(--crimson);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 32, 0.15);
}

.sch-criteria {
    color: var(--text-gray);
    line-height: 1.55;
}

/* ==========================================================================
   Departments & Courses Section
   ========================================================================== */
.departments-section {
    padding: 100px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.filters-container {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-option {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-option:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.filter-option.active {
    background-color: var(--crimson);
    border-color: var(--crimson);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.1);
}

/* Rich Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.dept-card-rich {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--crimson);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
}

.dept-card-rich:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
    border-top-color: var(--gold);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.dept-symbol {
    font-size: 1.8rem;
}

.card-top h5 {
    font-size: 1.3rem;
}

.dept-brief {
    color: var(--text-gray);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.course-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.course-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.dept-footer-ratings {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 0.78rem;
    font-weight: 700;
}

.notes-count {
    color: var(--text-light);
}

.peer-score {
    color: var(--crimson);
}

/* ==========================================================================
   Student Registration Section
   ========================================================================== */
.registration-section {
    padding: 100px 24px;
    background-color: var(--bg-section);
}

.join-team-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #f7f5f0 100%);
    border-top: 1px solid var(--border-color);
}

.registration-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.reg-info-panel h3 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-top: 8px;
    margin-bottom: 20px;
}

.reg-info-panel p {
    color: var(--text-gray);
    margin-bottom: 36px;
}

/* Perks list styling */
.perks-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.perk-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.perk-item h6 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.perk-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Form Styles */
.reg-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
}

.rich-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-rich {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row-rich {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-rich label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
}

.form-group-rich input,
.form-group-rich select {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group-rich input:focus,
.form-group-rich select:focus {
    border-color: var(--border-focus);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(194, 155, 56, 0.1);
}

/* Validation Alert styles */
.form-group-rich.invalid input,
.form-group-rich.invalid select {
    border-color: #f87171;
    background-color: #fef2f2;
}

.validation-error {
    display: none;
    font-size: 0.75rem;
    color: #b91c1c;
    margin-top: 4px;
}

.form-group-rich.invalid .validation-error {
    display: block;
}

/* Checkbox alignment */
.custom-chk-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    cursor: pointer;
    user-select: none;
    position: relative;
}

.custom-chk-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.chk-indicator {
    width: 18px;
    height: 18px;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-fast);
}

.custom-chk-label:hover input ~ .chk-indicator {
    border-color: var(--crimson);
}

.custom-chk-label input:checked ~ .chk-indicator {
    background-color: var(--crimson);
    border-color: var(--crimson);
}

.chk-indicator::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid var(--text-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-chk-label input:checked ~ .chk-indicator::after {
    display: block;
}

/* Submit btn */
.form-submit-btn {
    background-color: var(--crimson);
    color: var(--text-white);
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
}

.form-submit-btn:hover {
    background-color: var(--crimson-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.25);
}

.form-status-box {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}

.form-status-box.success {
    background-color: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.form-status-box.hidden {
    display: none;
}

/* ==========================================================================
   Footer Component (Compact & Sleek)
   ========================================================================== */
.site-footer {
    background-color: var(--bg-footer);
    color: var(--border-color);
    padding: 45px 24px 0 24px;
    border-top: 2px solid var(--crimson);
}

.footer-inner-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 30px;
}

.footer-left h5 {
    color: var(--text-white);
    font-size: 1.18rem;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.du-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
}

.footer-mid h6,
.footer-right h6 {
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-nav {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.footer-item {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-item:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

.footer-right p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
    margin-bottom: 10px;
}

.disclaimer {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 8px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-light);
}

/* ==========================================================================
   Keyframes Animations
   ========================================================================== */
@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ==========================================================================
   Lost & Found Section
   ========================================================================== */
.lost-found-section {
    padding: 100px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.lf-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.lf-filters {
    display: flex;
    gap: 12px;
}

.lf-filter-btn {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lf-filter-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.lf-filter-btn.active {
    background-color: var(--crimson);
    border-color: var(--crimson);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.1);
}

.lf-report-trigger-btn {
    background-color: var(--gold);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(194, 155, 56, 0.25);
}

.lf-report-trigger-btn:hover {
    background-color: #b0892c;
    color: var(--text-white);
    transform: translateY(-2px);
}

.lf-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.lf-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.lf-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.lf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.lf-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.lf-badge.found {
    background-color: #dcfce7;
    color: #15803d;
}

.lf-badge.lost {
    background-color: var(--crimson-light);
    color: var(--crimson);
}

.lf-date {
    font-size: 0.76rem;
    color: var(--text-light);
}

.lf-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lf-item-meta {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.45;
}

.lf-item-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.lf-action-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: none;
    background-color: var(--crimson);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.lf-action-btn:hover {
    background-color: var(--crimson-hover);
}

.lf-action-btn.secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.lf-action-btn.secondary:hover {
    background-color: var(--bg-section);
    border-color: var(--text-dark);
}

/* Report Modal */
.lf-report-modal {
    margin-top: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-hover);
}

.lf-report-modal.hidden,
.hidden {
    display: none !important;
}

.lf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.lf-modal-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.lf-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-gray);
}

/* ==========================================================================
   Media Queries & Mobile Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-overtext-panel {
        margin-right: 0;
        padding: 36px;
    }
    
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-gallery-wrap {
        order: 1;
    }
    
    .hero-overtext-panel {
        order: 2;
    }
    
    .gallery-inner {
        transform: none; /* remove skew for simplicity on tablets */
    }
    
    .img-placeholder {
        height: 380px;
    }
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness & Breakpoints
   ========================================================================== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 1024px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-gallery-wrap {
        order: 1;
    }
    
    .hero-overtext-panel {
        order: 2;
    }
    
    .gallery-inner {
        transform: none;
    }
    
    .img-placeholder {
        height: 340px;
    }

    .scholarships-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
    }

    .scholarships-table {
        min-width: 640px;
    }
}

@media (max-width: 1440px) {
    .nav-link {
        font-size: 0.71rem !important;
        padding: 4px 7px !important;
    }
    .nav-btn-sos {
        font-size: 0.76rem !important;
        padding: 6px 14px !important;
    }
    .desktop-nav-links {
        gap: 1.5px !important;
        padding: 2px 5px !important;
    }
}

@media (max-width: 1480px) {
    .desktop-nav {
        display: none !important;
    }
    
    .hamburger-trigger {
        display: flex !important;
    }

    .top-nav-bar {
        position: fixed;
        top: 8px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: none;
        margin: 0;
        padding: 6px 14px;
        z-index: 9999;
    }

    .founder-profile-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .founder-left-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        width: 100%;
    }

    .founder-photo-box {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 4/5;
        border-radius: 16px;
        border: 2.5px solid var(--gold);
        box-shadow: 0 12px 32px rgba(128, 0, 32, 0.25);
        margin: 0 auto;
    }

    .founder-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        display: block;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pyq-filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .pyq-search-box input {
        width: 100%;
    }

    .pyq-select-filters {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .pyq-select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-nav-bar {
        position: fixed;
        top: 6px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        transform: none;
        margin: 0;
        z-index: 9999;
        padding: 6px 12px;
        border-radius: 40px;
    }

    .logo-shakti {
        height: 30px;
        width: 30px;
    }

    .logo-college {
        height: 26px;
        width: 26px;
    }

    .shakti-brand-main {
        font-size: 0.95rem;
    }

    .college-subtext {
        font-size: 0.5rem;
        letter-spacing: 0.16em;
    }

    .menu-drawer {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .top-nav-bar {
        top: 5px;
        left: 8px;
        right: 8px;
        width: auto;
        max-width: none;
        transform: none;
        margin: 0;
        padding: 5px 10px;
    }

    .nav-brand-group {
        gap: 6px;
    }

    .shakti-brand-main {
        font-size: 0.88rem;
        letter-spacing: 0.04em;
    }

    .college-subtext {
        font-size: 0.46rem;
        letter-spacing: 0.12em;
    }

    .brand-divider {
        height: 16px;
    }

    .logo-shakti {
        height: 28px;
        width: 28px;
    }

    .logo-college {
        height: 24px;
        width: 24px;
    }

    .hamburger-trigger {
        width: 34px;
        height: 34px;
    }

    .drawer-inner {
        padding: 20px 16px 20px 16px;
    }

    .drawer-item {
        font-size: 0.98rem;
        padding: 9px 12px;
    }

    .hero-section {
        padding: 30px 16px 50px 16px;
    }

    .hero-overtext-panel h2 {
        font-size: 1.85rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .founder-left-col {
        flex-direction: column;
        text-align: center;
    }

    .founder-meta-list {
        align-items: center;
    }

    .departments-grid,
    .pyqs-grid,
    .lf-items-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filters-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .filter-option {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .form-row-rich {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-inner-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lf-top-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .floating-join-btn {
        bottom: 16px;
        left: 12px;
        padding: 9px 14px;
        font-size: 0.78rem;
        gap: 6px;
        max-width: calc(50% - 16px);
    }

    .floating-join-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .section-main-title {
        font-size: 1.5rem;
    }

    .hero-overtext-panel {
        padding: 20px 16px;
    }
    
    .reg-form-panel {
        padding: 20px 16px;
    }
    
    .img-placeholder {
        height: 220px;
    }

    .chatbot-widget {
        bottom: 14px;
        right: 10px;
    }

    .chatbot-trigger-btn {
        padding: 8px 12px;
        gap: 6px;
    }

    .chat-btn-badge {
        font-size: 0.76rem;
    }

    .chatbot-window {
        right: 4px;
        left: 4px;
        width: calc(100vw - 8px);
        bottom: 64px;
        height: calc(100vh - 80px);
        max-height: 520px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   Floating AI Support Chatbot Widget (Redesigned Glassmorphic Pill)
   ========================================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    font-family: 'Outfit', sans-serif;
}

.chatbot-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(20, 10, 25, 0.95) 0%, rgba(128, 0, 32, 0.95) 70%, rgba(184, 20, 61, 0.95) 100%);
    color: var(--text-white);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    padding: 10px 22px 10px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 18px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-trigger-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px -5px rgba(128, 0, 32, 0.6), 0 0 25px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 235, 175, 0.8);
}

.chat-trigger-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--gold);
    flex-shrink: 0;
}

.chat-btn-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    color: #ffffff;
    white-space: nowrap;
}

.pulse-indicator {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border: 2px solid #180914;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Chatbot Window Popup */
.chatbot-window {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 480px;
    max-height: calc(100vh - 100px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(230, 225, 220, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 4px 15px rgba(128, 0, 32, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1060;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.chat-header {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--crimson) 0%, #7d0d29 60%, #52081a 100%);
    color: var(--text-white);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-bot-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #c66b09 100%);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-bot-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    line-height: 1.15;
}

.chat-bot-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    display: inline-block;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Category Filter Bar */
.chat-categories-bar {
    flex-shrink: 0;
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(245, 245, 244, 0.9);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}

.chat-categories-bar::-webkit-scrollbar {
    display: none;
}

.chat-cat-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-gray);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-cat-pill:hover {
    color: var(--crimson);
    border-color: var(--crimson);
}

.chat-cat-pill.active {
    background: linear-gradient(135deg, var(--crimson) 0%, #b8143d 100%);
    color: var(--text-white);
    border-color: var(--crimson);
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.2);
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    min-height: 120px;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--bg-main);
}

.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 88%;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
}

.bot-icon-small {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--crimson);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.83rem;
    line-height: 1.45;
}

.chat-msg.bot .msg-bubble {
    background-color: #f1f5f9;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--crimson) 0%, #b8143d 100%);
    color: var(--text-white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 3px 10px rgba(128, 0, 32, 0.2);
}

/* Quick Question Chips */
.chat-quick-questions {
    flex-shrink: 0;
    padding: 8px 12px;
    max-height: 105px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(250, 249, 246, 0.95);
    border-top: 1px solid var(--border-color);
}

.faq-chip-btn {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-chip-btn::after {
    content: '→';
    font-size: 0.85rem;
    color: var(--crimson);
    opacity: 0.7;
    margin-left: 8px;
}

.faq-chip-btn:hover {
    background-color: var(--crimson-light);
    border-color: var(--crimson);
    color: var(--crimson);
}

/* Input Bar */
.chat-input-bar {
    padding: 10px 14px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input-bar input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 9px 16px;
    font-size: 0.84rem;
    outline: none;
    transition: var(--transition-fast);
}

.chat-input-bar input:focus {
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.chat-input-bar button {
    background: linear-gradient(135deg, var(--crimson) 0%, #b8143d 100%);
    color: var(--text-white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.25);
}

.chat-input-bar button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #06301e 0%, var(--crimson) 100%);
}

/* ==========================================================================
   PYQs (Previous Year Questions) Section Styles
   ========================================================================== */
.pyqs-section {
    padding: 100px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.pyq-filters-container {
    max-width: var(--max-width);
    margin: 0 auto 36px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.pyq-search-box {
    flex: 1;
    min-width: 280px;
}

.pyq-search-box input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.pyq-search-box input:focus {
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.pyq-select-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pyq-select {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

.pyqs-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.pyq-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--crimson);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.pyq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--gold);
}

.pyq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.pyq-dept-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    background-color: rgba(128, 0, 32, 0.1);
    color: var(--crimson);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.pyq-sem-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 6px;
}

.pyq-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pyq-course {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.pyq-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.pyq-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--crimson) 0%, #a00028 100%);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.pyq-download-btn:hover {
    background: linear-gradient(135deg, #06301e 0%, var(--crimson) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.25);
}

.pyq-empty-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-gray);
}

.admin-nav-tag {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.pyqs-count {
    color: var(--crimson);
    font-weight: 700;
}

/* ==========================================================================
   Floating "Join Team Shakti" Button Styles (Redesigned Glassmorphic Pill)
   ========================================================================== */
.floating-join-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.95) 0%, rgba(184, 20, 61, 0.95) 60%, rgba(212, 175, 55, 0.95) 100%);
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 10px 22px 10px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 30px -5px rgba(128, 0, 32, 0.5), 0 0 18px rgba(212, 175, 55, 0.3);
    border: 1.5px solid rgba(255, 235, 175, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-join-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px -5px rgba(128, 0, 32, 0.6), 0 0 25px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}

.floating-join-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    flex-shrink: 0;
}

.floating-join-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    color: #ffffff;
    white-space: nowrap;
}

.floating-pulse {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
    border: 2px solid #800020;
    animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 768px) {
    .floating-join-btn {
        bottom: 20px;
        left: 14px;
        padding: 8px 16px 8px 10px;
        font-size: 0.78rem;
        gap: 8px;
        max-width: calc(50vw - 20px);
    }
    
    .chatbot-widget {
        bottom: 20px;
        right: 14px;
    }
    
    .chatbot-trigger-btn {
        padding: 8px 16px 8px 10px;
        font-size: 0.78rem;
        gap: 8px;
        max-width: calc(50vw - 20px);
    }
}

/* ==========================================================================
   Societies of Hindu College Showcase
   ========================================================================== */
.societies-section {
    padding: 80px 24px;
    background-color: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.societies-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 36px;
    position: relative;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.societies-marquee-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

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

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

.society-card {
    flex-shrink: 0;
    width: 260px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.society-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 36px rgba(128, 0, 32, 0.18), 0 0 18px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.society-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #0d0910;
}

.society-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.society-card:hover .society-img-box img {
    transform: scale(1.06);
}

.society-card-caption {
    margin-top: 10px;
    padding: 4px 6px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Society Lightbox Modal */
.society-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.society-lightbox.hidden {
    display: none;
}

.society-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 12, 0.85);
    backdrop-filter: blur(10px);
}

.society-lightbox-content {
    position: relative;
    z-index: 2501;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--gold);
    background-color: #000;
}

.society-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.society-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(128, 0, 32, 0.85);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2502;
    transition: all 0.2s ease;
}

.society-lightbox-close:hover {
    background: var(--crimson);
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
    .societies-section {
        padding: 50px 16px;
    }

    .society-card {
        width: 200px;
        padding: 8px;
    }
}

/* ==========================================================================
   Campus Events Section (Upcoming & Past Events)
   ========================================================================== */
.events-section {
    padding: 90px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.event-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.event-tab-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-tab-btn:hover {
    color: var(--crimson);
    border-color: var(--crimson);
}

.event-tab-btn.active {
    background: linear-gradient(135deg, var(--crimson) 0%, #900020 100%);
    color: var(--text-white);
    border-color: var(--crimson);
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.25);
}

.events-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.event-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card.hidden {
    display: none !important;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.5);
}

.event-card-img-box {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #0d0910;
}

.event-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    color: transparent;
}

.event-card-img-box:hover img {
    transform: scale(1.08);
}

.event-img-zoom-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 5, 12, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.event-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.event-type-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 12px;
}

.event-type-badge.upcoming {
    background-color: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.event-type-badge.past {
    background-color: rgba(128, 0, 32, 0.12);
    color: var(--crimson);
    border: 1px solid rgba(128, 0, 32, 0.25);
}

.event-cat-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.event-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.event-meta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    background-color: var(--bg-section);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.event-date-text,
.event-loc-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date-text strong {
    color: var(--text-dark);
}

.event-card-desc {
    font-size: 0.86rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.event-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.event-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.event-action-btn.primary {
    background: linear-gradient(135deg, var(--crimson) 0%, #a00028 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.2);
}

.event-action-btn.primary:hover {
    background: linear-gradient(135deg, #a00028 0%, var(--crimson) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.35);
}

.event-action-btn.secondary {
    background-color: rgba(194, 155, 56, 0.12);
    color: var(--gold);
    border: 1px solid rgba(194, 155, 56, 0.3);
}

.event-action-btn.secondary:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.event-completed-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .events-section {
        padding: 50px 16px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ==========================================================================
   Complete Mobile & Tablet Responsiveness Enhancements
   ========================================================================== */

/* Universal Layout & Overflow Guards */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Tablet & Mobile Breakpoints (max-width: 768px) */
@media (max-width: 768px) {
    /* Section Spacing & Typography */
    .hero-section,
    .about-section,
    .societies-section,
    .events-section,
    .scholarships-section,
    .departments-section,
    .pyqs-section,
    .grievance-section,
    .mentorship-section,
    .lost-found-section,
    .join-team-section {
        padding: 40px 16px !important;
    }

    .section-main-title {
        font-size: clamp(1.4rem, 5vw, 1.85rem) !important;
        line-height: 1.25 !important;
    }

    .section-tagline {
        font-size: 0.9rem !important;
        margin-bottom: 24px !important;
    }

    /* Navigation Bar Improvements */
    .top-nav-bar {
        width: calc(100% - 16px) !important;
        left: 8px !important;
        top: 6px !important;
        padding: 8px 12px !important;
        margin: 0 auto !important;
    }

    .brand-titles {
        display: flex;
        flex-direction: column;
    }

    .shakti-brand-main {
        font-size: 0.92rem !important;
    }

    .college-subtext {
        font-size: 0.5rem !important;
        letter-spacing: 0.15em !important;
    }

    /* Menu Drawer Responsiveness */
    .menu-drawer {
        width: 100% !important;
        max-width: 100vw !important;
    }

    .drawer-inner {
        padding: 70px 20px 30px 20px !important;
    }

    .drawer-links a {
        font-size: 1.05rem !important;
        padding: 10px 0 !important;
    }

    /* Hero Section */
    .hero-container-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .hero-overtext-panel {
        padding: 24px 18px !important;
        text-align: left !important;
    }

    .hero-overtext-panel h2 {
        font-size: clamp(1.6rem, 6.5vw, 2.1rem) !important;
        line-height: 1.2 !important;
    }

    .hero-subtext {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
    }

    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }

    .img-placeholder {
        height: 280px !important;
    }

    /* Founder Card */
    .founder-profile-card {
        grid-template-columns: 1fr !important;
        padding: 20px 16px !important;
        gap: 20px !important;
    }

    .founder-photo-box {
        max-width: 240px !important;
    }

    /* Department, PYQ & Event Grids */
    .departments-grid,
    .pyqs-grid,
    .events-grid,
    .lf-items-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Filter Pill Container Touch Scroll */
    .filters-container {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 8px !important;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .filter-option {
        flex-shrink: 0 !important;
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
    }

    /* Form Fields Responsive Polish & iOS Zoom Guard */
    .form-row-rich {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .form-group-rich input,
    .form-group-rich select,
    .form-group-rich textarea,
    .pyq-search-box input,
    .pyq-select {
        font-size: 16px !important; /* Prevents auto-zoom on mobile iOS Safari */
        padding: 12px 14px !important;
        width: 100% !important;
    }

    .form-submit-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }

    /* Tables Horizontal Touch Scroll */
    .scholarships-table-wrap {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: var(--radius-md) !important;
    }

    .scholarships-table {
        min-width: 540px !important;
    }

    /* Modals & Popups */
    .lf-modal-content,
    .society-lightbox-content {
        width: 94% !important;
        max-width: 94vw !important;
        padding: 20px 16px !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
    }
}

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
    .brand-divider {
        margin: 0 6px !important;
    }

    .logo-shakti {
        height: 28px !important;
        width: 28px !important;
    }

    .logo-college {
        height: 24px !important;
        width: 24px !important;
    }

    .shakti-brand-main {
        font-size: 0.82rem !important;
    }

    .college-subtext {
        font-size: 0.45rem !important;
        letter-spacing: 0.12em !important;
    }

    .img-placeholder {
        height: 220px !important;
    }

    /* Floating Action Buttons positioning so they don't overlap */
    .floating-join-btn {
        left: 8px !important;
        bottom: 12px !important;
        padding: 8px 12px !important;
        font-size: 0.74rem !important;
        max-width: calc(48vw - 12px) !important;
        z-index: 1040 !important;
    }

    .chatbot-widget {
        right: 8px !important;
        bottom: 12px !important;
        z-index: 1040 !important;
    }

    .chatbot-trigger-btn {
        padding: 8px 14px 8px 10px !important;
    }

    .chat-btn-badge {
        font-size: 0.76rem !important;
    }

    .chatbot-window {
        right: 2px !important;
        left: 2px !important;
        width: calc(100vw - 4px) !important;
        bottom: 58px !important;
        height: calc(100vh - 70px) !important;
        max-height: 480px !important;
    }
}

/* ==========================================================================
   SHAKTI SAFETY CENTRE (SOS) PAGE STYLING
   ========================================================================== */

/* Brand & Palette Override for SOS Page */
:root {
    --sos-primary: #980043;
    --sos-primary-hover: #780034;
    --sos-light-bg: #FDF2F7;
    --sos-border: #F4C2D7;
    --sos-text-dark: #4A0E28;
}

/* Navigation Shakti Safety Button */
.nav-btn-sos {
    background: linear-gradient(135deg, #980043 0%, #7A0033 100%) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    box-shadow: 0 4px 14px rgba(152, 0, 67, 0.35) !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.nav-btn-sos span {
    white-space: nowrap !important;
    display: inline-block !important;
}

.nav-btn-sos svg {
    flex-shrink: 0 !important;
}

.nav-btn-sos:hover {
    background: linear-gradient(135deg, #7A0033 0%, #5C0026 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(152, 0, 67, 0.45);
}

/* Header Hero Banner */
.sos-hero-banner {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 50%, #F8BBD0 100%);
    border-radius: 24px;
    padding: 32px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sos-border);
    box-shadow: var(--shadow-soft);
}

.sos-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sos-hero-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 650px;
}

.sos-shield-icon-wrapper {
    width: 72px;
    height: 84px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(152, 0, 67, 0.15);
    flex-shrink: 0;
    color: var(--sos-primary);
    border: 2px solid var(--sos-border);
}

.sos-hero-titles h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sos-primary);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.sos-hero-titles h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sos-text-dark);
    margin-bottom: 8px;
}

.sos-hero-titles p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.sos-hero-illustration {
    max-width: 320px;
    height: auto;
    flex-shrink: 0;
}

/* Main Layout Grid */
.sos-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    margin-bottom: 36px;
}

/* Left Column: Send SOS Alert Card */
.sos-alert-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.sos-card-header {
    background: var(--sos-primary);
    color: #ffffff;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sos-card-header svg {
    flex-shrink: 0;
}

.sos-card-body {
    padding: 28px;
}

.sos-form-group {
    margin-bottom: 20px;
}

.sos-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sos-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: #FAFAFA;
}

.sos-input:focus {
    outline: none;
    border-color: var(--sos-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(152, 0, 67, 0.1);
}

/* Live Location Row */
.sos-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAF8F9;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px dashed var(--sos-border);
    margin-bottom: 14px;
    gap: 12px;
}

.sos-location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sos-location-status .pin-icon {
    color: var(--sos-primary);
}

.sos-status-badge {
    font-weight: 700;
    color: #D32F2F;
}

.sos-status-badge.active {
    color: #2E7D32;
}

.btn-share-location {
    background: var(--sos-light-bg);
    color: var(--sos-primary);
    border: 1.5px solid var(--sos-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-share-location:hover {
    background: var(--sos-primary);
    color: #ffffff;
}

.sos-privacy-notice {
    background: var(--sos-light-bg);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--sos-text-dark);
    margin-bottom: 20px;
    border-left: 4px solid var(--sos-primary);
}

.sos-consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.4;
}

.sos-consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sos-primary);
    margin-top: 2px;
    cursor: pointer;
}

.btn-sos-submit {
    width: 100%;
    background: var(--sos-primary);
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(152, 0, 67, 0.3);
    transition: var(--transition-smooth);
}

.btn-sos-submit:hover {
    background: var(--sos-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(152, 0, 67, 0.4);
}

.btn-sos-call {
    width: 100%;
    background: #ffffff;
    color: var(--sos-primary);
    border: 2px solid var(--sos-primary);
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-sos-call:hover {
    background: var(--sos-light-bg);
    color: var(--sos-primary-hover);
}

.sos-tip-box {
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #1B5E20;
}

.sos-tip-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Right Column Cards */
.sos-side-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sos-side-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.sos-side-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sos-primary);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 18px;
}

.sos-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sos-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed #E0E0E0;
}

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

.sos-contact-info label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.sos-contact-info span {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1D1D1D;
    letter-spacing: 0.02em;
}

.sos-call-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sos-light-bg);
    color: var(--sos-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    text-decoration: none;
}

.sos-call-icon-btn:hover {
    background: var(--sos-primary);
    color: #ffffff;
}

.sos-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sos-primary);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.sos-view-all-link:hover {
    color: var(--sos-primary-hover);
    transform: translateX(4px);
}

/* What We Do List */
.sos-what-we-do-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sos-what-we-do-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sos-what-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sos-light-bg);
    color: var(--sos-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Bottom 4 Feature Cards Grid */
.sos-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.sos-feature-card {
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sos-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sos-feature-card.purple-card {
    background: #F4EFFA;
    border-color: #E1D5F2;
}

.sos-feature-card.yellow-card {
    background: #FFF9E6;
    border-color: #FFECA8;
}

.sos-feature-card.blue-card {
    background: #EBF4FF;
    border-color: #C3E0FF;
}

.sos-feature-card.green-card {
    background: #E8F5E9;
    border-color: #C8E6C9;
}

.sos-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.purple-card .sos-feat-icon { background: #E1D5F2; color: #6B21A8; }
.yellow-card .sos-feat-icon { background: #FFECA8; color: #B45309; }
.blue-card .sos-feat-icon { background: #C3E0FF; color: #1D4ED8; }
.green-card .sos-feat-icon { background: #C8E6C9; color: #15803D; }

.sos-feature-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.purple-card h4 { color: #581C87; }
.yellow-card h4 { color: #92400E; }
.blue-card h4 { color: #1E40AF; }
.green-card h4 { color: #166534; }

.sos-feature-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.45;
    margin-bottom: 18px;
}

.sos-feat-link {
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.purple-card .sos-feat-link { color: #6B21A8; }
.yellow-card .sos-feat-link { color: #B45309; }
.blue-card .sos-feat-link { color: #1D4ED8; }
.green-card .sos-feat-link { color: #15803D; }

.sos-feat-link:hover {
    transform: translateX(4px);
}

/* Reassurance Footer Banner */
.sos-reassurance-banner {
    background: linear-gradient(135deg, #FDF2F7 0%, #FCE4EC 100%);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--sos-border);
    margin-bottom: 48px;
}

.sos-reassurance-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sos-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sos-reassurance-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--sos-primary);
    margin-bottom: 2px;
}

.sos-reassurance-text p {
    font-size: 0.88rem;
    color: var(--sos-text-dark);
}

/* Responsive adjustments for SOS layout */
@media (max-width: 992px) {
    .sos-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sos-hero-illustration {
        max-width: 100%;
        margin-top: 16px;
    }

    .sos-main-grid {
        grid-template-columns: 1fr;
    }

    .sos-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sos-hero-banner {
        padding: 24px 20px;
    }

    .sos-hero-left {
        flex-direction: column;
        gap: 14px;
    }

    .sos-hero-titles h1 {
        font-size: 1.7rem;
    }

    .sos-card-body {
        padding: 20px 16px;
    }

    .sos-feature-grid {
        grid-template-columns: 1fr;
    }

    .sos-reassurance-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}
