@charset "UTF-8";
/* DESKTOP / BASE STYLES */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #5bc0de;
    color: white;
    padding: 8px;
    z-index: 10001;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}


/* CSS Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Libre Franklin", sans-serif;
    line-height: 1.6;
    color: #333;
    transition: opacity 0.3s ease;
    background: #f5f5f5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5bc0de, #5a4a8a);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4aa8d4, #4a3d7a);
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mandala {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.1;
    background-image:
        repeating-radial-gradient(circle at 50% 50%,
            transparent 0,
            transparent 10px,
            rgba(91, 192, 222, 0.3) 10px,
            rgba(91, 192, 222, 0.3) 20px),
        repeating-radial-gradient(circle at 50% 50%,
            transparent 0,
            transparent 20px,
            rgba(74, 61, 122, 0.3) 20px,
            rgba(74, 61, 122, 0.3) 30px);
    animation: rotate-mandala 60s linear infinite;
}

.mandala-1 {
    top: 10%;
    left: -10%;
    animation-duration: 80s;
}

.mandala-2 {
    bottom: 15%;
    right: -5%;
    animation-duration: 70s;
    animation-direction: reverse;
}

.mandala-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.02;
    animation-duration: 100s;
}

@keyframes rotate-mandala {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(91, 192, 222, 0.4);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.floating-particle:nth-child(4) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.floating-particle:nth-child(5) {
    left: 80%;
    top: 60%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.floating-particle:nth-child(6) {
    left: 50%;
    top: 80%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes float {

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

    25% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-30px, -100px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(80px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Ensure content is above background */
