:root {
    /* New Light Theme Colors */
    --background-light: #ffffff;
    --background-cream: #f8f6f2;
    --background-dark: #000000;
    --foreground-dark: #1a1a1a;
    --foreground-light: #ffffff;

    /* Primary Colors */
    --primary: #ffd700;
    --primary-dark: #ccac00;
    --secondary: #ffb800;
    --accent: #ffe066;
    --gradient-start: #ffd700;
    --gradient-end: #ffb800;

    /* Navy for header/footer */
    --navy: #000000;
    --navy-light: #111111;
}

body {
    background: var(--background-light);
    color: var(--foreground-dark);
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

/* ====================================
   HEADING TYPOGRAPHY (Space Grotesk)
   ==================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

h1 {
    font-size: clamp(1.75rem, 8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ====================================
   BODY ELEMENT TYPOGRAPHY (Inter)
   ==================================== */

nav,
button,
a,
input,
select,
textarea,
label,
th,
td {
    font-family: 'Inter', system-ui, sans-serif;
}

/* ====================================
   FONT UTILITY CLASSES
   ==================================== */

.font-heading {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
}

.font-body {
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ====================================
   TEXT JUSTIFICATION
   ==================================== */

p {
    text-align: justify;
}

/* Override justification for centered contexts */
.text-center p,
p.text-center {
    text-align: center;
}

/* ====================================
   SECTION BACKGROUNDS
   ==================================== */

/* Light Section (White Background) */
.section-light {
    background: var(--background-light);
    color: var(--foreground-dark);
}

/* Cream Section (Off-white Background) */
.section-cream {
    background: var(--background-cream);
    color: var(--foreground-dark);
}

/* Dark Section (Navy/Black) */
.section-dark {
    background: var(--background-dark);
    color: var(--foreground-light);
}

/* ====================================
   GLASS UTILITIES (Updated for Light Theme)
   ==================================== */

.glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: #161616;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ====================================
   GRADIENT TEXT
   ==================================== */

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-dark {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   BUTTON STYLES
   ==================================== */

.btn-primary {
    background: var(--primary);
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Button variants for light backgrounds */
.btn-dark {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-dark:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ====================================
   SECTION STYLES
   ==================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* ====================================
   CARD STYLES (Updated for Light Theme)
   ==================================== */

.speaker-card,
.theme-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.speaker-card:hover,
.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

/* Dark variant for dark sections */
.speaker-card-dark,
.theme-card-dark {
    background: #1a1a1a;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.speaker-card-dark:hover,
.theme-card-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

/* ====================================
   TABLE STYLES
   ==================================== */

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.registration-table th,
.registration-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.registration-table th {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #1a1a1a;
    font-weight: 600;
}

.registration-table tr:hover {
    background: rgba(255, 215, 0, 0.08);
}

/* ====================================
   SMOOTH SCROLLING
   ==================================== */

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

/* ====================================
   SCROLL REVEAL ANIMATIONS
   ==================================== */

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

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

/* ====================================
   HERO SECTION - NEW DESIGN
   ==================================== */

.hero-image-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.hero-banner {
    background: var(--background-dark);
    padding: 3rem 0;
    text-align: center;
}

/* ====================================
   DATE BADGE (Like TIFA)
   ==================================== */

.date-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
}

.home-date-pill {
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.25);
}

.home-organizers {
    max-width: 1100px;
    margin: 0 auto;
}

.organizer-card {
    gap: 0.75rem;
}

.organizer-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.organizer-logo-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 2rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.organizer-logo {
    width: 180px;
}

.organizer-logo-seal {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.organizer-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.organizer-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.countdown-tile {
    background: rgba(20, 28, 40, 0.65);
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.08);
}

.countdown-number {
    font-size: 2.5rem;
}

.countdown-label {
    letter-spacing: 0.08em;
}

/* ====================================
   STATS SECTION (Like TIFA)
   ==================================== */

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ====================================
   AI BRAIN ICON STYLES
   ==================================== */

.ai-brain-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: brain-pulse 3s ease-in-out infinite;
}

@keyframes brain-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ====================================
   NAVBAR STYLES (Dark Navy Theme)
   ==================================== */

.navbar-dark {
    background: var(--navy);
    border-bottom: 3px solid var(--primary);
}

.navbar-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: var(--primary);
}

/* ====================================
   FLUID NAVBAR – Scales with viewport
   ==================================== */

.nav-fluid-container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: clamp(0.75rem, 2vw, 2rem);
    padding-right: clamp(0.75rem, 2vw, 2rem);
}

.nav-brand-text {
    font-size: clamp(1.25rem, 1.2vw + 0.3rem, 2rem);
}

.nav-logo-row {
    height: clamp(2.5rem, 2.6vw + 0.5rem, 4.5rem);
}

.nav-approval-text {
    font-size: clamp(0.55rem, 0.45vw + 0.15rem, 0.85rem);
}

.nav-fluid .nav-link {
    font-size: clamp(0.85rem, 0.6vw + 0.25rem, 1.15rem);
    padding-left: clamp(0.5rem, 0.7vw, 1.25rem);
    padding-right: clamp(0.5rem, 0.7vw, 1.25rem);
}

.nav-links-list {
    gap: clamp(0.15rem, 0.5vw, 0.75rem);
}

.nav-submit-btn {
    font-size: clamp(0.8rem, 0.55vw + 0.25rem, 1.1rem);
    padding: clamp(0.4rem, 0.5vw, 0.7rem) clamp(1rem, 1.5vw, 2rem);
}

.nav-fluid .dropdown-menu {
    font-size: clamp(0.8rem, 0.55vw + 0.2rem, 1.05rem);
}

.nav-fluid {
    padding-top: clamp(0.35rem, 0.5vw, 0.75rem);
    padding-bottom: clamp(0.35rem, 0.5vw, 0.75rem);
    box-shadow: none !important;
}

@media (min-width: 1400px) {
    .nav-fluid-container {
        max-width: 1360px;
    }
}

@media (min-width: 1700px) {
    .nav-fluid-container {
        max-width: 1520px;
    }
}

@media (min-width: 2000px) {
    .nav-fluid-container {
        max-width: 92vw;
    }
}

/* ====================================
   LOGO CAROUSEL (Light Theme)
   ==================================== */

.logo-card-light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-card-light:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

/* ====================================
   PARTNER CARD (Light Theme)
   ==================================== */

.partner-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.partner-card-header {
    padding: 2rem;
    background: var(--background-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

/* Dark Partner Card */
.partner-card-dark {
    background: #000000;
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Gold border for highlight */
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.partner-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
}



.partner-card-body {
    padding: 1.5rem;
}

/* ====================================
   ORGANIZER SECTION
   ==================================== */

.org-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.org-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.org-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--navy);
    color: #ffffff;
    padding: 3rem 0;
}

/* ====================================
   AWARDS
   ==================================== */

.award-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.award-card {
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2rem 2.5rem;
}

.award-card--featured {
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.award-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff4bf;
    color: #b98900;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.award-card--featured .award-title {
    color: var(--primary);
}

.award-text {
    color: #5b6472;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .award-card {
        flex-direction: column;
        padding: 1.75rem 1.75rem;
    }
}

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

