﻿/* 
   Theme: Vitality & Precision (Medical)
   Colors: Medical Blue, Teal, White, Light Gray
   Font: Plus Jakarta Sans
*/

:root {
    --bg-light: #fdfdfe;
    --bg-white: #ffffff;
    --primary-color: #0284c7;
    /* Sky Blue 600 */
    --primary-dark: #0369a1;
    --secondary-color: #14b8a6;
    /* Teal 500 */
    --accent-color: #0ea5e9;
    /* Sky 500 */
    --text-dark: #0f172a;
    --text-muted: #64748b;

    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 20px 50px -10px rgba(2, 132, 199, 0.1);

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -100px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-highlight {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Header */
/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
}

.logo-img {
    height: 90px;
    /* Increased size as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: none;
    /* Make white for transparent navbar */
}

.navbar.scrolled .logo-img {
    filter: none;
    /* Original colors on scrolled white navbar */
    height: 75px;
    /* Slightly smaller on scroll */
}

/* 
.logo-icon, .logo-text, .brand, .year styles can remain or be removed, 
but since HTML is changing they won't affect the new img 
*/

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Dropdown Styles */
.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: #0f172a;
}

/* Multi-layered Hero Background & Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.7) 0%,
            rgba(15, 23, 42, 0.4) 50%,
            rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: glowPulse 10s infinite alternate;
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-shapes .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morph 20s linear infinite;
}

.s-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-duration: 25s !important;
}

.s-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 15%;
    animation-duration: 18s !important;
}

.s-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 40%;
    opacity: 0.3;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) translate(0, 0);
    }

    33% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(120deg) translate(20px, 30px);
    }

    66% {
        border-radius: 33% 67% 58% 42% / 63% 36% 64% 37%;
        transform: rotate(240deg) translate(-20px, -10px);
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(360deg) translate(0, 0);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-details {
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 20;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.title-top {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    /* First letter caps rest small */
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.title-main {
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    font-size: 0.9em;
    display: inline;
}

.text-highlight {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 500;
    white-space: nowrap;
}

.hero-details {
    display: flex;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 40px 0;
}

.center-text {
    text-align: center;
}

.section-header {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 10px;
}

.section-desc {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    position: relative;
    overflow: visible;
    /* Allow glow to peek out */
}

.about-container {
    position: relative;
    z-index: 1;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, rgba(20, 184, 166, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.content-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 70px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.05),
        inset 0 0 40px rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.content-panel:hover {
    transform: translateY(-5px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.8);
    border-color: rgba(2, 132, 199, 0.2);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 2.8rem;
    color: #034468;
    margin-bottom: 25px !important;
    text-align: left;
    font-weight: 800;
}

.about-paragraphs p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
    hyphens: auto;
}

.about-cta-pill {
    margin-top: 35px;
    text-align: left;
}

.btn-pill-teal {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pill-teal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.35);
    color: white;
}

.stat-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card-white {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card-white:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stat-card-white i {
    font-size: 2.2rem;
    color: #0d9488;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #034468;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-tag {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-list li {
    margin: 0;
    padding: 15px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.feature-list li:hover {
    background: rgba(2, 132, 199, 0.1);
    transform: translateY(-2px);
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.col-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* About Decorative Elements */
.about-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decor-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.05;
    font-size: 4rem;
    animation: float 10s infinite ease-in-out;
}

.d-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.d-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: -3s;
    font-size: 5rem;
}

.d-3 {
    top: 40%;
    right: 5%;
    animation-delay: -6s;
    opacity: 0.03;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(2, 132, 199, 0.05);
    border: 1px solid rgba(2, 132, 199, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.2);
}

.feature-badge i {
    font-size: 1rem;
}

.about-passage {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-cta {
    margin-top: 2.5rem;
}

.about-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-cta .btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.35);
}

/* --- Scientific Tracks Section: Premium Medical Theme --- */
.tracks-section {
    position: relative;
    padding: 60px 0;
    background: radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
        #ffffff;
    overflow: hidden;
}

/* Glass-like background pattern */
.tracks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

/* --- Tracks: Modern Academic Cards --- */
.tracks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.track-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1);
    border-color: rgba(2, 132, 199, 0.2);
}

.track-id {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.4;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.track-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.track-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.3px;
}

.track-topics {
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
    flex-grow: 1;
    list-style: none;
    margin: 0;
}

.track-topics li {
    margin-bottom: 15px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
    transition: color 0.3s;
}

