@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1977e6;
    --primary-dark: #0b6da7;
    --secondary: #2bd56e;
    --navy: #081b3d;
    --navy-light: #1f2b3f;
    --bg-light: #ffffff;
    --bg-soft: #f7faff;
    --border: #e7edf7;
    --text-main: #2a3854;
    --text-muted: #8a95aa;
    --shadow-sm: 0 4px 14px rgba(21, 32, 56, 0.08);
    --shadow-md: 0 10px 24px rgba(20, 42, 78, 0.12);
    --shadow-lg: 0 16px 30px rgba(44, 114, 233, 0.15);
    --font-main: 'Manrope', sans-serif;
    --max-width: 1140px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --accent: #ffb800;
}

/* Base Reveal States */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

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

html {
    scroll-behavior: initial;
    overflow-x: hidden;
}

/* Lenis Recommended CSS */
html.lenis, html.lenis body {
  height: auto;
}

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

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

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

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

/* Custom Single Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--navy);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    padding-top: 110px; /* Compansate for fixed header */
}

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

ul {
    list-style: none;
}

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

/* Faculty Grid specifically for members page */
.faculty-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.faculty-grid .team-card {
    flex: 0 0 280px;
}

@media (max-width: 640px) {
    .faculty-grid .team-card {
        flex: 1 1 100%;
        max-width: 300px;
    }
}

/* Society Title/Desc for societies page */
.society-title {
    font-size: 56px;
    font-weight: 800;
    margin-top: 16px;
}

.society-desc {
    font-size: 22px;
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-indicator {
    display: inline-block;
    font-size: 10px;
    background: var(--secondary);
    color: var(--navy);
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: 800;
    vertical-align: middle;
    animation: pulse-small 2s infinite;
}

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

@media (max-width: 768px) {
    .society-title { font-size: 36px; }
    .society-desc { font-size: 16px; }
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-light);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 10px;
}

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