.text-muted {
    color: #666666;
}

.text-muted-dark {
    color: #9ca3af;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.divider-gold {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 2rem auto;
    max-width: 200px;
}

/* ====================================
   ANIMATIONS (Simplified)
   ==================================== */

@keyframes float {

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

/* Zoom In Reveal */
.reveal.zoom-in {
    transform: scale(0.9);
}

.reveal.zoom-in.active {
    transform: scale(1);
}

/* Slide Left Reveal */
.reveal.slide-left {
    transform: translateX(-30px);
}

.reveal.slide-left.active {
    transform: translateX(0);
}

/* Slide Right Reveal */
.reveal.slide-right {
    transform: translateX(30px);
}

.reveal.slide-right.active {
    transform: translateX(0);
}

/* Hero Entrance Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* ====================================
   RESPONSIVE ADJUSTMENTS
   ==================================== */

@media (max-width: 768px) {

    .section-title,
    .section-title-light {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-image-section {
        height: 30vh;
        min-height: 200px;
    }

    .hero-banner {
        padding: 2rem 0;
    }

    .organizer-logo {
        width: 150px;
    }
}

@media (min-width: 769px) {
    .hero-image-section {
        height: 60vh;
        min-height: 400px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1360px;
    }

    .section-title,
    .section-title-light {
        margin-bottom: 3.5rem;
    }

    .hero-content-container {
        padding-top: 128px !important;
    }

    .countdown-number {
        font-size: 2.85rem;
    }

    .stat-number {
        font-size: 3.35rem;
    }

    .award-card {
        padding: 2.25rem 2.75rem;
    }
}

@media (min-width: 1700px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1520px;
    }

    h1 {
        font-size: clamp(2rem, 3.8vw, 4.25rem);
    }

    h2 {
        font-size: clamp(1.9rem, 2.7vw, 3rem);
    }

    h3 {
        font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    }

    .countdown-number {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 3.6rem;
    }

    .card-body.p-4,
    .card-body.p-5,
    .card-body.p-md-5 {
        padding: 2.5rem !important;
    }
}

/* ====================================
   ANNOUNCEMENT BANNER
   ==================================== */

.announcement-fast {
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-marquee {
    white-space: nowrap;
    will-change: transform;
    animation: announcement-left 12s linear infinite;
}

@keyframes announcement-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Remove white line separator between navbar and announcement */
#navbar-container+.w-100 {
    border-top: none !important;
    box-shadow: none !important;
    margin-top: 92px;
}

@media (max-width: 576px) {
    .announcement-fast span {
        font-size: 0.75rem !important;
        padding: 0.25rem 1rem !important;
    }
}

/* ====================================
   HOME HERO – Fluid Desktop Scaling
   ==================================== */

.home-hero-title {
    font-size: clamp(2rem, 5vw + 0.5rem, 6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: clamp(0.4rem, 1.2vh, 1rem) !important;
}

.home-hero-subtitle {
    max-width: clamp(600px, 70vw, 1400px);
    font-size: clamp(1rem, 1.6vw + 0.3rem, 2.6rem);
    line-height: 1.32;
    letter-spacing: 0.01em;
}

.home-hero-venue-text {
    font-size: clamp(0.9rem, 1vw + 0.2rem, 1.6rem);
}

.home-hero-venue {
    margin-top: clamp(0.6rem, 1.5vh, 1.5rem) !important;
    margin-bottom: clamp(0.4rem, 1vh, 1rem) !important;
}

.home-hero-stack .btn-lg {
    font-size: clamp(0.9rem, 0.8vw + 0.25rem, 1.25rem);
    padding: clamp(0.6rem, 0.8vh, 1rem) clamp(1.5rem, 2.5vw, 3.5rem);
}

.hero-content-container {
    padding-top: 120px !important;
}

@media (max-width: 991px) {
    .hero-content-container {
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    .hero-content-container {
        padding-top: 80px !important;
    }
}

/* ====================================
   HERO & UTILITY STYLES
   ==================================== */

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.group-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.group-hover:hover {
    background: var(--primary) !important;
    z-index: 10;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.group-hover:hover h3,
.group-hover:hover p,
.group-hover:hover svg,
.group-hover:hover .text-warning {
    color: #1a1a1a !important;
}

.group-hover:hover .text-white-50,
.group-hover:hover .text-secondary {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* ====================================
   COMMITTEE PAGE STYLES
   ==================================== */

.committee-heading {
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 3rem;
}

.committee-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
}

/* Marquee removed */