.track-card:hover .track-topics li {
    color: #1e293b;
}

.track-topics li::before {
    content: "\f058";
    /* FontAwesome circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: transform 0.3s;
}

.track-card:hover .track-topics li::before {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive adjustments for tracks */
@media (min-width: 1201px) {
    .track-card {
        flex: 0 1 calc(25% - 18.75px);
        min-width: 250px;
    }
}

@media (max-width: 1200px) {
    .track-card {
        flex: 0 1 calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    .track-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .track-card {
        flex: 0 1 100%;
    }
}

/* --- Important Dates: Holographic Calendar Cards --- */
.dates-section {
    background: #fdfdfe;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.dates-section::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    top: -400px;
    right: -200px;
    filter: blur(100px);
    pointer-events: none;
}

.dates-grid-premium {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.date-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.date-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.date-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.12);
    border-color: rgba(2, 132, 199, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.date-card-premium:hover .card-glow {
    opacity: 1;
}

.date-box {
    margin-bottom: 25px;
    position: relative;
}

.date-day {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.date-month-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.date-title-box {
    padding-top: 20px;
    border-top: 1px dashed rgba(2, 132, 199, 0.2);
}

.date-title-box h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.date-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(2, 132, 199, 0.05);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-card-premium:nth-child(2) .date-status {
    background: rgba(20, 184, 166, 0.05);
    color: var(--secondary-color);
}

.date-card-premium:nth-child(3) .date-status {
    background: rgba(14, 165, 233, 0.05);
    color: var(--accent-color);
}

.date-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(2, 132, 199, 0.1);
    transition: all 0.5s;
}

.date-card-premium:hover .date-icon {
    color: var(--primary-color);
    transform: scale(1.2) rotate(15deg);
}

/* Response adjustments for Dates */
@media (max-width: 768px) {
    .date-card-premium {
        width: 100%;
        max-width: 400px;
    }
}

/* Venue Section */
.venue-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.venue-info-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.venue-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.venue-card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(2, 132, 199, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.venue-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.venue-detail-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.v-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.v-detail-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 3px;
}

.v-detail-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.v-detail-item p {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.venue-cta {
    margin-top: 35px;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.4s ease;
}

.map-card:hover {
    transform: translateY(-5px);
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .venue-grid {
        grid-template-columns: 1fr;
    }

    .venue-info-card {
        padding: 30px;
    }
}

/* Footer */
.footer-section {
    background: #0f172a;
    /* Dark Navy for Footer */
    padding: 70px 0 30px;
    color: #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-desc {
    color: #94a3b8;
    margin: 20px 0 30px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    align-items: flex-start;
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-section .logo,
.footer-section .logo-text,
.footer-section .brand {
    color: #ffffff !important;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #64748b;
    font-size: 0.9rem;
}

/* Animation Utilities */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 900px) {

    /* Changed Breakpoint for Nav */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        padding: 15px 30px;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border: none;
        background: #f8fafc;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-details {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .content-panel .row {
        grid-template-columns: 1fr;
    }

    .col-stats {
        margin-top: 30px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Fees Section */
.fees-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fees-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent);
    filter: blur(80px);
}

.fees-table-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.fees-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.fees-table th {
    background: #f8fafc;
    padding: 20px 25px;
    font-weight: 700;
    color: #034468;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.fees-table td {
    padding: 20px 25px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
}

.fees-table tr:last-child td {
    border-bottom: none;
}

.fees-table .category-cell {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.1rem;
    background: #fcfdfe;
}

.fees-table .price-cell {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.fees-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--secondary-color);
}

.info-item i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.info-item p {
    margin: 0;
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
}

.fees-cta-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 20px;
}

.fees-cta-box h3 {
    margin-bottom: 15px;
    color: #034468;
}

.fees-cta-box p {
    color: #64748b;
    margin-bottom: 25px;
}

@media (max-width: 900px) {
    .fees-table-card {
        padding: 30px 20px;
        margin-top: -40px;
    }

    .fees-hero {
        padding: 140px 0 80px;
    }
}

/* ========================================
   Important Dates Table Section
   ======================================== */

.dates-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dates-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-header-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
}

.table-header-banner i {
    font-size: 1.8rem;
}