/* Magnetic Button Glow Effect */
.btn-primary, .btn-secondary, .btn-primary-glow {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::before, .btn-primary-glow:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-involved {
    background: linear-gradient(90deg, #2b82ff, #195dd6);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47, 121, 237, 0.35);
    transition: var(--transition);
}

.btn-involved:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(47, 121, 237, 0.45);
}

/* Unified Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 170px 0 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(25, 119, 230, 0.05), transparent 400px),
                radial-gradient(circle at bottom left, rgba(43, 213, 110, 0.05), transparent 400px);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.hero-visual {
    display: none;
}


.hero-desc {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 15px;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    .hero-content { 
        margin: 0 auto; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-visual { display: none; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-stats-mini { justify-content: center; }
}

.badge-new {
    animation: fade-up-hero 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(43, 114, 233, 0.08);
    border: 1px solid rgba(43, 114, 233, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.dot-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 85px;
    font-weight: 850;
    line-height: 1.0;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-sub {
    display: block;
    color: var(--navy);
    opacity: 0.9;
}

/* Hero Entrance Animations */
.hero-content {
    animation: fade-up-hero 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero h1 .hero-title-main {
    animation: title-spread 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero h1 .hero-title-sub {
    animation: fade-up-hero 2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes fade-up-hero {
    0% { opacity: 0; transform: translateY(80px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes title-spread {
    0% { letter-spacing: -0.1em; filter: blur(20px); opacity: 0; transform: translateY(100px); }
    100% { letter-spacing: -0.05em; filter: blur(0); opacity: 1; transform: translateY(0); }
}

.hero-desc {
    animation: fade-up-hero 2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    opacity: 0;
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.hero-cta {
    animation: fade-up-hero 2s cubic-bezier(0.19, 1, 0.22, 1) 0.9s forwards;
    opacity: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, #2b82ff, #1149a8);
    color: white;
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(21, 73, 168, 0.25);
    transition: var(--transition);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(25, 119, 230, 0.35);
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-stats-mini {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    max-width: 600px;
}

.mini-stat {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.mini-stat span {
    display: block;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 4px;
}

/* Background Shapes */
.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float-slow 20s infinite alternate linear;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 50px;
    left: -50px;
    animation: float-slow 15s infinite alternate-reverse linear;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 100px) rotate(15deg); }
}

/* Floating Hero Highlights */
.hero-visual-highlights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.h-card {
    position: absolute;
    width: 220px;
    aspect-ratio: 4/3;
    background: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    animation: fade-up-hero 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.h-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.5s ease-in-out;
}

.h-card img.changing {
    opacity: 0;
}

.h-card-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.h-card-left-1 {
    top: 25%;
    left: 4%;
    transform: rotate(-8deg);
    animation-delay: 1.2s;
}

.h-card-left-2 {
    bottom: 10%;
    left: 8%;
    width: 180px;
    transform: rotate(5deg);
    animation-delay: 1.5s;
}

.h-card-right-1 {
    top: 30%;
    right: 4%;
    transform: rotate(10deg);
    animation-delay: 1.3s;
}

.h-card-right-2 {
    bottom: 15%;
    right: 8%;
    width: 190px;
    transform: rotate(-12deg);
    animation-delay: 1.6s;
}

@keyframes float-y {
    0% { transform: translateY(0) rotate(var(--rot)); }
    100% { transform: translateY(-30px) rotate(var(--rot)); }
}

.floating-1 {
    --rot: -8deg;
    animation: float-y 6s infinite alternate ease-in-out;
}

.h-card-left-1.floating-1 { --rot: -8deg; }
.h-card-left-2.floating-2 { --rot: 5deg; animation: float-y 5s infinite alternate-reverse ease-in-out; }
.h-card-right-1.floating-1 { --rot: 10deg; animation: float-y 7s infinite alternate ease-in-out; }
.h-card-right-2.floating-2 { --rot: -12deg; animation: float-y 5.5s infinite alternate-reverse ease-in-out; }

@media (max-width: 1200px) {
    .h-card { width: 160px; }
    .h-card-left-1 { left: 2%; }
    .h-card-right-1 { right: 2%; }
}

@media (max-width: 1024px) {
    .hero-visual-highlights { display: none; }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 40px 0 80px;
}

.stat-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    background: linear-gradient(to bottom, #ffffff, var(--bg-soft));
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover .value {
    color: var(--primary);
    transform: scale(1.1);
}

.stat-card .value {
    transition: var(--transition);
}

.stat-card .value {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-card .label {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* About Premium Section */
.about-premium {
    padding: 120px 0;
    position: relative;
    background: white;
}

/* About Split Section (Image Inspired) */
.about-split-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    background-image: 
        linear-gradient(rgba(25, 119, 230, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(25, 119, 230, 0.04) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.stats-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.s-card {
    background: white;
    padding: 40px 50px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.s-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(25, 119, 230, 0.08);
}

.s-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.s-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
}

.narrative-content h2 {
    font-size: 64px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin: 20px 0 30px;
}

.narrative-content h2 span {
    color: var(--primary);
}

.n-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--navy-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.n-desc-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .stats-vertical-stack {
        align-items: center;
    }
    .s-card {
        width: 100%;
        max-width: 400px;
    }
    .narrative-content h2 {
        font-size: 48px;
    }
}

.about-grid-layered {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-visual-side {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.about-main-img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.main-image-wrapper:hover .about-main-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 140px;
    box-shadow: 0 15px 30px rgba(43, 114, 233, 0.3);
}

.experience-badge span {
    display: block;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 4px;
}

.floating-stats {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-stat-card {
    background: white;
    padding: 24px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.f-stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.f-stat-card p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.about-content-side {
    padding-left: 20px;
}

.badge-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.about-content-side h2 {
    font-size: 64px;
    font-weight: 850;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 25px;
}

.about-content-side h2 span {
    color: var(--primary);
}

.divider-short {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 30px;
    border-radius: 2px;
}

.highlight-text {
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 25px;
}

.desc-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 17px;
}

.mini-features {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.m-feat {
    display: flex;
    gap: 15px;
}

.feat-icon {
    font-size: 24px;
    padding-top: 5px;
}

.m-feat h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}

.m-feat p {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), #1a56c0);
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(26, 86, 192, 0.3);
    transition: var(--transition);
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(26, 86, 192, 0.4);
}

/* Premium Benefits Section */
.benefits-premium {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title-alt {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-alt h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
}

.section-title-alt h2 span { color: var(--primary); }

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

.benefit-card-premium {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card-premium:hover {
    transform: translateY(-20px);
    box-shadow: 0 45px 90px rgba(15, 23, 42, 0.15);
    border-color: var(--primary);
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(25, 119, 230, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card-premium:hover::before {
    opacity: 1;
}

.benefit-card-premium:hover .benefit-icon {
    transform: translateY(-5px) scale(1.1) rotate(8deg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.benefit-icon.blue { background: rgba(43, 114, 233, 0.1); color: var(--primary); }
.benefit-icon.green { background: rgba(43, 213, 110, 0.1); color: var(--secondary); }
.benefit-icon.orange { background: rgba(255, 145, 0, 0.1); color: #ff9100; }

.benefit-card-premium h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.benefit-card-premium p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 900;
}

/* Dark Section (Events) */
.dark-section {
    background: #000d34;
    padding: 80px 0;
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 800;
}

.section-header h2 span { color: #5ea2ff; }

.section-header p {
    font-size: 26px;
    color: #8ea2cc;
    margin-top: 8px;
}

.archive-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d8e2ff;
}

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

.event-box {
    height: 350px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Standalone Ticker (for other pages) */
.standalone-ticker {
    background: white;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* Join CTA Section */
.join-cta-section {
    padding: 100px 0 0;
    background: linear-gradient(135deg, #1977e6 0%, #0b6da7 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 82px;
    font-weight: 850;
    line-height: 1;
    margin-bottom: 25px;
}

.cta-card p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-status {
    background: white;
    color: var(--primary);
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.btn-status:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Scrolling Ticker (Inside CTA) */
.join-cta-section .ticker-wrapper {
    margin-top: 80px;
    background: white;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 15s linear infinite;
}

.ticker-item {
    font-size: 16px;
    font-weight: 800;
    padding: 0 40px;
    letter-spacing: 0.05em;
    color: var(--navy);
}

.ticker-item .t-blue { color: var(--primary); }
.ticker-item .t-green { color: var(--secondary); }
.ticker-item .t-black { color: var(--navy); }

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

@media (max-width: 768px) {
    .cta-card h2 { font-size: 48px; }
    .cta-card p { font-size: 16px; }
}

/* About Page Redesign */
.about-hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(43, 114, 233, 0.05), transparent 600px);
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 82px;
    font-weight: 850;
    line-height: 1;
    color: var(--navy);
    margin: 20px 0 30px;
}

.about-hero h1 span {
    color: var(--primary);
}

.hero-subtext {
    font-size: 24px;
    color: var(--text-main);
    line-height: 1.4;
    opacity: 0.8;
}

/* Stats Premium Board */
.about-stats {
    padding: 40px 0 80px;
}

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

.p-stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.p-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 32px;
    background: var(--bg-soft);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-info p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pillars Section */
.pillars-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-centered h2 {
    font-size: 54px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 15px;
}

/* Upgraded About Page UI */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(25, 119, 230, 0.08), transparent 600px),
                radial-gradient(circle at bottom left, rgba(43, 213, 110, 0.08), transparent 600px);
    padding: 150px 0 100px;
    text-align: center;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.badge-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(43, 114, 233, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.about-hero h1 {
    font-size: 68px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero-desc-container {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    margin-top: 20px;
    text-align: left;
}

.hero-desc-container p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

.hero-desc-container p strong {
    color: var(--navy);
}

/* Stats Section Premium */
.about-stats {
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

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

.p-stat-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.p-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(25, 119, 230, 0.12);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.stat-info h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillars-section {
    padding: 120px 0;
    background: #f8fafc;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
    border-color: rgba(25, 119, 230, 0.2);
}

.pillar-num {
    font-size: 100px;
    font-weight: 950;
    color: var(--primary);
    opacity: 0.03;
    position: absolute;
    top: 30px;
    right: 50px;
}

.pillar-card h3 {
    font-size: 28px;
    font-weight: 850;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
}

.pillar-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.pillar-card p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Professional Journey Timeline --- */
.journey-section-box {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
}

.journey-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #cbd5e1;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 80px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--primary);
    top: 30px;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 0 0 6px white;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-item:hover::after {
    transform: scale(1.4);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(25, 119, 230, 0.4);
}

.timeline-content {
    padding: 45px;
    background: #f1f5f9;
    position: relative;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: left;
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 119, 230, 0.08);
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 25px;
}

.t-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 24px;
}

.timeline-item.left .t-icon-box { margin-left: auto; }

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; }
    .timeline-item.left { text-align: left !important; }
    .timeline-item::after { left: 21px; right: auto; }
    .timeline-item.right { left: 0%; }
    .timeline-content { text-align: left !important; }
    .timeline-item.left .t-icon-box { margin-left: 0; }
}

.journey-desc {
    font-size: 22px;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Section Upgraded */
.team-section {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom, #fcfdfe, #f4f8ff);
}

.section-title-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-centered h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    margin: 15px 0;
}

.section-title-centered h2 span {
    color: var(--primary);
}

.centered-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(25, 119, 230, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 60px;
}

.section-title-row h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.count-badge {
    height: 44px;
    width: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(25, 119, 230, 0.25);
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 32px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    z-index: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(circle at center, rgba(25, 119, 230, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(25, 119, 230, 0.15);
    border-color: var(--primary);
}

.team-img-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
    padding: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Dashed Border Animation */
.team-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px dashed var(--primary);
    animation: rotateTeamBorder 15s linear infinite;
    opacity: 0.4;
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper::before {
    animation-duration: 5s;
    opacity: 1;
    border-style: solid;
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.05);
}

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

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

.team-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
}

.team-card .role {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: #fff;
    line-height: 1.5;
}

.team-card .tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 8px;
}

/* Member Social Actions */
.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    opacity: 0.8;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 119, 230, 0.1);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(25, 119, 230, 0.3);
}

/* Contact Styles */
.contact-section {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px -15px rgba(7, 26, 58, 0.1);
}

.contact-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-box h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

.info-box h1 span { color: #111f8a; }

.address-list {
    margin-top: 32px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #2d3d59;
    margin-bottom: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #111f8a;
    border-radius: 50%;
}

.contact-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111f8a;
    letter-spacing: 0.1em;
}

.meta-item p {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 6px;
    overflow-wrap: break-word;
}

.meta-item p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.meta-item p a:hover {
    color: var(--primary);
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 80px auto 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #dce6f7;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(25, 119, 230, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Event Styles */
.event-section {
    padding: 120px 0 80px;
    text-align: center;
    background: #fbfdff;
}

.event-section h1 {
    font-size: 82px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.event-section h1 span { color: var(--primary); }

.event-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 60px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: #111;
    color: white;
    border-color: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Home Page Event Highlights */
.events-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-event-card {
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 13, 52, 0.95), rgba(0, 13, 52, 0) 60%);
    transition: var(--transition);
    z-index: 1;
}

.home-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.home-event-card:hover::before {
    background: linear-gradient(to top, rgba(0, 13, 52, 1), rgba(0, 13, 52, 0.4));
}

.home-event-card .card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    transition: var(--transition);
}

.home-event-card:hover .card-content {
    transform: translateY(-10px);
}

.event-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* wider cards */
    gap: 40px;
}

.event-card {
    height: 380px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: scale(1.02);
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.event-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: var(--navy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
    border: none;
    cursor: pointer;
}

.event-arrow:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.event-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-gallery {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
}

.btn-gallery:hover {
    background: rgba(255,255,255,0.2);
}

.btn-gallery i {
    font-size: 18px;
}

/* Society Styles */
.society-section {
    padding: 120px 0 80px;
    background: #fcfdfe;
}

.society-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.society-card {
    background: white;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.society-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.society-logo-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.society-logo-box img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.society-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.society-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.badge-chair {
    background: #f1f5f9;
    color: #475569;
}

.badge-faculty {
    background: #f0fdf4;
    color: #166534;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-chair .badge-dot { background: #64748b; }
.badge-faculty .badge-dot { background: #22c55e; }

.society-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsive Overrides --- */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .hero h1 { font-size: 80px; }
    .about-grid-layered { gap: 40px; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 70px; }
    .stats-premium-grid, .society-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid-layered { grid-template-columns: 1fr; }
    .about-content-side { padding-left: 0; text-align: center; }
    .divider-short { margin: 0 auto 30px; }
    .mini-features { justify-content: center; }
    .benefits-grid-new { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: 1fr; }
    .about-visual-side { max-width: 600px; margin: 0 auto 50px; }
    .floating-stats { left: -20px; }
    .event-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { height: 70px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1000;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero { padding: 80px 0 50px; }
    .hero h1 { font-size: 48px; }
    .hero-desc { font-size: 18px; line-height: 1.3; }
    .hero-cta { flex-direction: column; gap: 12px; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; padding: 14px 30px; font-size: 16px; }
    .hero-stats-mini { gap: 20px; flex-wrap: wrap; padding-top: 30px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card .value { font-size: 32px; }
    
    .about-content-side h2 { font-size: 36px; }
    .highlight-text { font-size: 18px; }
    .section-title-alt h2 { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    .section-header { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
    
    .about-hero h1 { font-size: 42px; }
    .hero-subtext { font-size: 16px; }
    
    .journey-section-box { padding: 40px 0; }
    .journey-title { font-size: 38px; }
    .journey-desc { font-size: 16px; }

    .timeline::after { left: 50%; }
    .timeline-item { width: 100%; padding: 40px 0; text-align: center; margin-bottom: 0; }
    .timeline-item::after { left: 50%; top: 0; transform: translate(-50%, -50%); }
    .timeline-item.left, .timeline-item.right { text-align: center; padding-left: 0; padding-right: 0; }
    .timeline-item.left::after { left: 50%; }
    .timeline-content { width: 100%; max-width: 400px; margin: 10px auto 0; padding: 30px 20px; }
    .timeline-year { margin-bottom: 10px; }
    .t-icon { margin-bottom: 10px; margin-left: auto; margin-right: auto; }
    
    .contact-grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .info-box h1 { font-size: 32px; }
    .info-box .contact-card { padding: 25px; }
    .contact-meta { flex-direction: column; gap: 25px; }
    .reveal div[style*="min-height: 600px"] { min-height: 400px !important; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .count-badge { width: 30px; height: 30px; font-size: 12px; }
    .society-grid { grid-template-columns: 1fr; }
    .event-grid-3 { grid-template-columns: 1fr; }
    
    .faculty-grid .team-card { flex: 1 1 calc(50% - 20px); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 38px; }
    .hero-desc { font-size: 16px; }
    .stats-grid, .benefits-grid-new, .stats-premium-grid, .events-grid-premium, .event-grid-3, .team-grid { grid-template-columns: 1fr; }
    .experience-badge { width: 100px; padding: 12px; right: 12px; bottom: 12px; }
    .experience-badge span { font-size: 24px; }
    .floating-stats { display: none; }
    .mini-features { flex-direction: column; align-items: flex-start; text-align: left; gap: 25px; }
    .benefit-card-premium { padding: 30px 20px; }
    .pillar-card { padding: 30px; }
    .pillar-num { font-size: 60px; top: 10px; right: 20px; }
    
    .event-section h1 { font-size: 48px; }
    .event-card { height: 400px; }
    .event-filters { flex-wrap: wrap; gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
}

/* --- Premium Footer --- */
.main-footer {
    position: relative;
    background: #050a1a;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
    margin-top: 0;
}

.waves-container {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

.footer-content {
    background: #050a1a;
    padding: 60px 0 30px;
}

.footer-content .container {
    max-width: 1000px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-badge {
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 2px;
    background: var(--primary);
}

.footer-logo {
    height: 60px;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    object-fit: contain;
}

.info-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-links {
    padding: 0;
    list-style: none;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a::before {
    content: '→';
    font-size: 12px;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    stroke-width: 2.5px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-watermark {
    margin: 20px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.footer-watermark a {
    color: var(--primary);
    text-decoration: none;
    margin-left: 6px;
    transition: var(--transition);
    position: relative;
}

.footer-watermark a:hover {
    color: white;
}

.footer-watermark a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: white;
    transition: var(--transition);
}

.footer-watermark a:hover::after {
    width: 100%;
}

/* Bottom Bar Redesign */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.bottom-links a:hover {
    color: white;
}
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    background: var(--accent);
    color: #050a1a;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.newsletter-form button:hover {
    background: #fff;
    color: var(--accent);
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    text-decoration: none;
}

.bottom-links a:hover {
    color: #fff;
}

/* Responsiveness for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* --- Society Details Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 26, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start; /* Changed from center to allow scroll from top */
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: white;
    width: 100%;
    max-width: 850px;
    border-radius: 40px;
    padding: 0;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 30px 100px rgba(0,0,0,0.4);
    margin-bottom: 40px; /* Space at bottom of scroll */
}

.modal-scroll-area {
    padding: 60px;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 100;
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.modal-logo {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-title-box h2 {
    font-size: 38px;
    font-weight: 850;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 12px;
}

.modal-body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-main);
}

.modal-body strong {
    color: var(--primary);
}

.focus-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-light);
}

.focus-item i {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .modal-card { padding: 40px 25px; }
    .modal-header { flex-direction: column; text-align: center; gap: 20px; }
    .modal-logo { margin: 0 auto; }
    .modal-title-box h2 { font-size: 28px; }
    .focus-list { grid-template-columns: 1fr; }
}

/* Media Coverage Section Styles */
.media-coverage-section {
    padding: 120px 0;
    background: #f8fafc;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-centered h2 {
    font-size: 56px;
    font-weight: 850;
    color: var(--navy);
    line-height: 1.1;
    margin-top: 15px;
}

.section-title-centered h2 span {
    color: var(--primary);
}

.eyebrow {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
}

.section-desc {
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.media-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.12);
    border-color: rgba(25, 119, 230, 0.2);
}

.media-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e2e8f0;
}

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

.media-card:hover .media-img-wrapper img {
    transform: scale(1.05);
}

.media-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.media-info {
    padding: 40px;
}

.media-info h3 {
    font-size: 26px;
    font-weight: 850;
    color: var(--navy);
    margin-bottom: 15px;
}

.media-info p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .media-grid { 
        grid-template-columns: 1fr; 
        max-width: 600px; 
        margin-left: auto; 
        margin-right: auto; 
    }
    .section-title-centered h2 { font-size: 42px; }
}
