:root {
    --primary: #1e40af;
    /* professional blue */
    --secondary: #3b82f6;
    /* bright blue */
    --tertiary: #60a5fa;
    /* light blue */
    --accent: #0ea5e9;
    /* sky blue */
    --background: #ffffff;
    /* white background */
    --surface: #f8fafc;
    /* light blue-white */
    --surface-hover: #e0e7ff;
    /* light blue hover */
    --text: #1f2937;
    /* dark charcoal */
    --text-muted: #6b7280;
    /* muted grey */
    --glass: rgba(255, 255, 255, 0.9);
    --border: #dbeafe;
    /* light blue border */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 31, 63, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 31, 63, 0.05), transparent 25%);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--primary);
    color: black;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* override for header to push logo to very left edge */
header .container {
    padding-left: 0;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Ensure it's on top of everything */
    border-bottom: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    /* minimal padding for compact header */
}

/* branding: logo on left, text (stacked) on right */
.branding {
    display: flex;
    flex-direction: row;
    /* logo and text side-by-side */
    align-items: center;
    /* center align to middle of logo */
    gap: 8px;
    /* small gap between logo and text */
    flex-shrink: 0;
    margin-left: -20px;
    /* Push logo further to left */
}

.branding-logo {
    height: 80px;
    /* match university logo size */
    width: auto;
    flex-shrink: 0;
    /* don't shrink the logo */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.branding-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* no gap between title and subtitle */
}

.branding-title {
    font-size: 1rem;
    /* smaller for compact header */
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.branding-subtitle {
    font-size: 0.65rem;
    /* smaller for compact */
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}





/* container for the university logo on right side */
.unilogo-container {
    margin-left: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* don't let logo collapse when nav shrinks */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
    /* keep all items on one line */
}

/* wrapper that holds mobile toggle + nav; centers nav and pushes uni logo right */
.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-wrapper nav {
    flex: 1;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.8rem;
    /* slightly smaller */
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    /* minimal padding */
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* prevent breaking multi-word links */
}

nav a:hover,
nav a.active {
    color: var(--primary);
    opacity: 1;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    width: 0;
}

nav a:hover::after,
nav a.active::after {
    width: calc(100% - 16px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 20px;
    /* Reduced padding */
}

.canvas-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    overflow: hidden;
}

.hero,
.section-3d-bg,
#about,
#important-dates {
    position: relative;
    z-index: 5;
}

.hero-content,
.container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1300px;
    width: 100%;
    padding: 0 30px;
    margin-top: 20px;
    /* Reduced margin */
}

/* Glass container around hero text – now more transparent so robot/human are visible */
.hero-glass {
    display: inline-block;
    max-width: 100%;
    margin-top: 5px;
    /* tight gap between logo banner and glass card */
    padding: 22px 26px 26px;
    background: radial-gradient(circle at top, rgba(248, 250, 252, 0.38), rgba(239, 246, 255, 0.10));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero Figures */
.hero-figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 380px;
    width: auto;
    z-index: 10;
    pointer-events: none;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-figure--left {
    left: -100px;
}

.hero-figure--right {
    right: -100px;
}

@media (max-width: 1200px) {
    .hero-figure {
        display: none;
    }
}


@media (max-width: 768px) {
    .hero-glass {
        padding: 18px 18px 22px;
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    }
}






.hero h1 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.hero-content h1:first-of-type:not(.hero-title) {
    font-size: 4.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1.hero-title {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.7rem, 2.3vw, 2.4rem);
    font-weight: 600;
    color: #0b2a6f;
    letter-spacing: 0.3px;
    text-transform: none;
    text-shadow: none;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    animation: none;
    margin-bottom: 14px;
}

.hero-content h1.hero-title,
.hero-content h1.hero-title span {
    text-shadow: none !important;
    text-transform: none !important;
}

/* ── Hero Banner: 3-column logo + title row ── */
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 0px;
    /* removed gap below banner */
    width: 100%;
    position: relative;
    z-index: 20;
}

.hero-banner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.hero-rcbs-text {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 0.95;
    background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 70%, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: fadeInDown 0.8s ease-out;
    filter: drop-shadow(0 4px 16px rgba(30, 64, 175, 0.18));
}

.hero-year-text {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--secondary), #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: fadeIn 1s ease-out;
}

@media (max-width: 768px) {
    .hero-rcbs-text {
        font-size: 4.5rem;
    }

    .hero-year-text {
        font-size: 2.2rem;
    }

    .hero-banner {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-rcbs-text {
        font-size: 3.5rem;
    }

    .hero-year-text {
        font-size: 1.8rem;
    }
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 18px;
    margin-top: 110px;
    width: 100%;
    position: relative;
    z-index: 20;
    animation: fadeIn 1s ease-out;
}

.hero-logo-left,
.hero-logo-right {
    height: 165px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(30, 64, 175, 0.25));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    flex-shrink: 0;
}