.table-header-banner span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dates-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.dates-table thead {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.dates-table thead tr {
    border-bottom: 2px solid var(--primary-color);
}

.dates-table th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dates-table th.col-icon {
    width: 80px;
    text-align: center;
}

.dates-table th.col-event {
    width: 40%;
}

.dates-table th.col-date {
    width: 25%;
}

.dates-table th.col-status {
    width: 20%;
    text-align: center;
}

.dates-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dates-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.03) 0%, rgba(20, 184, 166, 0.03) 100%);
    transform: translateX(5px);
}

.dates-table tbody tr:last-child {
    border-bottom: none;
}

.dates-table tbody tr.table-row-active {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.dates-table tbody tr.table-row-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

.dates-table td {
    padding: 25px;
}

/* Icon Cell */
.icon-cell {
    text-align: center;
}

.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.icon-badge i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.badge-upcoming {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.badge-deadline {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.badge-notification {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.badge-conference {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Event Cell */
.event-cell {
    padding-left: 15px;
}

.event-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Date Cell */
.date-cell {
    padding-left: 20px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    min-width: 60px;
}

.date-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Status Cell */
.status-cell {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge i {
    font-size: 0.9rem;
}

.status-active {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #0369a1;
    border: 2px solid #0ea5e9;
}

.status-upcoming {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    color: #0f766e;
    border: 2px solid #14b8a6;
}

.status-deadline {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #9a3412;
    border: 2px solid #f59e0b;
}

.status-pending {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
    color: #6b21a8;
    border: 2px solid #a855f7;
}

.status-conference {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 2px solid #fbbf24;
}

/* Responsive Design */
@media (max-width: 900px) {
    .dates-table-wrapper {
        border-radius: 16px;
    }

    .table-header-banner {
        padding: 20px 25px;
    }

    .table-header-banner span {
        font-size: 1.2rem;
    }

    .dates-table th,
    .dates-table td {
        padding: 15px 12px;
        font-size: 0.85rem;
    }

    .icon-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .event-name {
        font-size: 0.95rem;
    }

    .event-desc {
        font-size: 0.8rem;
    }

    .date-number {
        font-size: 1.8rem;
        min-width: 45px;
    }

    .date-text {
        font-size: 0.85rem;
    }

    .status-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dates-table {
        display: block;
        overflow-x: auto;
    }

    .dates-table thead {
        display: none;
    }

    .dates-table tbody,
    .dates-table tr,
    .dates-table td {
        display: block;
        width: 100%;
    }

    .dates-table tbody tr {
        margin-bottom: 25px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 20px;
        background: white;
    }

    .dates-table tbody tr.table-row-highlight {
        border: 2px solid #fbbf24;
    }

    .icon-cell {
        text-align: left;
        margin-bottom: 15px;
    }

    .event-cell,
    .date-cell,
    .status-cell {
        padding: 10px 0;
        text-align: left;
    }

    .date-display {
        justify-content: flex-start;
    }

    .status-badge {
        display: inline-flex;
        margin-top: 10px;
    }
}

/* =================================================================
   Mobile Responsiveness Enhancements
   ================================================================= */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    /* Index - About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-right {
        order: 0;
    }

    /* Index - Tracks Section */
    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Index - Venue Section */
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Global Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile Landscape / Small Tablet (max-width: 768px) */
@media (max-width: 768px) {

    /* Navbar Mobile Menu */
    .navbar .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar .nav-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        /* Ensure above everything */
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        color: #0f172a !important;
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown Handling on Mobile */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
        /* Disable hover on mobile */
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        padding-left: 15px;
        width: 100%;
        display: none;
        /* Hidden by default */
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8fafc;
        border-radius: 8px;
        margin-top: 5px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        animation: none;
    }

    /* Hero Type */
    .hero-title {
        font-size: 2.2rem;
    }

    .title-top {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .hero-shapes,
    .hero-glow {
        opacity: 0.5;
    }

    /* Index - Stats */
    .stat-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Index - Tracks */
    .tracks-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Tables need scroll */
    .dates-table-wrapper,
    .fees-table-wrapper {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.05);
    }

    .dates-table,
    .fees-table {
        min-width: 600px;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats */
    .stat-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    /* Specific Pages */
    .accommodation-title,
    .tourism-title,
    .sponsorship-title,
    .committee-title {
        font-size: 2rem !important;
    }

    .accommodation-subtitle,
    .sponsorship-subtitle,
    .hero-subtitle {
        font-size: 1rem;
    }

    /* Fix sticky navigation bar height/padding if needed */
    .navbar {
        padding: 15px 0;
    }

    /* Fees table */
    .fees-table th,
    .fees-table td {
        white-space: nowrap;
        padding: 12px;
    }
}