.top-info-bar,
.top-header,
.main-nav,
section,
footer {
    position: relative;
    z-index: 1;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Better Image Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fade In Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.animate-on-scroll:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In from Left */
.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-left.animate-on-scroll:not(.visible) {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In from Right */
.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-right.animate-on-scroll:not(.visible) {
    opacity: 0;
    transform: translateX(50px);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5a4a8a 0%, #6b5a9a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    margin-bottom: 30px;
}

.loader-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #5bc0de, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.loader-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}


/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #5bc0de, #5a4a8a);
    width: 0%;
    z-index: 999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(91, 192, 222, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #5a4a8a 0%, #5bc0de 100%);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;

}

.banner-title {
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.team-member {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

section {
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Scale Animation */
.scale-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.animate-on-scroll:not(.visible) {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

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

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

img {
    image-rendering: -webkit-optimize-contrast;
}


/* Top Info Bar */
.top-info-bar {
    background: #429dcf;
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    font-size: 14px;
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: right;
}

.info-link {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 0.8;
}


/* Header */
.header-section {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-emblem {
    position: relative;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a5f9d;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 35px;
    color: #4a5f9d;
    margin: 0;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text .year {
    font-size: 18px;
    color: #333;
    margin: 5px 0 2px;
    font-weight: 600;
}

.logo-text .tagline {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.org-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.org-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 90px;
    width: auto;
    min-width: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.org-logos a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.org-logos img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 150px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}


/* Navigation */
.main-nav {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #e0e0e0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-close-item {
    display: none;
}

.menu-close-btn {
    display: flex;
}

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

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

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

.nav-menu li {
    flex: 0 0 auto;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 10px 6px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    color: #5bc0de;
}

.nav-menu a.active {
    color: #333;
    border-bottom-color: #5bc0de;
}

.nav-register-li {
    flex: none !important;
}

.nav-register-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    border-bottom: none !important;
    font-size: 13px;
    margin-left: 10px;
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: white !important;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    text-align: left;
    flex: none;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: none !important;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #5bc0de 0%, rgba(91, 192, 222, 0.1) 100%);
    color: #413d7f;
    padding-left: 25px;
}


/* Banner Section */
.event-banner {
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.banner-wrapper {
    max-width: 2100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: min(500px, 40vw);
    overflow: hidden;
}

.banner-image-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content-panel {
    position: relative;
    z-index: 2;
    background: #414787;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    width: 50%;
    max-width: 800px;
    margin-right: 10%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.banner-text-content {
    flex: 1;
}

.banner-subtitle {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-subtitle-small {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #e8e8e8;
    line-height: 1.4;
    font-style: italic;
    word-break: break-word;
    /* Ensure it wraps on small screens */
}

.banner-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -1px;
}

.organiser-section {
    margin-bottom: 20px;
}

.organiser-label,
.association-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.organiser-name {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #e8e8e8;
    line-height: 1.4;
}

.association-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.association-list li {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.2;
}

.association-list li::before {
    content: "•";
    color: #5bc0de;
    font-weight: bold;
}

.event-info-bars {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: stretch;
}

.date-bar,
.venue-bar {
    padding: 10px 20px 10px 15px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    font-weight: 400;

    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    position: relative;
    border-left: 5px solid rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 0;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}

.date-bar>*,
.venue-bar>* {
    transform: none;
    display: inline;
}

.bar-label {
    font-weight: 700;
    margin-right: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.bar-value {
    font-weight: 400;
    font-size: 14px;
}

.date-bar {
    background: #5bc0de;
    color: #ffffff;
}

.venue-bar {
    background: #ffffff;
    color: #333;
    margin-left: 0;
}

/* Footer Date/Venue Styling (Matching Banner) */
.footer-dates,
.footer-venue {
    display: inline-block;
    padding: 10px 30px 10px 20px;
    margin-bottom: 10px;
    font-size: 14px;

    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
    border-left: 4px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    width: fit-content;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
    transform: none;
}

.footer-dates>*,
.footer-venue>* {
    transform: none;
    display: inline;
}

.footer-dates {
    background: #5bc0de;
    color: #ffffff;
}

.footer-venue {
    background: #ffffff;
    color: #333;
}


/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: #ffffff;
    border: none;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
    border: none;
}

.welcome-content {
    flex: 1 1 45%;
    padding-right: 20px;
    padding-top: 20px;
}

.welcome-image {
    flex: 1 1 45%;
    position: relative;
    z-index: 1;
}

/* Label: "WELCOME MESSAGE" */
.welcome-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.welcome-title {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #413d7f;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.welcome-text {
    color: #444;
    line-height: 1.8;
}

.welcome-text p {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-align: justify;

}

.welcome-text strong {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    color: #333;
}

.welcome-closing {
    margin-top: 24px;
    margin-bottom: 10px;
}

.regards {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: #413d7f;
    font-size: 18px;
}

.signature {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;

    color: #666;
    font-size: 1rem;
    font-style: italic;
}

/* Button */
.read-more-btn {
    font-family: 'Libre Franklin', sans-serif;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #413d7f;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 61, 122, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #5a4d8a;
    box-shadow: 0 8px 25px rgba(74, 61, 122, 0.3);
}

.name-badge {
    display: inline-block;
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 8px;
    transition: all 0.3s ease;
    min-width: 220px;
    max-width: 280px;
    width: 100%;
    text-align: center;
}

.welcome-image {
    position: relative;

}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.decorative-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #ccc 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    pointer-events: none;
}


/* Office Bearers */
.office-bearers-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    padding-bottom: 100px;

}

.giap-section {
    background: #4EA3D5;
    color: #ffffff;
}

.paai-section {
    background: #e6edf4;
    color: #413d7f;
}

.paai-section {
    background: #e6f3fa;
    color: #333;
    padding: 60px 0;
}

.paai-section .section-title {
    font-family: 'Momo Trust Sans', sans-serif;
    color: #413d7f !important;
    font-size: 40px;
}

.bengaluru-section {
    background: #ffffff;
    color: #333;
    padding: 60px 0;
}

.bengaluru-section .section-title {
    color: #413d7f !important;
}

.bengaluru-section .section-description {
    color: #666;
}

.office-bearers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.office-bearers-container .section-title,
.committee-title {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #413d7f;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.section-description {
    font-family: 'Momo Trust Sans', sans-serif;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.6;
    color: #413d7f;
}

/* Carousel container adjustment */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;

}


.office-bearers-swiper {
    padding-top: 20px !important;
    padding-bottom: 20px !important;

}

/* Bearer Cards */
.bearer-card {
    position: relative;
    padding-top: 90px;
    margin-bottom: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: auto;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible;
}

.bearer-card:hover {
    transform: translateY(-8px);
}

.bearer-image {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.bearer-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    padding: 6px;
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bearer-card:hover .bearer-image img {
    border-color: #5bc0de;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(91, 192, 222, 0.3);
}

.bearer-info {
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 100px 25px 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.bearer-card:hover .bearer-info {
    border-color: #5bc0de;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bearer-info h3 {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #413d7f;
    transition: color 0.3s ease;
}

.bearer-card:hover .bearer-info h3 {
    color: #5bc0de;
}

.bearer-info .position {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4ea3d5;
    transition: color 0.3s ease;
}

/* Navigation Arrows (Swiper) */
.swiper-button-next,
.swiper-button-prev {
    color: #413d7f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    top: 50%;
    margin-top: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev {
    left: -60px;

}

.swiper-button-next {
    right: -60px;

}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 32px;
    font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #f0f0f0;
    transform: scale(1.1);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* Pagination Dots */
.swiper-pagination {
    position: absolute;
    bottom: -60px !important;
    right: 0;
    width: 100%;
    text-align: right;
    padding-right: 20px;
    z-index: 10;
    display: none; /* Hidden on desktop to remove white space */
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.6;
    margin: 0 5px !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    transform: scale(1.3);
}

/* Desktop Grid Layout (Default) */
.bearers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.bearers-grid .bearer-card {
    flex: 0 1 300px;
    width: 300px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}


.bearers-grid .bearer-card .bearer-info {
    flex: 1;
    width: 100%;
}

.bearers-grid.single-bearer {
    display: flex;
    justify-content: center;
}

.bearers-grid.single-bearer .bearer-card {
    max-width: 320px;
    width: 100%;
}


/* Committee Section */
.committee-section {
    padding: 60px 0;
    text-align: center;
}

.advisors-section {
    background: linear-gradient(135deg, #4a5f9d 0%, #5a3d7a 100%);
    color: #ffffff;
}

/* Organising (British spelling) section styling */
.organising-section {
    background: #ffffff;
    color: #333;
}

.scientific-section {
    background: #f8f9fa;
    color: #333;
}

.core-section {
    background: #ffffff;
    color: #333;
}

.workshop-section {
    background: #f8f9fa;
    color: #333;
}

.committee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.committee-title {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: #5bc0de;
    color: #ffffff;
    text-transform: uppercase;
}

.organising-section .committee-title,
.scientific-section .committee-title,
.core-section .committee-title,
.workshop-section .committee-title {
    background: #3d4a7a;
    color: #ffffff;
}


/* Name Badges */
.name-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.name-badge {
    display: inline-block;
    padding: 0 20px;
    background: transparent;
    color: #413d7f;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.name-badge:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-weight: 300;
}

.advisors-section .name-badge::after {
    content: none;
}

.name-badge:hover {
    transform: translateY(-2px);
    color: #5a4d8a;
    text-shadow: 0 2px 4px rgba(74, 61, 122, 0.2);
}

.advisors-section .name-badge {
    background: rgba(61, 74, 122, 0.8);
    color: #ffffff;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advisors-section .name-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.team-member {
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
}

.team-member:not(:last-child) h4::after {
    content: ' |';
    margin-left: 10px;
    color: #ccc;
    font-weight: 300;
}

.team-member:hover {
    transform: translateY(-2px);
}

.team-member h4 {
    font-size: 18px;
    color: #413d7f;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.3;
}

.team-member p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.karnataka-bearers-section {
    background-color: #5cb8e4;
    padding: 60px 0;
    text-align: center;
}

.karnataka-bearers-section .bearers-title {
    color: white;
    font-size: 29px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.karnataka-bearers-section .bearers-description {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.karnataka-cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 80px;
    max-width: 1200px;
}

.bearer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.bearer-card:hover {
    transform: translateY(-5px);
}

.bearer-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
    border: 6px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.bearer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bearer-image-wrapper.placeholder {
    background-color: #8c8c8c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.karnataka-cards .bearer-info {
    background-color: #3d4a7a;
    padding: 60px 30px 30px;
    min-width: 280px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 0;
}

.bearer-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.bearer-position {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.bearer-more-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5cb8e4;
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bearer-more-btn:hover {
    background-color: #4aa8d4;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.4);
}

.best-wishes-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.wishes-title {
    color: #3d4a7a;
    font-size: 29px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

.wishes-cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: stretch;
}

.wishes-cards .bearer-card {
    flex: 0 1 300px;
    width: 300px;
    margin-bottom: 0;
}





/* Footer */
.main-footer {
    background: #413d7f;
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}


.footer-column {
    flex: 1 1 280px;
    min-width: 260px;
}

.footer-column h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.footer-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.4;
}

.footer-event-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-organizer {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-organizer p {
    margin-bottom: 8px;
}

.footer-organizer ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
}

.footer-organizer ul li {
    margin-bottom: 5px;
    position: relative;
}

.footer-organizer ul li:before {
    content: "\25cb";
    position: absolute;
    left: -15px;
}

.footer-event-details {
    margin-top: 20px;
}

.footer-dates {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(91, 192, 222, 0.9);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-venue {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 14px;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.footer-event-info {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-event-info p {
    margin-bottom: 8px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.footer-logo-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"].animated {
    transition-delay: 0.1s;
}

[data-delay="200"].animated {
    transition-delay: 0.2s;
}

[data-delay="300"].animated {
    transition-delay: 0.3s;
}

/* Loading Animation for Images */
.bearer-image img,
.welcome-image img,
.banner-image img {
    animation: fadeIn 0.5s ease;
}

a:focus,
button:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


@media (max-width: 1024px) {
    .banner-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
    }

    .banner-image-panel {
        position: relative;
        height: 300px;
        width: 100%;
    }

    .banner-content-panel {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        padding: 35px 25px;
        background: #5a4a8a;
        min-height: 450px;
        /* Accommodate Slide 1 content */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .banner-title {
        font-size: 32px;
    }

    .bearers-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .bearers-carousel .bearer-card {
        flex: 0 0 calc(50% - 15px);
    }

    .carousel-wrapper {
        padding: 0 50px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 45%;
        /* Two columns roughly */
    }

    .footer-column:last-child {
        flex-basis: 100%;
        /* Spans full width */
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {

    /* Header */
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .logo-text .year {
        font-size: 14px;
    }

    .logo-text .tagline {
        font-size: 11px;
    }

    .org-logos {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .org-logos img {
        height: 70px;
    }

    /* Banner */
    .banner-image-panel {
        min-height: 250px;
    }

    .banner-content-panel {
        padding: 30px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-title-lg {
        font-size: 28px;
    }

    .banner-description {
        font-size: 17px;
    }

    .date-bar,
    .venue-bar {
        font-size: 14px;
        padding: 10px 15px;
        flex: 1;
        white-space: normal;
        word-break: break-word;
        height: auto;
        width: 100%;
        max-width: 320px;
        clip-path: none;
        /* Remove clip-path on mobile to prevent clipping */
        border-left: 5px solid rgba(0, 0, 0, 0.2);
    }

    .event-banner {
        padding: 0;
        min-height: auto;
    }

    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        display: flex !important;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
    }

    .banner-swiper .swiper-button-next::after,
    .banner-swiper .swiper-button-prev::after {
        font-size: 16px;
        color: white;
    }

    /* Banner Pagination Dots on Mobile */
    .banner-pagination {
        bottom: 15px !important;
    }

    .banner-pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
        width: 10px;
        height: 10px;
    }

    .banner-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #5bc0de;
        width: 25px;
        border-radius: 5px;
    }

    .banner-swiper .swiper-button-prev {
        left: 10px;
    }

    .banner-swiper .swiper-button-next {
        right: 10px;
    }


    .banner-bg {
        padding: 0 20px;
    }

    .date-bar,
    .venue-bar {
        padding: 10px 10px;
        font-size: 14px;
        /* Reduced from 19px which was too large */
        transform: none;
    }

    .venue-bar {
        margin-left: 0;
    }


    .welcome-section,
    .office-bearers-section,
    .committee-section,
    .karnataka-bearers-section,
    .best-wishes-section {
        padding: 50px 0;
    }

    .welcome-container,
    .office-bearers-container,
    .committee-container,
    .karnataka-cards,
    .wishes-cards {
        padding: 0 24px;
    }

    /* Carousels */
    .carousel-container {
        padding: 0 10px;
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 0;
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    .bearer-card,
    .wish-card {
        min-width: 250px;
        max-width: 100%;
        width: 260px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .carousel-nav {
        margin-top: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .committee-title {
        font-size: 24px;
        padding: 6px 20px;
    }

    .name-badge {
        font-size: 13px;
        padding: 8px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices (640px and below) */
@media (max-width: 640px) {

    html {
        overflow-x: hidden;
    }

    /* Top Bar */
    .top-info-bar {
        font-size: 13px;
    }

    .info-bar-container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-container {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        position: relative;
        z-index: 1001;
        margin: 15px auto;
        background: #413d7f;
        padding: 10px 16px 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid #5bc0de;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-menu-toggle:hover {
        background: #5a4a8a;
        transform: scale(1.05);
    }

    .mobile-menu-toggle span:not(.menu-text) {
        background: white;
        width: 28px;
        height: 3px;
        display: block;
        border-radius: 2px;
        transition: all 0.3s ease;
    }


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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

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

    .mobile-menu-toggle .menu-text {
        color: white;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-top: 4px;
        background: transparent;
        width: auto;
        height: auto;
        display: block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 1;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-toggle.active .menu-text {
        opacity: 0;
    }


    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80%;
        height: 100%;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0px 0 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        overscroll-behavior: contain;
        touch-action: pan-y;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid rgba(224, 224, 224, 0.5);
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(7) {
        transition-delay: 0.35s;
    }

    .nav-menu.active li:nth-child(8) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(9) {
        transition-delay: 0.45s;
    }

    .nav-menu.active li:nth-child(10) {
        transition-delay: 0.5s;
    }

    .nav-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 13px;
        color: #333;
        border-bottom: none;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(91, 192, 222, 0.1) 0%, transparent 100%);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        width: 100%;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #5bc0de;
        border-left-color: #5bc0de;
        padding-left: 32px;
        background: rgba(91, 192, 222, 0.05);
    }

    /* Banner */
    .event-banner {
        padding: 0;
        min-height: auto;
    }

    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        display: flex !important;
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
    }

    .banner-swiper .swiper-button-next::after,
    .banner-swiper .swiper-button-prev::after {
        font-size: 14px;
        color: white;
    }

    .banner-image-panel {
        min-height: 150px;
    }

    .banner-image-panel img {
        object-position: center;
    }

    .banner-content-panel {
        padding: 15px 15px 45px;
    }

    .banner-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .banner-title-lg {
        font-size: 26px;
    }

    .banner-description {
        font-size: 15px;
    }

    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .banner-subtitle-small {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .date-bar,
    .venue-bar {
        font-size: 12px;
        padding: 8px 10px;
        flex-direction: row;
        align-items: center;
        gap: 3px;
        flex: 1;
        white-space: normal;
        word-break: break-word;
        height: auto;
    }

    .bar-label {
        margin-right: 0;
    }

    .venue-bar {
        margin-left: 0px;
    }

    /* Sections */
    section {
        padding: 32px 0;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .welcome-container,
    .office-bearers-container,
    .committee-container,
    .karnataka-cards,
    .wishes-cards,
    .footer-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .committee-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.5;
        padding: 0;
    }

    .welcome-title {
        font-size: 24px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .carousel-wrapper {
        padding: 0 35px;
    }

    .bearers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-event-title {
        font-size: 24px;
    }

    .karnataka-bearers-section .bearers-title,
    .wishes-title {
        font-size: 24px;
    }

    .bearer-image-wrapper,
    .wish-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .karnataka-cards .bearer-info,
    .wish-info {
        min-width: 280px;
        padding: 60px 30px 30px;
    }
}




/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .bearer-card:hover .bearer-image img,
    .committee-member:hover,
    .welcome-image:hover {
        transform: none;
    }
}


/* Print Styles */
@media print {

    .main-nav,
    .back-to-top,
    .carousel-nav,
    .carousel-dots,
    .mobile-menu-toggle,
    .scroll-progress {
        display: none !important;
    }

    .office-bearers-section,
    .committee-section,
    .welcome-section {
        page-break-inside: avoid;
    }

    body {
        background: white;
    }
}


@media (max-width: 1024px) {

    /* Disable Sticky Nav on Mobile */
    .main-nav {
        position: relative;
        top: auto;
        z-index: 1100;
        /* Ensure nav is above header/overlay */
    }

    /* Arrows adjustments */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;

        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        position: relative;
        z-index: 2001;

        background: #4ea3d5;
        padding: 8px 14px;
        border-radius: 8px;
        cursor: pointer;
        pointer-events: auto;
        border: none;
        box-shadow: 0 4px 12px rgba(78, 163, 213, 0.4);
        transition: transform 0.2s ease, background 0.2s ease;
        min-width: 60px;
        height: auto;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    /* Bars */
    .mobile-menu-toggle span:not(.menu-text) {
        background: white;
        width: 26px;
        height: 3px;
        display: block;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* "MENU" Text */
    .mobile-menu-toggle .menu-text {
        color: white;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-top: 2px;
        display: block;
        line-height: 1;
        text-transform: uppercase;
    }

    /* Animate Toggle Button */
    .mobile-menu-toggle.active {
        background: #333;
    }

    .mobile-menu-toggle.active .menu-text {
        display: none;
    }

    /* Transform to X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

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



    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    /* Links */
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 15px;
        color: #333;
        font-weight: 600;
        font-family: 'Open Sans', sans-serif;
        text-decoration: none;
        position: relative;
    }




    .dropdown-toggle {
        justify-content: flex-start !important;
        /* Force Left Align */
        text-align: left !important;
        width: 100%;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #4ea3d5;
        background: #f8fbff;
        padding-left: 30px;
        /* Slide effect */
    }


    .menu-close-item {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        border-bottom: none !important;
        padding: 6px 14px 4px !important;
        margin: 0 !important;
        text-align: right !important;
        display: flex !important;
        justify-content: flex-end !important;
    }

    .menu-close-btn {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.45);
        border: none;
        border-radius: 999px;
        width: 20px;
        height: 20px;
        cursor: pointer;
        color: #fff;
        transition: background 0.2s ease;
        padding: 0;
    }

    .menu-close-btn svg {
        width: 9px;
        height: 9px;
    }

    .menu-close-btn:hover {
        background: rgba(0, 0, 0, 0.65);
    }

    /* Dropdowns in Mobile - VISIBLE */
    .dropdown-menu {
        display: none;
        position: static;
        transform: none !important;

        width: 100% !important;

        left: auto !important;
        text-align: left !important;
        /* Force Left */

        background: #f9f9f9;
        box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.06);
        padding: 5px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu.active {
        display: block !important;
        animation: fadeIn 0.3s;
    }

    .dropdown-menu a {
        font-size: 11px;
        color: #666;
        padding: 5px 15px 5px 20px;

        font-weight: 500;
    }

    .dropdown-menu a:hover {
        background: #f0f0f0;
        color: #333;
    }




}


.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5bc0de 0%, #4aa8d4 100%);
    color: white;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(91, 192, 222, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #413d7f 0%, #5a4a8a 100%);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(74, 61, 122, 0.6);
    border-color: #5bc0de;
}

.back-to-top:active {
    transform: translateY(-5px) scale(1.1);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pulse animation for attention */
@keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(91, 192, 222, 0.5);
    }

    50% {
        box-shadow: 0 6px 30px rgba(91, 192, 222, 0.8);
    }
}

.back-to-top.visible {
    animation: pulse-button 2s ease-in-out infinite;
}

.back-to-top:hover {
    animation: none;
}

/* Mobile optimization for back-to-top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .back-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* 404 Page Styles */
.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a3d7a 0%, #5bc0de 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1;
}

.error-message {
    font-size: 1.5rem;
    color: #333;
    margin: 20px 0 30px;
}

.home-btn {
    padding: 12px 30px;
    background: #4a3d7a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: #5a4d8a;
    transform: translateY(-2px);
}

/* Inner Page Styling */
.inner-content {
    color: #444;
    line-height: 1.8;
}

.inner-content h1,
.inner-content h2,
.inner-content h3,
.inner-content h4,
.inner-content h5,
.inner-content h6 {
    color: #413d7f;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-weight: 700;
}

.inner-content h1 {
    font-size: 2.5em;
}

.inner-content h2 {
    font-size: 2em;
}

.inner-content h3 {
    font-size: 1.75em;
}

.inner-content p {
    margin-bottom: 1.5em;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    text-align: justify;
}

.inner-content ul,
.inner-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.inner-content li {
    margin-bottom: 0.5em;
    font-family: 'Libre Franklin', sans-serif;
}

/* Basic Tab Styling */
.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
    border-bottom: 2px solid #e0e0e0;
}

.tab-link {
    padding: 10px 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-link:hover {
    color: #5bc0de;
}

.tab-link.active {
    color: #413d7f;
    border-bottom-color: #413d7f;
}

.tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Registration & Payment Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    text-align: center;
}

.registration-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.registration-card,
.payment-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: none;
}

.registration-card:hover,
.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Headers */
.registration-card .card-header {
    background: linear-gradient(135deg, #413d7f 0%, #5a4a8a 100%);
    padding: 30px 20px;
    color: white;
}

.payment-card .card-header {
    background: linear-gradient(135deg, #5bc0de 0%, #489eb5 100%);
    padding: 30px 20px;
    color: white;
}

.registration-title {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    /* Override default */
}

/* Card Body */
.card-body {
    padding: 40px 30px;
}

.early-bird {
    color: #413d7f;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    background: #f0f0f5;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
}

.fee-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.fee-list li {
    margin-bottom: 20px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    color: #444;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #eaeaea;
    /* Thinner accent border */
    padding-bottom: 15px;
    transition: transform 0.3s ease;
}

.fee-list li:hover {
    transform: translateX(10px);
}

.fee-list li:last-child {
    border-bottom: none;
}

.fee-list li strong {
    color: #413d7f;
    font-size: 16px;
    text-transform: uppercase;
}

.fee-list li span {
    font-weight: 700;
    color: #333;
}

.payment-info p {
    font-size: 20px;
    color: #777;
    font-style: italic;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .registration-section {
        padding: 50px 0;
    }

    .registration-container {
        flex-direction: column;
        gap: 30px;
    }

    .registration-card,
    .payment-card {
        width: 100%;
        min-width: auto;
    }

    .fee-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .fee-list li span {
        font-size: 20px;
        color: #413d7f;
    }
}

/* Inner Page Banner */
.inner-page-banner {
    background: linear-gradient(135deg, #413d7f 0%, #5a4a8a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.inner-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.png');
    /* Optional pattern */
    opacity: 0.1;
    pointer-events: none;
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.inner-banner-title {
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li a {
    color: #5bc0de;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: white;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb li:last-child::after {
    display: none;
}

/* Organizing Team Photo Grid */
.organising-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.organising-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #5bc0de;
}

.organising-card:hover {
    transform: translateY(-5px);
}

.org-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f0f0f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.org-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    padding: 5px;
    /* Add internal space */
    border-radius: 50%;
    /* Ensure image stays round */
}

.org-info h3 {
    font-size: 18px;
    color: #413d7f;
    margin-bottom: 5px;
    font-weight: 700;
}

.org-info .role {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Nametag Grid - Glassmorphism Style */
.nametag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nametag-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    /* Match bearer-card */
    border-radius: 14px;
    padding: 30px 20px 25px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.nametag-card:hover {
    transform: translateY(-8px);
    border-color: #5bc0de;
    box-shadow: 0 12px 30px rgba(65, 61, 127, 0.12);
}

.nametag-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #413d7f 0%, #4ea3d5 50%, #413d7f 100%);
    border-radius: 14px 14px 0 0;
    transition: height 0.3s ease;
}

.nametag-card:hover .nametag-accent {
    height: 8px;
}

.nametag-name {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #413d7f;
    /* Theme Deep Blue */
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.nametag-card:hover .nametag-name {
    color: #4ea3d5;
}

.nametag-role {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (max-width: 600px) {
    .nametag-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        justify-items: center;
    }

    .nametag-card {
        padding: 20px 14px 16px;
        width: 100%;
        max-width: 320px;
    }

    .nametag-name {
        font-size: 16px;
    }

    .nametag-role {
        font-size: 14px;
    }

    .office-bearers-container .section-title {
        font-size: 24px;
    }

    .banner-image-panel img {
        object-position: 30% 30%;
    }

}


/* ==========================================
   COUNTDOWN TIMER
   ========================================== */
.countdown-section {
    background: linear-gradient(135deg, #413d7f 0%, #5a4a8a 50%, #5bc0de 100%);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotate-mandala 30s linear infinite;
}

.countdown-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.countdown-heading {
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-value {
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.countdown-register-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #5bc0de, #4aa8d4);
    color: #ffffff;
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(91, 192, 222, 0.4);
}

.countdown-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(91, 192, 222, 0.6);
    background: linear-gradient(135deg, #4aa8d4, #3d9ac0);
}


/* ==========================================
   VENUE & MAP SECTION
   ========================================== */
.venue-section {
    background: #ffffff;
    padding: 70px 0;
}

.venue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.venue-info {
    flex: 1;
}

.venue-title {
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #5bc0de;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.venue-name {
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #413d7f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.venue-address {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.venue-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venue-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1.5px solid #eaeaea;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.venue-highlight-item:hover {
    transform: scale(1.02) translateX(8px);
    border-color: #5bc0de;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.venue-icon {
    font-size: 28px;
    color: #4ea3d5;
    /* Theme Bright Blue */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7fb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.venue-highlight-item:hover .venue-icon {
    background: #4ea3d5;
    color: #ffffff;
    transform: rotate(360deg);
}

.venue-map {
    flex: 1;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.venue-map iframe {
    border-radius: 16px;
}


/* ==========================================
   FLOATING REGISTER CTA
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 90px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #413d7f, #5a4a8a);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Momo Trust Sans', 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(65, 61, 127, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
    animation: ctaPulse 2s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta:hover {
    background: linear-gradient(135deg, #5a4a8a, #6b5a9a);
    box-shadow: 0 8px 35px rgba(65, 61, 127, 0.6);
    transform: translateY(-3px);
    animation: none;
}

.cta-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.floating-cta:hover .cta-icon {
    transform: translateX(4px);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(65, 61, 127, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(65, 61, 127, 0.7), 0 0 0 8px rgba(65, 61, 127, 0.1);
    }
}


/* ==========================================
   STICKY NAV WITH BLUR (GLASSMORPHISM)
   ========================================== */
.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(224, 224, 224, 0.5);
}


/* ==========================================
   RESPONSIVE - NEW FEATURES
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .venue-container {
        flex-direction: column;
    }

    .venue-map {
        min-height: 350px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-value {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .countdown-section {
        padding: 40px 15px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        min-width: 65px;
        padding: 15px 10px;
        border-radius: 12px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 28px;
    }

    .countdown-heading {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .countdown-register-btn {
        padding: 14px 40px;
        font-size: 14px;
    }

    .venue-container {
        padding: 0 20px;
    }

    .venue-name {
        font-size: 26px;
    }

    .venue-map {
        min-height: 300px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        border-radius: 0;
    }
    
    .venue-map iframe {
        border-radius: 0;
    }

    .floating-cta {
        bottom: 80px;
        right: 20px;
        padding: 12px 22px;
        font-size: 13px;
    }

    /* Banner Info Bar Fixes on Mobile */
    .date-bar,
    .venue-bar {
        font-size: 14px;
        padding: 10px 15px;
        flex: 1;
        white-space: normal;
        word-break: break-word;
        height: auto;
        width: 100%;
        max-width: 320px;
        clip-path: none;
        /* Remove clip-path on mobile to prevent clipping */
        border-left: 5px solid rgba(0, 0, 0, 0.2);
    }

    /* Fix Bearer Card Overlapping on Mobile */
    .bearer-card {
        margin-top: 50px;
        margin-bottom: 40px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bearer-info {
        min-height: auto;
        padding-bottom: 30px;
    }
}

/* Small phones */
@media (max-width: 420px) {
    .countdown-timer {
        gap: 5px;
    }

    .countdown-item {
        min-width: 55px;
        padding: 12px 8px;
    }

    .countdown-value {
        font-size: 26px;
    }

    .countdown-separator {
        font-size: 22px;
    }

    .floating-cta .cta-text {
        display: none;
    }

    .floating-cta {
        padding: 14px;
        border-radius: 50%;
    }

    .cta-icon {
        font-size: 22px;
    }
}

/* Professional Table-Based Registration */
.reg-table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.modern-reg-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-family: 'Inter', sans-serif;
    border: none;
}

.modern-reg-table th {
    background: #1b3a6d;
    color: #fff;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-reg-table th.category-col {
    background: #0d213f;
    width: 20%;
    text-align: left;
    font-size: 18px;
}

.modern-reg-table th.phase-header {
    background: #345ead;
}

.modern-reg-table .sub-header th {
    background: #f1f3f7;
    color: #4a5f9d;
    font-size: 11px;
    padding: 12px 10px;
}

.modern-reg-table td {
    padding: 18px 15px;
    text-align: center;
    border: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

.modern-reg-table tr:nth-child(even) td {
    background: #fafbfc;
}

.modern-reg-table td.category-name {
    text-align: left;
    font-weight: 700;
    color: #1b3a6d;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}

.modern-reg-table th.category-col {
    position: sticky;
    left: 0;
    z-index: 3;
    background: #0d213f;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.modern-reg-table .price-val {
    font-weight: 800;
    color: #1a237e;
    font-size: 16px;
}

.modern-reg-table .flat-rate {
    font-weight: 700;
    color: #4a5f9d;
    background: #f0f4ff;
}

.reg-title-pill {
    display: table;
    margin: 0 auto 30px;
    background: #ff4757;
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.elite-redesign {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.price-tier {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-align: center;
}

.lite-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    color: #4a5f9d;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.lite-link:hover {
    transform: translateX(5px);
    color: #1a237e;
}

.current-price-badge {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px dashed #4a5f9d;
}

.current-price-badge p {
    margin: 0 0 5px;
    font-size: 10px;
    text-transform: uppercase;
    color: #666;
}

.current-price-badge strong {
    font-size: 24px;
    color: #1a237e;
}

.price-tier.active {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #4a5f9d;
    transform: translateY(-5px);
}

.registration-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.price-tier.spot {
    background: rgba(74, 95, 157, 0.05);
}

.tier-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #4a5f9d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tier-vals .v-row {
    font-size: 13px;
    margin-bottom: 5px;
}

.tier-vals .v-row span {
    display: block;
    font-size: 9px;
    color: #888;
}

.tier-vals .v-row strong {
    color: #333;
    font-size: 15px;
}

.mini-tiers {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
    margin: 15px 0;
}

.m-tier {
    background: rgba(255, 255, 255, 0.3);
    padding: 8px;
    border-radius: 10px;
    font-size: 12px;
}

.m-tier span {
    display: block;
    font-size: 8px;
    color: #666;
    font-weight: 700;
}

/* Digital Transaction Card */
.digital-transaction-card {
    background: linear-gradient(135deg, #4a5f9d 0%, #2c3e50 100%);
    color: white;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.digital-transaction-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo-space {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 14px;
}

.card-type {
    font-size: 10px;
    opacity: 0.7;
    letter-spacing: 2px;
}

.card-holder {
    margin-bottom: 30px;
}

.card-holder label,
.num-row label {
    display: block;
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card-holder strong {
    font-size: 22px;
    letter-spacing: 1px;
}

.card-numbers {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.num-row strong {
    font-size: 18px;
    letter-spacing: 1.5px;
    font-family: 'Courier New', Courier, monospace;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    opacity: 0.8;
}

.branch-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-instruction {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.payment-instruction strong {
    color: #4a5f9d;
}

.card-accent-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.card-accent-blobs::before,
.card-accent-blobs::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.card-accent-blobs::before {
    background: #4a5f9d;
    top: -100px;
    right: -100px;
}

.card-accent-blobs::after {
    background: #2c3e50;
    bottom: -100px;
    left: -100px;
}

.card-inner {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .price-comparison-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-numbers {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .digital-transaction-card {
        padding: 25px;
        border-radius: 20px;
    }

    .card-holder strong {
        font-size: 18px;
    }

    .num-row strong {
        font-size: 16px;
    }

    .registration-container {
        padding: 0 15px;
    }

    .modern-reg-table td,
    .modern-reg-table th {
        padding: 12px 8px;
        font-size: 13px;
    }

    .modern-reg-table th.category-col {
        font-size: 14px;
        width: 120px;
        min-width: 120px;
    }
}

/* Responsive Elite */
@media (max-width: 992px) {
    .elite-deck {
        grid-template-columns: 1fr;
    }

    .elite-side-grid {
        flex-direction: column;
    }
}