.hero-logo-right {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {

    .hero-logo-left,
    .hero-logo-right {
        height: 120px;
    }
}

@media (max-width: 480px) {

    .hero-logo-left,
    .hero-logo-right {
        height: 100px;
    }
}

.hero-logo-left {
    animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-logo-right {
    animation: slideInRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-logo-left:hover,
.hero-logo-right:hover {
    transform: scale(1.12) translateY(-6px);
    filter: drop-shadow(0 18px 36px rgba(30, 64, 175, 0.45));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title span {
    display: inline-block;
    white-space: normal;
    /* allow wrapping on mobile */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* slightly better readability */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
        /* ensure title isn't too large on small mobile */
        padding: 0 10px;
    }

    .hero-glass {
        padding: 20px 15px;
    }
}


.hero p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 18px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(240, 249, 255, 0.95));
    padding: 16px 28px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
    line-height: 1.6;
}

/* Countdown Timer – compact pill style */
.countdown-container {
    margin-top: 35px;
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), #ffffff);
    border: 3px solid var(--primary);
    border-radius: 50px;
    padding: 15px 35px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    /* allow wrapping on mobile */
}

@media (max-width: 600px) {
    .countdown-container {
        padding: 10px 15px;
        border-radius: 25px;
        gap: 2px;
        display: flex;
        /* switch to flex for easier centering */
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 5px 10px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

/* Responsive tweaks for half human / half AI figure */
@media (max-width: 992px) {
    .hero-figure-inner {
        width: min(420px, 60vw);
        transform: translateY(32%);
        /* Consistent downward shift */
    }
}

@media (max-width: 768px) {
    .hero-figure {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-figure {
        display: none;
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 20px;
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
    min-width: 80px;
}

.countdown-item+.countdown-item::before {
    content: ':';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-60%);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.countdown-item:hover {
    transform: none;
    box-shadow: none;
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    line-height: 1.1;
}

.countdown-label {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-top: 4px;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border: none;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    background-color: transparent;
    /* Allow 3D background to show through */
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    backdrop-filter: blur(5px);
}

/* 3D Background Effects for Tracks, Committee & History */
.section-3d-bg {
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    z-index: 5;
}

.section-3d-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12), transparent 40%);
    animation: floatingBg 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.section-3d-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.1), transparent 50%),
        radial-gradient(circle at 0% 50%, rgba(30, 64, 175, 0.08), transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.section-3d-bg .container {
    position: relative;
    z-index: 10;
}

@keyframes floatingBg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -20px) rotate(1deg);
    }

    66% {
        transform: translate(-20px, 30px) rotate(-1deg);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 20px auto 0;
    border-radius: 3px;
}

/* ── Important Dates – Light Clean ── */
#important-dates {
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f0ff 50%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
    /* back to hidden to prevent collapse/overflow issues */
}

#important-dates::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(56, 189, 248, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

#important-dates::after {
    display: none;
}

#important-dates .section-title h2 {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#important-dates .section-title h2::after {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

#important-dates .section-title p {
    color: var(--text-muted);
}

/* 4-card row: centered, equal widths */
.dates-grid-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.dates-grid-top .date-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 200px;
    max-width: 260px;
}

.dates-grid-bottom {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.date-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(30, 64, 175, 0.10);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* coloured top band */
.date-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #38bdf8, var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
    flex-shrink: 0;
}

@keyframes shimmerBar {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.date-card-inner {
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.date-card:hover {
    transform: translateY(-12px) scale(1.04) rotateX(8deg) rotateY(-4deg);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.18), 0 0 30px rgba(59, 130, 246, 0.2);
    border-color: var(--secondary);
}

/* icon circle */
.date-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 4px;
    box-shadow: 0 6px 22px rgba(30, 64, 175, 0.35), 0 0 0 8px rgba(59, 130, 246, 0.08);
    flex-shrink: 0;
    transition: all 0.4s;
}

.date-card:hover .date-icon {
    box-shadow: 0 8px 28px rgba(30, 64, 175, 0.5), 0 0 0 12px rgba(59, 130, 246, 0.12);
    transform: scale(1.1);
}

/* vector-like icon bg at bottom of card */
.date-card-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 1;
}

.date-card:hover .date-card-icon-bg {
    opacity: 0.08;
    transform: rotate(0deg) scale(1.1);
}

.date-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    text-align: center;
    line-height: 1.2;
}

.date-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-weight: 700;
}

