/* =========================================
   DESIGN SYSTEM & VARIABLES
========================================= */
:root {
    /* Base Color Tokens */
    --primary-h: 339;
    --primary-s: 55%;
    --primary-l: 37%;
    --primary-color: #912a4e;
    --secondary-color: #6e1b38;
    --accent-color: #fdf2f8;
    --text-color: #1a0a0f;
    --label-color: #4b1a2a;
    --border-color: #912a4e;
    --bg-light: #fff5f7;
    --white: #ffffff;
    --required-color: #e11d48;
    --summary-bg: #1e293b;

    /* Semantic Mappings */
    --primary: var(--primary-color);
    --primary-light: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) + 10%));
    --primary-dark: var(--secondary-color);
    --secondary: var(--secondary-color);
    --accent: var(--accent-color);

    --bg-white: var(--white);
    --bg-dark: var(--summary-bg);

    --text-main: var(--text-color);
    --text-muted: var(--label-color);
    --text-light: var(--white);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(145, 42, 78, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(145, 42, 78, 0.1);

    --glass-bg-dark: rgba(30, 41, 59, 0.7);

    /* Shadows & Borders */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 16px;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --section-pad: 5rem 2rem;

    /* Transitions & Animations */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Layout */
    --max-width: 1200px;
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 10px auto 3rem;
    border-radius: 2px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 15px rgba(145, 42, 78, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(145, 42, 78, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* =========================================
   NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
}

.brand-logo span {
    color: var(--accent);
}

.navbar.scrolled .brand-logo {
    color: var(--primary-dark);
}

.navbar.scrolled .brand-logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.navbar.scrolled .nav-cta {
    background: var(--secondary);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(145, 42, 78, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--primary-dark);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/Banner.png') center right/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 10, 15, 0.95) 0%, rgba(26, 10, 15, 0.7) 45%, transparent 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    color: var(--text-light);
}

.badge {
    display: inline-block;
    background: rgba(145, 42, 78, 0.45);
    /* Primary color with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(145, 42, 78, 0.8);
    box-shadow: 0 8px 32px 0 rgba(145, 42, 78, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--accent);
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 100%;
}

.event-details {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    background: rgba(145, 42, 78, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(145, 42, 78, 0.8);
    box-shadow: 0 8px 32px 0 rgba(145, 42, 78, 0.3);
}

.detail-item i {
    color: var(--accent);
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator a {
    color: var(--text-light);
    font-size: 1.5rem;
    opacity: 0.7;
}

.scroll-indicator a:hover {
    opacity: 1;
}

/* Hero Faculty Grid */
.hero-faculty-info {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.hero-faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    text-align: center;
}

.faculty-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.faculty-mini-card:hover {
    transform: translateY(-5px);
}

.mini-card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    overflow: hidden;
    margin-bottom: 0.8rem;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mini-card-img::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

.mini-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.faculty-mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faculty-mini-card p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-faculty-info {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .event-details {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
        gap: 1.5rem;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        color: var(--text-main) !important;
        font-size: 1.2rem;
    }

    .navbar {
        background: var(--bg-white);
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .brand-logo,
    .menu-toggle {
        color: var(--primary-dark) !important;
    }

    .brand-logo span {
        color: var(--primary) !important;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(26, 10, 15, 0.95) 0%, rgba(26, 10, 15, 0.6) 100%);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .event-details {
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-faculty-grid {
        gap: 1.2rem 0.8rem;
    }

    .mini-card-img {
        width: 100px;
        height: 100px;
    }

    .faculty-mini-card h4 {
        font-size: 0.85rem;
    }
}

/* Mobile Small */
@media screen and (max-width: 425px) {
    .hero {
        background: url('images/mobile_banner.png') center/cover no-repeat;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(26, 10, 15, 0.4) 0%, rgba(26, 10, 15, 0.8) 100%);
    }
}

/* =========================================
   UTILITIES
========================================= */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-left::after {
    margin-left: 0 !important;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 4rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.bg-light {
    background-color: var(--bg-white);
}

.rounded-img {
    border-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
    padding: var(--section-pad);
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23912a4e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(145, 42, 78, 0.3);
    border: 4px solid var(--bg-light);
    z-index: 2;
}

.experience-badge .num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(145, 42, 78, 0.1);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   HIGHLIGHTS SECTION (GRID)
========================================= */
.highlights-section {
    padding: var(--section-pad);
    background-color: var(--white);
    background-image: radial-gradient(rgba(145, 42, 78, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
}

.highlights-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card-alt {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(145, 42, 78, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card-alt:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(145, 42, 78, 0.25);
}

.highlight-card-alt:hover::before {
    opacity: 1;
}

.highlight-icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s ease,
        color 0.3s ease;
    position: relative;
    z-index: 2;
}

.highlight-icon-box i {
    color: var(--primary);
    transition: color 0.3s ease;
}

.highlight-card-alt:hover .highlight-icon-box {
    transform: scale(1.2) rotate(10deg);
    background: var(--primary);
}

.highlight-card-alt:hover .highlight-icon-box i {
    color: var(--white);
}

.highlight-card-alt h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.highlight-card-alt p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.highlight-card-alt:hover h3 {
    transform: translateY(-5px);
}

.highlight-card-alt:hover p {
    transform: translateY(-3px);
}

/* =========================================
   FACULTY SECTION
========================================= */
.faculty-section {
    padding: var(--section-pad);
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23912a4e' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.faculty-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faculty-img {
    position: relative;
    overflow: hidden;
    height: 350px;
    background-color: var(--white);
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: var(--transition-smooth);
}

.faculty-card:hover .faculty-img img {
    transform: scale(1.05);
}

.faculty-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 1rem;
    transition: var(--transition-smooth);
}

.faculty-card:hover .faculty-social {
    bottom: 0;
}

.faculty-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.faculty-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.faculty-info {
    padding: 2rem;
}

.faculty-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.faculty-info .role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.faculty-info .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faculty-info .bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.online-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Online Ribbon for Faculty */

.national-faculty {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faculty-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faculty-pills span {
    background: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

/* /* =========================================
   COMMITTEE SECTION (REFINED)
========================================= */
.committee-section {
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.patron-row {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.committee-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.committee-card-alt {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.committee-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.committee-card-alt .position {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.committee-card-alt h4 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.committee-img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(145, 42, 78, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    background: var(--bg-light);
}

.committee-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.committee-card-alt:hover .committee-img-container {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(145, 42, 78, 0.2);
}

.committee-card-alt:hover .committee-img-container img {
    transform: scale(1.1);
}

/* Compact variant for larger grids */
.committee-card-sm {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.committee-card-sm:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.committee-card-sm .committee-img-container {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.committee-card-sm h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
}

.committee-card-sm .position {
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    margin-bottom: 0.8rem;
}

.committee-card-sm .dept {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.committee-grid-sm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.coord-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.secretary-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.secretary-row .committee-card-sm {
    width: 250px;
}

.committee-section .subsection-title {
    text-align: center;
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
}

.committee-card-alt p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.advisory-board-container {
    background: rgba(145, 42, 78, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.board-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.board-grid span {
    background: var(--bg-white);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.coordinators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coord-item {
    text-align: center;
}

.coord-item h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coord-item p {
    color: var(--text-main);
    font-weight: 500;
}

/* =========================================
   REGISTRATION PACKAGES
========================================= */
.registration-section {
    padding: var(--section-pad);
    background-color: var(--white);
    background-image: repeating-linear-gradient(45deg, rgba(145, 42, 78, 0.02) 0, rgba(145, 42, 78, 0.02) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}

/* Registration Card */
.registration-card {
    display: flex;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1050px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    position: relative;
}

.reg-card-content {
    flex: 1.2;
    padding: 3rem 4rem; /* Reduced vertical padding */
    color: var(--text-main);
    text-align: left;
}

.reg-card-title {
    font-size: 2.2rem; /* Slightly smaller for compactness */
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.2rem; /* Reduced margin */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.reg-card-description {
    font-size: 1rem; /* Slightly smaller */
    line-height: 1.6;
    margin-bottom: 1.8rem; /* Reduced margin */
    color: var(--text-muted);
}

.reg-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem; /* Reduced margin */
}

.reg-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem; /* Reduced margin */
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.reg-card-features i {
    color: var(--white);
    background: var(--primary);
    width: 28px; /* Slightly smaller */
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(145, 42, 78, 0.2);
    flex-shrink: 0;
}

.reg-card-actions {
    display: flex;
}

.reg-card-actions .btn-primary {
    background: var(--primary);
    border: none;
    padding: 1rem 2.5rem; /* Slightly more compact */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(145, 42, 78, 0.2);
    color: var(--white);
}

.reg-card-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(145, 42, 78, 0.3);
}

.reg-card-qr {
    background: var(--bg-light);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--glass-border);
}

.qr-frame {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.qr-frame:hover {
    transform: translateY(-5px) scale(1.02);
}

.qr-frame img {
    width: 150px; /* Smaller QR code */
    height: 150px;
    display: block;
    border-radius: 6px;
}

.qr-label {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.registration-info-box {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.price-table-container {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.price-table th {
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th small {
    display: block;
    font-weight: 400;
    opacity: 0.9;
    font-size: 0.75rem;
    margin-top: 4px;
}

.price-table td {
    padding: 1rem;
    border: 1px solid var(--glass-border);
    vertical-align: middle;
    text-align: center;
    color: var(--text-main);
    font-size: 0.95rem;
}

.price-table td[rowspan] {
    background: rgba(145, 42, 78, 0.02);
}

.date-cell {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.4;
}

.intl-cell {
    color: var(--primary-dark);
    font-weight: 700;
    background: rgba(145, 42, 78, 0.04) !important;
}

.na-cell {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 600;
}

.category-detail {
    text-align: left !important;
    max-width: 350px;
}

.category-detail small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.row-divider {
    height: 1.5rem;
    background: var(--bg-light);
}

.row-divider td {
    border: none !important;
    padding: 0 !important;
}

.price-table tr:hover:not(.row-divider) {
    background: rgba(145, 42, 78, 0.02);
}

.gst-notice {
    font-size: 0.9rem;
    color: var(--required-color);
    font-weight: 500;
    margin-left: 1rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.payment-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.payment-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.payment-card h3 i {
    color: var(--primary);
}

.p-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.p-row strong {
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
}

.p-row:last-child {
    border-bottom: none;
}

.p-row span {
    color: var(--text-muted);
}

.email-btn,
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    transition: var(--transition-fast);
    word-break: break-all;
    text-align: center;
}

.email-btn {
    background: var(--primary);
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    margin-left: 0;
}

.email-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.or-separator {
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.terms-conditions {
    background: #1e293b;
    color: white;
    padding: 3rem;
    border-radius: 20px;
}

.terms-conditions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.terms-conditions ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.terms-conditions li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

/* =========================================
   CONTACT & FOOTER
========================================= */
.contact-section {
    padding: var(--section-pad);
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0l15 15-15 15L0 15 15 0z' fill='%23912a4e' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-muted);
}

.main-footer {
    background: linear-gradient(135deg, #4b1a2a 0%, #1a0a0f 100%);
    color: white;
    padding: 5rem 0 3rem;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-copy p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.footer-copy a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.footer-copy a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(253, 242, 248, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* =========================================
   RESPONSIVE OVERRIDES
========================================= */
/* =========================================
   RESPONSIVE OVERRIDES
========================================= */

/* Desktop Large */
@media screen and (min-width: 1400px) {
    :root {
        --max-width: 1300px;
    }
}

/* Tablet / Small Desktop */
@media screen and (max-width: 1024px) {
    :root {
        --section-pad: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .about-container {
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title.text-left {
        text-align: center !important;
    }

    .section-title.text-left::after {
        margin: 10px auto 2rem !important;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        right: -10px;
        bottom: -10px;
        width: 100px;
        height: 100px;
    }

    .experience-badge .num {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }

    .faculty-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .highlights-grid-refined {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root {
        --section-pad: 3.5rem 1.25rem;
    }

    .hero {
        min-height: 650px;
        height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .detail-item {
        width: 100%;
        max-width: 400px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        padding: 3rem 0;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--text-main) !important;
    }

    .price-table-container {
        border-radius: 12px;
        margin: 0 -0.5rem;
    }

    .price-table {
        min-width: 700px;
        /* Allow horizontal scroll */
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .board-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .payment-card {
        padding: 2rem 1.5rem;
    }

    .p-row {
        flex-direction: column;
        gap: 4px;
        text-align: left;
    }

    .p-row span {
        font-size: 0.85rem;
    }

    .whatsapp-btn,
    .email-btn {
        width: 100%;
        justify-content: center;
    }

    .committee-grid-sm {
        grid-template-columns: repeat(2, 1fr);
    }

    .secretary-row {
        flex-direction: column;
        align-items: center;
    }

    .col-md-6 .committee-grid-sm {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .highlights-grid-refined,
    .contact-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .registration-card {
        flex-direction: column;
        margin: 2rem auto; /* Ensure card is centered */
        width: 100%;
        max-width: 450px; /* Optional: keep it from getting too wide on large phones */
    }

    .reg-card-qr {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding: 2.5rem 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Crucial for horizontal centering */
        justify-content: center;
    }

    .qr-frame {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    .reg-card-content {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .reg-card-features li {
        justify-content: flex-start;
        text-align: left;
    }

    .reg-card-actions {
        justify-content: center;
    }

    .reg-card-title {
        font-size: 1.8rem;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .patron-row {
        margin-bottom: 3rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .committee-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .committee-card-alt {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .committee-card-alt h4 {
        font-size: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word; /* Ensure names don't overflow */
    }

    .committee-card-alt .position {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .committee-grid-sm,
    .col-md-6 .committee-grid-sm,
    .committee-grid-sm.coord-3-col {
        grid-template-columns: 1fr !important;
    }
}

/* Ultra-Small Mobile (320px) */
@media screen and (max-width: 330px) {
    .container {
        padding: 0 1rem;
    }

    :root {
        --section-pad: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        max-width: 280px;
    }

    .detail-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .price-table-container {
        margin: 0 -1rem;
    }

    .price-table th,
    .price-table td {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
    }

    .payment-card {
        padding: 1rem 0.75rem;
    }

    .payment-card h3 {
        font-size: 1.35rem;
    }

    .committee-card-alt h4 {
        font-size: 1.2rem;
    }

    .brand-logo {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        top: 60px;
    }

    .registration-info-box {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .email-btn,
    .whatsapp-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
        width: 100%;
        gap: 5px;
    }

    .how-to-register-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .terms-conditions {
        padding: 1.5rem 1rem;
    }

    .terms-conditions h4 {
        font-size: 1.25rem;
    }

    .footer-copy p {
        font-size: 0.85rem;
    }

    .committee-section .subsection-title {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }

    .committee-card-sm {
        padding: 1.25rem 1rem;
    }

    .committee-card-sm h4 {
        font-size: 1rem;
    }

    .secretary-row .committee-card-sm {
        width: 100%;
        max-width: 280px;
    }

    .committee-img-container {
        width: 100px;
        height: 100px;
    }

    .committee-card-sm .committee-img-container {
        width: 90px;
        height: 90px;
    }

    .board-grid span {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .registration-info-box {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* Scroll Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title.reveal-init {
    transform: translateY(20px);
}