/* Conference Date highlight card - Transparent & Elegant */
.conference-date-card {
    background: transparent !important;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 45px rgba(30, 64, 175, 0.1);
}

.conference-date-card::before {
    display: none;
}

.conference-date-card .date-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    color: #ffffff;
}

.conference-date-card .date-val {
    font-size: 3.2rem;
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800;
    letter-spacing: -1px;
}

.conference-date-card .date-label {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.conference-date-card .date-card-icon-bg {
    opacity: 0.03;
    font-size: 14rem;
}

/* Side Figures for Important Dates */
.dates-figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 450px; /* slightly smaller to fit well */
    width: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.dates-figure--left {
    left: -220px;
}

.dates-figure--right {
    right: -220px;
}

@media (max-width: 1600px) {
    .dates-figure--left {
        left: -180px;
    }
    .dates-figure--right {
        right: -180px;
    }
}

@media (max-width: 1400px) {
    .dates-figure--left {
        left: -120px;
    }
    .dates-figure--right {
        right: -120px;
    }
}

@media (max-width: 1200px) {
    .dates-figure {
        display: none;
    }
}

/* ── Tracks Image Enhancements ── */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.track-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 380px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.08);
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15), 0 0 25px rgba(59, 130, 246, 0.1);
}

.track-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.track-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-card:hover .track-image-container img {
    transform: scale(1.1) rotate(1deg);
}

.track-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.track-card:hover .track-overlay {
    height: 230px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(59, 130, 246, 0.95));
}

.track-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: 90px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-card:hover .track-content {
    height: 230px;
}

.track-content i {
    font-size: 1.8rem;
    color: var(--primary);
    position: absolute;
    top: 15px;
    right: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--surface-hover);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.track-card:hover .track-content i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.track-card h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    transition: color 0.4s ease;
    width: calc(100% - 70px);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-card:hover h3 {
    color: #ffffff;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.track-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-card:hover p {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
    margin-top: 15px;
}

/* Committee & Members */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.member-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.2), 0 0 20px rgba(59, 130, 246, 0.15);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

.member-name {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.member-role {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-affil {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Past Conferences */
.past-conf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.past-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.past-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.15);
}

.past-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.past-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.past-card p {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

.past-card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.past-card-buttons a {
    flex: 1;
    min-width: 100px;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.past-btn-primary {
    background: var(--primary);
    color: white;
}

.past-btn-primary:hover {
    background: var(--secondary);
}

.past-btn-secondary {
    background: var(--secondary);
    color: white;
}

.past-btn-secondary:hover {
    background: var(--primary);
}

/* Partners */
.partners-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

/* Leadership hierarchy tree */
/* ── Leadership Tree – Professional 1-3 Hierarchy ── */


/* ── Leadership Showcase – New Premium Style ── */
.leadership-showcase {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.05), transparent 70%);
    position: relative;
}

.leadership-tier {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.leadership-tier:last-child {
    margin-bottom: 0;
}

/* Tier 1: Spotlight */
/* made more compact per user request */
.tier-spotlight .leader-card {
    width: 300px;
    padding: 30px;
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(30, 64, 175, 0.15);
    position: relative;
    animation: conferenceChairGlow 4s ease-in-out infinite;
}

/* Conference Chair special spotlight glow */
.tier-spotlight .leader-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), #38bdf8, var(--secondary), var(--primary));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glowBorderShimmer 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.tier-spotlight .leader-card:hover::before {
    opacity: 1;
}

/* all leader image holders should be uniform 150px */
.tier-spotlight .leader-img-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3),
        0 0 20px rgba(59, 130, 246, 0.2);
}

.tier-spotlight .leader-card:hover .leader-img-wrapper {
    box-shadow: 0 18px 45px rgba(30, 64, 175, 0.5),
        0 0 35px rgba(59, 130, 246, 0.35);
}

.tier-spotlight .leader-name {
    font-size: 1.5rem;
}

/* Tier 2: Executive */
/* slightly smaller than before */
.tier-exec .leader-card {
    width: 260px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
}

/* Tier 3: Teams (sub‑committees) */
/* enlarged per user request, animation remains unchanged */
.tier-teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.tier-teams .leader-card {
    width: 100%;
    padding: 35px;
    min-height: auto;
}

.tier-teams .leader-img-wrapper,
.tier-teams .leader-icon-wrapper {
    /* expanded to uniform 150px as requested */
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.tier-teams .leader-name {
    font-size: 1.1rem;
}

/* Card Styling */
.leader-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.leader-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.12),
        0 0 30px rgba(59, 130, 246, 0.25),
        0 0 60px rgba(14, 165, 233, 0.15);
    z-index: 20;
    animation: cardGlowPulse 2s ease-in-out infinite;
}

.leader-img-wrapper,
.leader-icon-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
    margin-bottom: 20px;
    transition: all 0.5s ease;
    width: 150px;
    height: 150px;
    animation: imageWrapperGlow 3s ease-in-out infinite;
}

.leader-card:hover .leader-img-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4),
        0 0 25px rgba(59, 130, 246, 0.3);
    animation: imageWrapperGlowIntense 1.5s ease-in-out infinite;
}

.leader-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    background: #f1f5f9;
}

.leader-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    border: 4px solid #ffffff;
    font-size: 2.5rem;
    color: var(--secondary);
}

.tier-teams .leader-icon-wrapper {
    font-size: 1.8rem;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.leader-role {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.leader-affil {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 90%;
}

/* Glowing animations for leadership cards */
@keyframes conferenceChairGlow {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(30, 64, 175, 0);
    }

    50% {
        box-shadow: 0 30px 60px rgba(30, 64, 175, 0.2),
            0 0 40px rgba(59, 130, 246, 0.15);
    }
}

@keyframes glowBorderShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardGlowPulse {

    0%,
    100% {
        box-shadow: 0 25px 50px rgba(30, 64, 175, 0.12),
            0 0 30px rgba(59, 130, 246, 0.25),
            0 0 60px rgba(14, 165, 233, 0.15);
    }

    50% {
        box-shadow: 0 25px 50px rgba(30, 64, 175, 0.18),
            0 0 40px rgba(59, 130, 246, 0.35),
            0 0 80px rgba(14, 165, 233, 0.22);
    }
}

@keyframes imageWrapperGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
    }

    50% {
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25),
            0 0 15px rgba(59, 130, 246, 0.15);
    }
}

@keyframes imageWrapperGlowIntense {

    0%,
    100% {
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4),
            0 0 25px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 15px 45px rgba(30, 64, 175, 0.5),
            0 0 35px rgba(59, 130, 246, 0.4);
    }
}

/* Tier Connection Highlights (Optional subtle lines) */
.leadership-showcase::before {
    content: '';
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 400px);
    background: linear-gradient(to bottom, var(--border), transparent);
    z-index: 1;
    opacity: 0.5;
}

@media (max-width: 768px) {

    .tier-spotlight .leader-card,
    .tier-exec .leader-card {
        width: 100%;
        max-width: 350px;
    }

    .tier-spotlight {
        transform: none;
    }
}

.partners-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 0;
    margin-top: 50px;
    position: relative;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.partners-marquee {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(30, 64, 175, 0.25));
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 0 30px;
    border-top: 2px solid var(--border);
    position: relative;
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer-credit {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .past-conf-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        flex-direction: row;
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .hero-logo-left,
    .hero-logo-right {
        height: 100px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        flex-wrap: wrap;
    }

    .hero-banner-title {
        width: 100%;
        order: 1;
        margin-bottom: 5px;
    }

    .hero-logo-left {
        order: 2;
    }

    .hero-logo-right {
        order: 3;
    }

    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #f8fafc, #eff6ff);
        backdrop-filter: blur(20px);
        padding: 30px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-bottom: 2px solid var(--border);
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* ── Panel Discussion Section Styles ── */
/* Panel Discussion Section Styles - Simplified Grid */

.panel-col-left {
    flex: 0 0 380px;
    display: flex;
}

.panel-col-right {
    flex: 1;
}

.panelists-side-grid,
.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.panel-card {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Moderator card specific */
.panel-card.moderator {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.panel-card:hover::before {
    transform: scaleX(1);
}

.panel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.15);
    border-color: var(--secondary);
}

.panel-img-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    flex-shrink: 0;
}

.panel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.panel-card:hover .panel-img-wrapper img {
    transform: scale(1.05) rotate(2deg);
}

.panel-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.panel-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.panel-card:hover .panel-badge {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3);
}

.panel-info h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.panel-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.panel-org {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .panel-columns-container {
        gap: 30px;
        padding: 0 20px;
    }

    .panel-col-left {
        flex: 0 0 320px;
    }
}

@media (max-width: 1024px) {
    .panel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 800px) {

    .panelists-side-grid,
    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .panelists-side-grid,
    .panel-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------
   ABOUT SECTION FIGURES
   ------------------------------- */

.footer-figure {
    position: absolute;
    bottom: 0;
    height: 450px;
    width: auto;
    z-index: 5;
    /* increased z-index */
    pointer-events: none;
    opacity: 0;
    filter: blur(10px);
}

.footer-figure--left {
    left: 0;
    filter: drop-shadow(0 0 30px rgba(30, 64, 175, 0.3));
}

.footer-figure--right {
    right: 0;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

@media (max-width: 1200px) {
    .footer-figure {
        display: none !important;
    }
}
