/* ================= Natya - CSS Styles ================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Root Variables */
:root {
    /* Primary Colors */
    --primary-color: #f9ea00;
    --primary-light: #f2225b;
    --primary-dark: #1a1a1a;

    /* Gradient */
    --gradient-primary: #f2225b;
    /* --gradient-primary: linear-gradient(135deg, #f9ea00 0%, #f2225b 100%); */

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;

    /* Transitions */
    --transition-base: 300ms ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none !important;
    color: inherit;
    font-family: var(--font-body);
}

ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--font-body);
}

p {
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Button Base Styles */
.theme-btn {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    border: none;
}

.theme-btn-two {
    background: var(--white);
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    border: none;
    transition: .3s;
}

.theme-btn-two:hover {
    background: var(--gradient-primary);
    color: var(--gray-100);
}

.theme-btn:hover {
    opacity: 0.9;
}

/* Header Styles */
header {
    padding: 12px 0;
    background: #1f1500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

header .logoSider img {
    height: 65px;
}

/* Main Navigation */
header .manuSider>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header .manuSider .nav-item {
    position: relative;
}

header .manuSider .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
    white-space: nowrap;
}

header .manuSider .nav-link:hover {
    color: var(--primary-light);
}

header .manuSider .nav-link i {
    font-size: 12px;
    transition: var(--transition-base);
}

/* Submenu Styles */
header .manuSider .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 999;
    display: block !important;
}

header .manuSider .has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header .manuSider .submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition-base);
}

header .manuSider .submenu li a:hover {
    background: var(--gray-100);
    color: var(--primary-light);
    padding-left: 25px;
}

/* Nested Submenu */
header .manuSider .submenu .has-submenu>.submenu {
    top: 0;
    left: 100%;
    margin-left: 5px;
    transform: translateX(-10px);
}

header .manuSider .submenu .has-submenu:hover>.submenu {
    transform: translateX(0);
}

/* Chevron Animation */
header .manuSider .has-submenu:hover>a>.bi-chevron-down {
    transform: rotate(180deg);
}

header .manuSider .submenu .has-submenu:hover>a>.bi-chevron-right {
    transform: translateX(3px);
}

/* Toggle Icon */
.togglerIcon {
    cursor: pointer;
    font-size: 28px;
    transition: var(--transition-base);
    padding: 5px;
    border-radius: 4px;
}

.togglerIcon:hover {
    color: var(--primary-light);
    background: rgba(242, 34, 91, 0.1);
}

/* Offcanvas Mobile Menu Styles */
.offcanvas {
    max-width: 320px;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 2px solid var(--gray-200);
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.offcanvas-header .btn-close {
    font-size: 14px;
}

.offcanvas-body {
    padding: 20px;
    background: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 2px;
}

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-nav-item>.position-relative {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 52px;
}

.mobile-nav-item a.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
    transition: var(--transition-base);
    flex: 1;
}

.mobile-nav-item a.mobile-nav-link:hover {
    color: var(--primary-light);
}

/* Submenu Toggle Button */
.submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 10px;
    font-size: 16px;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.submenu-toggle:hover {
    color: var(--primary-light);
}

.submenu-toggle i {
    transition: var(--transition-base);
}

.submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    padding-left: 0 !important;
    margin: 8px 0 !important;
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-submenu li {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--gray-800);
    transition: var(--transition-base);
}

.mobile-submenu li a:hover {
    background: var(--white);
    color: var(--primary-light);
    padding-left: 25px;
}

/* Nested Mobile Submenu */
.mobile-submenu .has-nested-submenu>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    min-height: 46px;
}

.mobile-submenu .has-nested-submenu>div>a {
    flex: 1;
    font-size: 14px;
    color: var(--gray-800);
}

.mobile-submenu .has-nested-submenu>div>a:hover {
    color: var(--primary-light);
}

.submenu-toggle-nested {
    background: transparent;
    border: none;
    padding: 6px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.submenu-toggle-nested:hover {
    color: var(--primary-light);
    background: rgba(249, 234, 0, 0.1);
}

.submenu-toggle-nested i {
    transition: var(--transition-base);
    display: block;
}

.submenu-toggle-nested[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu-nested {
    padding-left: 0 !important;
    margin: 8px 15px !important;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-submenu-nested li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-submenu-nested li:last-child {
    border-bottom: none;
}

.mobile-submenu-nested li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.mobile-submenu-nested li a:hover {
    background: var(--gray-50);
    color: var(--primary-light);
    padding-left: 25px;
}

/* Mobile CTA */
.mobile-cta {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid var(--gray-200);
}

.mobile-cta .theme-btn {
    justify-content: center;
    box-shadow: 0 4px 12px rgba(242, 34, 91, 0.25);
}

.mobile-cta .theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 34, 91, 0.35);
}

/* ============ Banner Section CSS ============ */
.bannerArea {
    position: relative;
    width: 100%;
}

.bannerSwiper {
    width: 100%;
    height: 100vh;
    max-height: 610px;
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.banner-content h1 {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.banner-content .theme-btn {
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 34, 91, 0.3);
}

.banner-content .theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 34, 91, 0.4);
}

/* Banner Navigation */
.banner-navigation {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    margin: 0;
}

.bannerSwiper .swiper-button-prev::after,
.bannerSwiper .swiper-button-next::after {
    display: none;
}

.bannerSwiper .swiper-button-prev i,
.bannerSwiper .swiper-button-next i {
    font-size: 20px;
    color: var(--white);
}

.bannerSwiper .swiper-button-prev:hover,
.bannerSwiper .swiper-button-next:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================== Festival Area Styles =========================== */
.festivalArea {
    padding: 75px 0px;
}

.festivalContent h2 {
    font-size: 42px;
    color: var(--primary-dark);
}

.festivalContent p {
    font-size: 16px;
    color: var(--gray-700);
    margin-top: 15px;
}

/* Video Player Styles */
.videoPlayArea {
    margin-top: 50px;
    max-height: 550px;
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    max-height: 550px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background var(--transition-base);
}

.video-thumbnail:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    box-shadow: 0 8px 30px rgba(242, 34, 91, 0.5);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(242, 34, 91, 0.7);
}

.play-button i {
    margin-left: 5px;
    position: relative;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 550px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Play Button Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.festivalContents {
    padding: 36px 24px;
    border-radius: 10px;
    height: 100%;
}

.festivalContents h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    /* color: var(--white); */
}

.festivalContents p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 15px;
    /* color: var(--white); */
}

.bgOne {
    background-color: var(--primary-color);
}

.bgTwo {
    background-color: var(--primary-light);
    color: var(--white);
}

.innerItemsdata h5 {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 24px;
}

.bgTwo h3,
.bgTwo p {
    color: var(--white);
}

.festivalContents p:last-child {
    margin-bottom: 0;
}

/* =========================== Natya Participant Styles =========================== */
.natyaIdonParticipant {
    padding: 70px 0px;
    background-color: var(--primary-color);
}

.natyaIdonParticipant h2 {
    font-size: 42px;
    color: var(--gray-900);
    margin-bottom: 40px;
    text-align: center;
}

.videoCard {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.videoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-card-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-card-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background var(--transition-base);
}

.video-card-thumbnail:hover .video-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-card-play-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(242, 34, 91, 0.4);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
    position: relative;
}

.video-card-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.video-card-thumbnail:hover .video-card-play-btn {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(242, 34, 91, 0.6);
}

.video-card-play-btn i {
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

.video-card-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.videoCard h4 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    text-align: center;
}


/* =========================== Natye OnlyTxtArea Styles =========================== */
.natyeOnlyTxtArea {
    padding: 70px 0px;
}

.natyeOnlyTxtArea h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    /* text-align: center; */
}

.contact-box,
.event-info-box {
    padding: 24px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    height: 100%;
}

.contact-box.alert {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.1) 0%, rgba(242, 34, 91, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.contact-box h5,
.event-info-box h5 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-box p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 0px;
}

.event-info-box p {
    margin-bottom: 12px;
}

.event-info-box p span {
    color: var(--primary-light);
}

.festivalContents ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.festivalContents ul li {
    font-weight: normal;
}

.festivalContents ul li i {
    color: var(--primary-light);
}

/* =========================== Natya Final Styles =========================== */
.natyaFinal {
    padding: 70px 0px;
    background-color: var(--primary-color);
}

.natyaFinal h2 {
    font-size: 42px;
    color: var(--gray-900);
    margin-bottom: 40px;
    text-align: center;
}

.natyaFinalContent p {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

/* =========================== All Natya Location Styles =========================== */
.allNatyaLocation {
    padding: 70px 0px;
    /* background-color: var(--primary-color); */
}

.allNatyaLocation h2 {
    font-size: 42px;
    color: var(--primary-dark);
    text-align: center;
}

.allNatyaLocation p {
    font-size: 16px;
    color: var(--gray-700);
    text-align: center;
    margin-top: 15px;
}

/* ================= Footer - CSS Styles ================= */
footer {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 60px 0 0;
    font-family: var(--font-body);
}

.footerWidget {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    transition: var(--transition-base);
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footerWidget p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 0;
}

.footerWidget h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footerWidget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    color: var(--gray-200);
    font-size: 14px;
    transition: var(--transition-base);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: var(--transition-base);
}

.footer-links li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-links li a:hover::before {
    width: 100%;
}

/* Social Media Icons */
.socialMedia {
    margin-top: 20px;
}

.socialMedia h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 34, 91, 0.4);
}

/* Footer Bottom */
.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.footerBottom p {
    font-size: 14px;
    color: var(--gray-200);
    margin: 0;
}

.footerBottom a {
    color: var(--gray-200);
    transition: var(--transition-base);
    margin: 0 5px;
}

.footerBottom a:hover {
    color: var(--primary-light);
}


/* =========================== Competition Schedule Styles =========================== */
.pageTitleSection {
    padding: 100px 0px;
    background-color: var(--primary-color);
}

.pageTitleSection .breadcrumb-item a {
    color: var(--primary-light);
}

.headerOfSchedule {
    padding: 70px 0px;
    border-bottom: 1px solid var(--gray-200);
}

.scheduleHeader h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-align: center;
}

.scheduleHeader h4 {
    font-size: 18px;
    color: var(--gray-700);
    text-align: center;
}

.schedule-card {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.schedule-card .card-header-custom {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--gradient-primary);
}

.schedule-card .card-header-custom h4 {
    font-size: 18px;
    font-weight: 600;
}

.schedule-card .schedule-item {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
}

.schedule-card .schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.schedule-card .schedule-item p {
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.scheduleTable {
    padding: 60px 0px;
}

.scheduleTable h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.scheduleTable h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.scheduleTable p {
    font-size: 16px;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 8px;
    text-align: center;
}

/* =========================== Time Table Schedule - Advanced Tab Styles =========================== */
.timeTableSchedule {
    padding: 24px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 20px;
    position: relative;
    margin-top: 36px !important;
}

/* .timeTableSchedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 10px;
} */

/* Main Tabs Navigation Styling */
#mainScheduleTabs {
    border-radius: 15px;
    padding: 10px;
    border: none;
    margin-bottom: 40px;
}

#mainScheduleTabs .nav-item {
    flex: 1;
}

#mainScheduleTabs .nav-link {
    border: none;
    border-radius: 12px;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-700);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#mainScheduleTabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
}

#mainScheduleTabs .nav-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 234, 0, 0.3);
}

#mainScheduleTabs .nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(242, 34, 91, 0.4);
    transform: translateY(-3px);
}

#mainScheduleTabs .nav-link.active::before {
    left: 0;
}

#mainScheduleTabs .nav-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

#mainScheduleTabs .nav-link.active i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Main Tab Content */
#mainScheduleTabContent {
    position: relative;
}

#mainScheduleTabContent .tab-pane {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nested Pills Navigation */
.timeTableSchedule .nav-pills {
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    gap: 10px;
    border: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.timeTableSchedule .nav-pills .nav-item {
    margin: 0;
}

.timeTableSchedule .nav-pills .nav-link {
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.timeTableSchedule .nav-pills .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.timeTableSchedule .nav-pills .nav-link:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 234, 0, 0.2);
}

.timeTableSchedule .nav-pills .nav-link:hover::after {
    width: 80%;
}

.timeTableSchedule .nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(242, 34, 91, 0.35);
    transform: translateY(-3px) scale(1.02);
}

.timeTableSchedule .nav-pills .nav-link.active::after {
    width: 0;
}

/* Nested Tab Content Area */
.tab-content .tab-pane>.tab-content {
    margin-top: 20px;
}

.tab-content .tab-pane>.tab-content .tab-pane {
    animation: slideInRight 0.4s ease;
}

.innerTabst .nav-pills .nav-link {
    font-weight: 500;
}

.innerTabst .nav-pills .nav-link.active {
    color: var(--primary-dark);
    background-color: var(--white) !important;
    box-shadow: 0px !important;
    transform: none !important;
    border-radius: 10px !important;
    border: none !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content Display Area */
.tab-content .bg-light {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%) !important;
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tab-content .bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px 0 0 15px;
}

.tab-content .bg-light:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tab-content .bg-light h5 {
    color: var(--primary-dark);
    position: relative;
    padding-left: 15px;
}

.tab-content .bg-light h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.tab-content .bg-light p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive Design for Tabs */
@media (max-width: 992px) {
    #mainScheduleTabs .nav-link {
        font-size: 13px;
        padding: 14px 12px;
    }

    #mainScheduleTabs .nav-link i {
        font-size: 16px;
    }

    .nav-pills .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #mainScheduleTabs {
        flex-direction: column;
        gap: 8px;
    }

    #mainScheduleTabs .nav-item {
        width: 100%;
    }

    #mainScheduleTabs .nav-link {
        padding: 16px;
        font-size: 14px;
    }

    .nav-pills {
        flex-direction: column;
        gap: 8px;
    }

    .nav-pills .nav-link {
        width: 100%;
        text-align: center;
    }

    .timeTableSchedule {
        padding: 20px 0;
    }
}

/* Loading Animation for Tab Switching */
.tab-pane {
    position: relative;
}

.tab-pane.fade {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Enhanced Alert Box */
.scheduleTable .alert-info {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.15) 0%, rgba(242, 34, 91, 0.15) 100%);
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(249, 234, 0, 0.2);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(249, 234, 0, 0.2);
    }

    50% {
        box-shadow: 0 8px 35px rgba(242, 34, 91, 0.3);
    }
}

.scheduleTable .alert-info i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Scroll Animation */
@keyframes scrollIndicate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.scheduleTable .bi-arrow-down-circle {
    animation: scrollIndicate 1.5s ease-in-out infinite;
}

/* Hover Effects for Better UX */
.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}



.otherContentDetails {
    padding: 70px 0px;
    background-color: var(--primary-color);
}

.textContentArea {
    padding: 32px 24px;
    border-radius: 10px;
    height: 100%;
    max-height: 570px;
    overflow: hidden;
    position: relative;
}

.textContentArea h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.textContentArea.bg-first {
    background-color: var(--primary-light);
    color: var(--gray-100);
}

.textContentArea h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0px;
}

.textContentArea p {
    margin-bottom: 12px;
}

.textContentArea p:last-child {
    margin-bottom: 0;
}

.overflowBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
}

.overflowBtn button {
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    color: var(--primary-light);
    font-weight: 600;
}

/* =========================== Judge Section Area CSS =========================== */
.judgeSectionArea {
    padding: 75px 0px;
}

.judgeContentArea {
    padding: 32px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.judgeContentArea h3,
.smallJudgeContent h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
}

.judgeContentArea h6 {
    font-size: 20px;
    margin: 16px 0px;
    font-weight: 600;
}

.judgeContentArea ul {
    list-style: decimal;
    padding-left: 20px !important;
}

.judgeContentArea ul li {
    margin-bottom: 12px;
    /* font-size: 14px; */
}

.judgeContentArea p {
    /* font-size: 14px; */
}

.alertArea {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.1) 0%, rgba(242, 34, 91, 0.1) 100%);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-light);
}

.judgeContentArea.anotherStyle p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-400);
}

.judgeContentArea.anotherStyle p:last-child {
    margin-bottom: 0;
}

.smallJudgeContent {
    padding: 32px 24px;
    border-radius: 10px;
}

.smallJudgeContent.one {
    background-color: var(--primary-light);
}

.smallJudgeContent.two {
    background-color: var(--primary-color);
}

.smallJudgeContent h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.smallJudgeContent ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.smallJudgeContent ul {
    margin-bottom: 20px !important;
    list-style: disc;
    padding-left: 20px !important;
}

.smallJudgeContent p {
    margin-bottom: 8px;
    font-size: 14px;
}

.smallJudgeContent a {
    display: inline-block;
    font-weight: 700;
    color: #f9ea00;
    opacity: .9;
    font-size: 14px;
    margin-bottom: 0px;
}

.smallJudgeContent.one a {
    display: block;
    margin-bottom: 8px;
}

.smallJudgeContent.two ul {
    list-style: none;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.smallJudgeContent.two ul li {
    font-weight: 600;
    font-size: 16px !important;
}

.smallJudgeContent.two ul li:last-child {
    margin-bottom: 0;
}

.smallJudgeContent.two ul li a {
    color: var(--primary-light);
}


.previousIdol {
    padding: 75px 0px;
}

.imageSider .image1,
.imageSider .image2 {
    width: 50%;
}

.imageSider .image1 img {
    max-height: 315px;
    width: 100%;
    object-fit: contain;
    background: #cb0101;
    border-radius: 6px;
}

.imageSider .image2 img:first-child {
    height: 165px;
    border-radius: 6px;
}

.imageSider .image2 img:last-child {
    height: 135px;
    border-radius: 6px;
}

.bookingArea {
    padding: 24px;
    background-color: var(--primary-light);
    border-radius: 6px;
    position: sticky;
    top: 20px;
}

.bookingArea img {
    height: 175px;
    object-fit: contain;
    background: #0e0e10;
}

.imageSiderAsa img {
    width: 100%;
    border-radius: 10px;
}

/* =================== Natya Idol Area CSS =================== */
.natyaIdolArea {
    padding: 75px 0px;
}

/* =================== Additional CSS Classes for Competition Details =================== */
.offcanvas-logo {
    height: 50px;
}

.videoPlayers iframe {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.icon-primary-light {
    color: var(--primary-light);
}

.link-primary-light {
    color: var(--primary-light);
    font-weight: 600;
}

.evaluation-box {
    background: var(--white);
    border: 2px solid var(--primary-light);
}

.evaluation-box h5 {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.additional-observation-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
}

.additional-observation-box h5 {
    color: var(--primary-dark);
}

.idolContents {
    height: 100%;
    padding: 32px 24px;
    border-radius: 10px;
}

.idolContents.one {
    background-color: var(--primary-color);
}

.idolContents.two {
    background-color: var(--primary-light);
}

.idolContents h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.idolContents h4 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 0;
}

.idolContents.two ul {
    margin: 24px 0px !important;
}

.idolContents.two ul li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.idolContents.two ul li a {
    color: #ffffff;
    opacity: .9;
}

.pptArea img {
    width: 100%;
    border-radius: 10px;
}

/* Modern Info Table Styles */
.modern-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modern-info-table tbody tr {
    transition: all var(--transition-base);
    border-bottom: 2px solid var(--gray-200);
}

.modern-info-table tbody tr:last-child {
    border-bottom: none;
}

.modern-info-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.05) 0%, rgba(242, 34, 91, 0.05) 100%);
    transform: translateX(5px);
}

.modern-info-table td {
    padding: 20px 24px;
    font-family: var(--font-body);
    border-right: 2px solid var(--gray-200);
    border-bottom: 2px solid var(--gray-200);
}

.modern-info-table td:last-child {
    border-right: none;
}

.modern-info-table .table-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-900);
    width: 60%;
    position: relative;
}

.modern-info-table .table-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0;
    transition: all var(--transition-base);
}

.modern-info-table tbody tr:hover .table-label::before {
    opacity: 1;
    left: -10px;
}

.modern-info-table .table-value {
    text-align: right;
    width: 40%;
}

.modern-info-table .table-value a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(242, 34, 91, 0.2);
}

.modern-info-table .table-value a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(242, 34, 91, 0.4);
}

.pptTable h4 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.atamicLogo img {
    display: block;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.locationTaglister {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.locationTaglister a.badgeOfLocation {
    padding: 8px 16px;
    border-radius: 100px;
    background-color: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    transition: .3s;
}

.locationTaglister a.badgeOfLocation:hover {
    background-color: var(--primary-light);
    color: var(--gray-100);
}


/* ================== Idol Score 2024 CSS ================== */
.idolScore2024 {
    padding: 75px 0px;
}

.tableDataOfWinerBox {
    height: 100%;
}

.tableDataOfWinerBox.one {
    border: 1px solid var(--primary-light);
    border-radius: 10px;
}

.tableDataOfWinerBox.one h4 {
    background-color: var(--primary-light);
    color: var(--gray-100);
}

.tableDataOfWinerBox.two {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.tableDataOfWinerBox.two h4 {
    background-color: var(--primary-color);
}

.tableDataOfWinerBox h4 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 16px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0;
}

.tableDataOfWiner {
    padding: 0px 24px;
    border-radius: 10px;
}

.tableDataOfWiner .winnersList {
    border-bottom: 1px solid var(--gray-100);
    padding: 14px 0px;
}

.tableDataOfWiner .winnersList:last-child {
    border-bottom: 0px;
    padding-bottom: 20px;
}

.tableDataOfWiner .winnersList h6 {
    font-size: 15px;
    font-weight: 600;
    width: 180px;
}

.tableDataOfWiner .winnersList h6,
.tableDataOfWiner .winnersList p {
    margin-bottom: 0;
}

.resutlsArea {
    text-align: center;
    background-color: var(--primary-light);
    padding: 32px 24px;
    border-radius: 10px;
}

.resutlsArea h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.gooupLinkBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.idolScore2024 .scheduleHeader img {
    display: block;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* ================== Results Table Styles ================== */
.results-table-container {
    margin-bottom: 24px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

.results-table-container:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.results-table-container:last-child {
    margin-bottom: 0;
}

.results-table-container .table-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.results-table-container .table-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.results-table thead {
    background: var(--gradient-primary);
}

.results-table thead tr th {
    padding: 18px 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--primary-light);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-table thead tr th:first-child {
    border-top-left-radius: 10px;
}

.results-table thead tr th:last-child {
    border-top-right-radius: 10px;
}

.results-table tbody tr {
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.results-table tbody tr:last-child {
    border-bottom: none;
}

.results-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.08) 0%, rgba(242, 34, 91, 0.08) 100%);
    transform: scale(1.01);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.results-table tbody tr.winner-row {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.15) 0%, rgba(242, 34, 91, 0.15) 100%);
    border-left: 5px solid var(--primary-light);
}

.results-table tbody tr.winner-row:hover {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.25) 0%, rgba(242, 34, 91, 0.25) 100%);
}

.results-table tbody td {
    padding: 16px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-700);
    text-align: center;
    border-right: 1px solid var(--gray-200);
}

.results-table tbody td:last-child {
    border-right: none;
    text-align: left;
    max-width: 300px;
}

.results-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.results-table tbody td.total-score {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-light);
    background: rgba(242, 34, 91, 0.05);
}

.results-table tbody tr.winner-row td.total-score {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(242, 34, 91, 0.3);
}


.resultChart {
    padding: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.resultChart h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    /* margin-top: 24px; */
}

.resultChart p {
    text-align: center;
    margin-bottom: 24px;
}

.allGroupLinkBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.smallContentData {
    background-color: var(--primary-color);
    padding: 36px 24px;
    border-radius: 10px;
}

.smallContentData h6 {
    font-size: 20px;
    margin: 0;
}

.smallContentData.bgTwo {
    background-color: var(--primary-light);
    color: #ffffff;
}

.linkerListing {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.linkerListing a {
    color: var(--primary-light);
}

.bookingTxt h4 {
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
}

.bookingTxt p {
    font-size: 13px;
    color: #ffffff;
}

/* Responsive table styles */
@media (max-width: 1200px) {

    .results-table thead tr th,
    .results-table tbody td {
        padding: 14px 10px;
        font-size: 13px;
    }

    .results-table-container .table-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {

    .results-table thead tr th,
    .results-table tbody td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .results-table-container {
        padding: 20px;
    }

    .results-table-container .table-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {

    .results-table thead tr th,
    .results-table tbody td {
        padding: 10px 6px;
        font-size: 11px;
    }

    .results-table tbody td:last-child {
        max-width: 200px;
        font-size: 10px;
    }

    .results-table-container {
        padding: 15px;
        margin-bottom: 30px;
    }

    .results-table-container .table-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* ================== Sticky Sidebar Styles ================== */
.idolScore2024 .position-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .idolScore2024 .position-sticky {
        position: relative;
        top: 0;
    }
}

.examSchedulerForm {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 32px 24px;
}

.examSchedulerForm h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 36px;
    text-align: center;
    position: relative;
}

.examSchedulerForm h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.examSchedulerForm form .form-group label {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.examSchedulerForm form .form-group .form-control,
.examSchedulerForm form .form-group .form-select {
    padding: 12px;
}

.examSchedulerForm form .form-group .form-control:focus,
.examSchedulerForm form .form-group .form-select:focus {
    box-shadow: none !important;
}


.syllabusCard {
    border: 1px solid var(--primary-color);
    padding: 16px;
    border-radius: 10px;
    transition: .3s;
}

.syllabusCard h4 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-top: 16px;
    transition: .3s;
}

.syllabusCard:hover h4 {
    color: var(--primary-color);
}

.syllabusCard p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.4;
}

.syllabusCard img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background-color: #0e0e10;
    border-radius: 10px;
}

.teamMemberCard {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    height: 100%;
}

.teamMemberCard img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background-color: #0e0e10;
    border-radius: 10px 10px 0px 0px;
}

.teamMemberCard iframe {
    width: 100%;
}

.teamMemberCard.awardCard img {
    height: 350px;
}

.festivalCard img,
.festivalCard iframe {
    height: 350px;
    border-radius: 10px;
}

.teamMemberCard .memberDtl {
    padding: 16px;
    text-align: center;
}

.teamMemberCard .memberDtl h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.teamMemberCard .memberDtl p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--gray-500);
    opacity: .8;
}

.backgroundPrimary {
    background-color: var(--primary-light);
    border: none;
    height: 100%;
}

.groupOfBtns {
    position: sticky;
    top: 20px;
    border: 1px solid var(--primary-light);
    padding: 32px 24px;
    border-radius: 10px;
}

.suriyaPoster img {
    border-radius: 10px;
    border-radius: 5px;
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--primary-color);
    border-radius: 10px;
    max-width: fit-content;
}

.support-content img {
    height: 50px;
}

.support-content p {
    font-size: 18px;
}

.support-content p {
    color: var(--gray-700);
}

.videoPromo iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.videoPromo h4 {
    font-size: 32px;
    margin-bottom: 20px;
}

.videoPromo {
    position: sticky;
    top: 20px;
}

.imageSlidertent .festivalSwiper .swiper-slide img {
    width: 100%;
}

/* Festival Swiper Navigation Styles */
.festivalSwiper .swiper-button-next,
.festivalSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.festivalSwiper .swiper-button-next::after,
.festivalSwiper .swiper-button-prev::after {
    display: none;
}

.festivalSwiper .swiper-button-next i,
.festivalSwiper .swiper-button-prev i {
    font-size: 24px;
    color: var(--primary-dark);
    transition: all var(--transition-base);
}

.festivalSwiper .swiper-button-next:hover,
.festivalSwiper .swiper-button-prev:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 34, 91, 0.4);
}

.festivalSwiper .swiper-button-next:hover i,
.festivalSwiper .swiper-button-prev:hover i {
    color: var(--white);
}

/* Festival Swiper Pagination */
.festivalSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-400);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.festivalSwiper .swiper-pagination-bullet-active {
    background: var(--gradient-primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.innerTxtData {
    padding: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    margin-top: 24px;
}

.innerTxtData h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.innerTxtData a {
    color: var(--gray-700);
}

.otherCard {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.otherCard img {
    width: 100%;
    border-radius: 10px;
}

.otherCard a h6 {
    font-size: 20px;
    color: var(--gray-700);
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
    margin-bottom: 0;
}

.contentTxt {
    margin-bottom: 65px;
}

.onlyTxtContent {
    padding: 32px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.onlyTxtContent h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contentTxt .support-content {
    background-color: var(--primary-light);
}

.contentTxt .support-content h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0px;
}

.contentTxt .support-content p {
    font-size: 14px;
    color: #ffffff;
}

.pressArea {
    padding: 24px;
    background-color: var(--primary-light);
    border-radius: 10px;
}

.pressArea h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.pressArea ul li a {
    color: var(--gray-50);
    font-size: 14px;
}

.pressArea ul li {
    margin-bottom: 10px;
}

.donateSupport {
    padding: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.donateSupport h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.donateSupport img {
    height: 100px;
    display: block;
    margin: auto;
}

.cardFestival {
    padding: 24px;
    /* border-radius: 10px; */
    background-color: var(--primary-color);
    text-align: center;
    height: 100%;
}

.cardFestival.two {
    background-color: var(--primary-light);
}

.cardFestival img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.cardFestival h4 {
    font-size: 24px;
    margin: 16px 0px;
}

.pressVideo iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.pressContent h3 {
    font-size: 32px;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.scheduleSection h2 {
    font-size: 42px;
    font-weight: 700;
}

.pressVideo img {
    width: 100%;
    border-radius: 10px;
}

.day-header h3,
.daySchedule h3 {
    color: var(--gray-700);
    font-size: 32px;
}

.infoCard {
    background-color: var(--primary-light);
}

.infoCard h5 {
    font-size: 24px;
}

.awardWinnerCard {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #050402;
    transition: .4s;
}

.awardWinnerCard img {
    width: 100%;
    height: 275px;
    object-fit: contain;
    background-color: #050402;
}

.awardWinnerCard .winnerNames {
    padding: 20px;
    text-align: center;
}

.awardWinnerCard:hover .winnerNames h6 {
    color: var(--primary-light);
}

.awardWinnerCard .winnerNames h6 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
    color: #050402;
}

/* Previous Winners Section */
.previousWinnerYearCard {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}

.previousWinnerYearCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.yearCardHeader {
    background: var(--gradient-primary);
    padding: 20px;
    text-align: center;
}

.yearCardHeader h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-100);
    margin: 0;
}

.yearCardBody {
    padding: 25px 20px;
}

.winnerItem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.winnerItem:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.winnerItem>i {
    font-size: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.winnerDetails h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
    line-height: 1.3;
}

.winnerDetails p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.winnerDetails p i {
    margin-right: 5px;
    color: var(--primary-light);
    font-size: 12px;
}

/* ================= Gallery Styles ================= */

/* Gallery Tab Navigation */
.photoGalleryTabs .nav-pills {
    gap: 15px;
    border-bottom: 0px;
}

.photoGalleryTabs .nav-pills .nav-link {
    background-color: var(--gray-100);
    color: var(--gray-800);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.photoGalleryTabs .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.photoGalleryTabs .nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.photoGalleryTabs .nav-pills .nav-link::after {
    display: none;
}

.glightbox-clean .gslide-title {
    margin-bottom: 0 !important;
}

/* Gallery Card Styles */
.gallery-card {
    display: block;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    background: var(--white);
    text-decoration: none !important;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
    background-color: #050402;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    display: none;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

.gallery-card-body {
    padding: 20px;
    text-align: center;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--gray-900);
    font-family: var(--font-heading);
}

/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
    background: var(--gradient-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.glightbox-clean .gslide-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .4s;
}

a .pressCard {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

a .pressCard:hover h6 {
    color: var(--primary-light);
}

.pressCard img {
    width: 100%;
    height: 175px;
    object-fit: contain;
    background-color: #050402;
}

.headings {
    padding: 16px 12px;
    text-align: center;
}

a .headings h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #050402;
}

.timerSchedule {
    border: 1px solid var(--primary-color);
    padding: 32px 24px;
    border-radius: 10px;
    height: 100%;
}

.timerSchedule h6 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.timerSchedule.two h6 {
    color: #ffffff;
    opacity: .8;
}

.timerSchedule ul {
    padding-left: 20px !important;
}

.timerSchedule ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.timerSchedule.two ul li {
    color: #ffffff;
    opacity: .8;
}




/* ================== Compact Day Card Styles ================== */
.dayCardCompact {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.dayCardCompact:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.dayCardHeader {
    background: var(--gradient-primary);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dayCardCompact.day2 .dayCardHeader {
    background: linear-gradient(135deg, #f2225b 0%, #f9ea00 100%);
}

.dayCardCompact.day3 .dayCardHeader {
    background: linear-gradient(135deg, #1a1a1a 0%, #f2225b 100%);
}

.dayBadge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dayCardHeader h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.dayCardBody {
    padding: 16px;
    max-height: 600px;
    overflow-y: auto;
}

/* Custom scrollbar for day card body */
.dayCardBody::-webkit-scrollbar {
    width: 4px;
}

.dayCardBody::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.dayCardBody::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Event Item */
.eventItem {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--gray-50);
    border-left: 3px solid var(--primary-color);
    transition: all var(--transition-base);
}

.eventItem:hover {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.eventItem:last-child {
    margin-bottom: 0;
}

.eventTime {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 60px;
    padding-top: 2px;
}

.eventInfo h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
    line-height: 1.3;
}

.eventInfo h6 i {
    color: var(--primary-light);
    margin-right: 4px;
}

.eventInfo p {
    font-size: 11px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

/* Event Item Variants */
.eventItem.highlight {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.15) 0%, rgba(242, 34, 91, 0.1) 100%);
    border-left-color: var(--primary-light);
}

.eventItem.break {
    background: var(--gray-100);
    border-left-color: var(--gray-400);
}

.eventItem.break .eventInfo h6 {
    color: var(--gray-600);
}

.eventItem.award {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(249, 234, 0, 0.1) 100%);
    border-left-color: #FFD700;
}

.eventItem.featured {
    background: linear-gradient(135deg, rgba(242, 34, 91, 0.1) 0%, rgba(249, 234, 0, 0.05) 100%);
    border-left-color: var(--primary-light);
}

/* Conference Block */
.conferenceBlock {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.conferenceBlock h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--primary-color);
}

.conferenceBlock h6 i {
    color: var(--primary-light);
    margin-right: 4px;
}

.conferenceBlock ul {
    padding-left: 16px !important;
    margin-bottom: 6px !important;
}

.conferenceBlock ul li {
    font-size: 11px;
    color: var(--gray-700);
    margin-bottom: 3px;
    list-style: disc;
}

.conferenceBlock small {
    font-size: 10px;
    color: var(--primary-light);
    font-weight: 600;
}

/* Keynote Compact */
.keynoteCompact {
    background: var(--gradient-primary);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.keynoteCompact>i {
    font-size: 24px;
    color: var(--white);
}

.keynoteCompact h6 {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.keynoteCompact p {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Responsive Styles for Compact Cards */
@media (max-width: 992px) {
    .dayCardBody {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .dayCardHeader {
        padding: 14px 16px;
    }

    .dayCardHeader h4 {
        font-size: 14px;
    }

    .dayCardBody {
        padding: 12px;
        max-height: none;
    }

    .eventItem {
        padding: 8px 10px;
    }

    .eventTime {
        min-width: 55px;
        font-size: 10px;
    }

    .eventInfo h6 {
        font-size: 12px;
    }
}

/* ================== Session Card Styles - Conference 2024 ================== */
.sessionCard {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.sessionCard:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.sessionCard.session2 {
    border-color: var(--primary-light);
}

.sessionCard.session3 {
    border-color: var(--primary-color);
}

.sessionCard.session4 {
    border-color: var(--primary-light);
}

/* Session Header */
.sessionHeader {
    background: var(--gradient-primary);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sessionCard.session2 .sessionHeader {
    background: linear-gradient(135deg, #f2225b 0%, #ff6b8a 100%);
}

.sessionCard.session3 .sessionHeader {
    background: linear-gradient(135deg, #f9ea00 0%, #ffb700 100%);
}

.sessionCard.session4 .sessionHeader {
    background: linear-gradient(135deg, #1a1a1a 0%, #f2225b 100%);
}

.sessionBadge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
}

.sessionBadge i {
    font-size: 20px;
    color: var(--white);
}

.sessionBadge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sessionDateTime {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.sessionDateTime i {
    font-size: 14px;
}

.sessionTime {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Session Title */
.sessionTitle {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
}

.sessionTitle h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sessionTitle h4 i {
    color: var(--primary-light);
    font-size: 24px;
}

.sessionSubtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    font-style: italic;
}

/* Session Speakers */
.sessionSpeakers {
    padding: 20px 24px;
}

.sessionSpeakers h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sessionSpeakers h6 i {
    color: var(--primary-light);
}

.speakerList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speakerItem {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.speakerItem:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
    border-left-color: var(--primary-light);
}

.speakerName {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speakerName i {
    color: var(--primary-light);
    font-size: 14px;
}

.speakerTopic {
    font-size: 13px;
    color: var(--gray-600);
    padding-left: 22px;
    line-height: 1.4;
}

/* Session Moderator */
.sessionModerator {
    background: linear-gradient(135deg, rgba(249, 234, 0, 0.1) 0%, rgba(242, 34, 91, 0.1) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--gray-200);
}

.sessionModerator i {
    color: var(--primary-light);
    font-size: 18px;
}

.sessionModerator span {
    font-size: 14px;
    color: var(--gray-700);
}

.sessionModerator strong {
    color: var(--primary-dark);
}

/* Keynote Card */
.keynoteCard {
    background: var(--gradient-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(242, 34, 91, 0.3);
    position: relative;
}

.keynoteCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' 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");
    opacity: 0.5;
}

.keynoteContent {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.keynoteIcon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.keynoteIcon i {
    font-size: 40px;
    color: var(--white);
}

.keynoteInfo {
    text-align: center;
}

.keynoteLabel {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.keynoteInfo h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.keynoteDescription {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

.keynoteDecor {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keynoteDecor i {
    font-size: 30px;
    color: var(--white);
    opacity: 0.8;
}

/* Session Card Responsive */
@media (max-width: 992px) {
    .sessionHeader {
        flex-direction: column;
        text-align: center;
    }

    .sessionDateTime {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sessionTitle h4 {
        font-size: 20px;
    }

    .keynoteContent {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .keynoteInfo h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .sessionCard {
        border-radius: 12px;
    }

    .sessionHeader {
        padding: 16px 20px;
    }

    .sessionBadge {
        padding: 6px 12px;
    }

    .sessionBadge span {
        font-size: 12px;
    }

    .sessionTitle {
        padding: 20px;
    }

    .sessionTitle h4 {
        font-size: 18px;
    }

    .sessionSpeakers {
        padding: 16px 20px;
    }

    .speakerItem {
        padding: 12px 14px;
    }

    .speakerName {
        font-size: 14px;
    }

    .speakerTopic {
        font-size: 12px;
    }

    .sessionModerator {
        padding: 14px 20px;
    }

    .keynoteIcon {
        width: 60px;
        height: 60px;
    }

    .keynoteIcon i {
        font-size: 30px;
    }

    .keynoteInfo h3 {
        font-size: 22px;
    }

    .keynoteDescription {
        font-size: 14px;
    }
}



/* ========================== Location Context CSS ========================== */
.locationContext {
    padding: 75px 0px;
}

.innerTitle {
    border-left: 5px solid var(--primary-light);
    padding-left: 20px;
    border-radius: 10px;
}

.innerTitle h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.innerTitle p {
    margin-bottom: 0;
    font-size: 16px;
}
a .judgesCards{
    transition: .3s;
}
a .judgesCards img {
    height: 220px;
    width: 100%;
    background-color: #050402;
    object-fit: contain;
}
a .judgesCards:hover h5{
    color: var(--primary-light);
    transition: .3s;
}
a .judgesCards h5 {
    font-size: 18px;
    color: #050402;
    text-transform: capitalize;
    margin: 16px 0px 4px 0px;
}

a .judgesCards p {
    margin-bottom: 0;
    font-size: 14px;
    color: #050402;
}

.special-performance {
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--primary-light);
    padding: 20px;
    border-radius: 6px;
}

.perf-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.perf-info p.performer-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 6px;
}

.perf-info p {
    font-size: 14px;
    margin-bottom: 24px;
}

.contextScheduler {
    border-radius: 6px;
    background-color: #f2225b;
    padding: 24px;
}

.contextScheduler h4 {
    font-size: 30px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #ffffff;
}

.contextScheduler p {
    font-size: 14px;
    color: #ffffff;
}

.contextScheduler .table-responsive table {
    width: 100%;
}

.table-responsive table thead tr th {
    background: var(--gradient-primary);
}

.contextScheduler .table-responsive table tbody tr:nth-child(odd) td {
    white-space: nowrap;
}

.contextScheduler .table-responsive table tbody tr td:last-child {
    min-width: inherit;
}

.contextScheduler .table-responsive::-webkit-scrollbar {
    width: 5px;
}

/* ========================== Custom Scrollbar CSS ========================== */
.contextScheduler .table-responsive::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.contextScheduler .table-responsive::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}
.contextScheduler .table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}

/* ========================== Results Section CSS ========================== */
.resultsSection {
    background: var(--gray-50);
    padding: 65px 0px;
}

.resultsSection .categoryNav .nav-pills .nav-link {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-base);
}

.resultsSection .categoryNav .nav-pills .nav-link:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.resultsSection .categoryNav .nav-pills .nav-link.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.resultsSection .resultsCard {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.resultsSection .cardHeader {
    background: var(--gradient-primary);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.resultsSection .cardHeader h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.resultsSection .cardHeader .maxScore {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}

.resultsSection .resultsTable {
    width: 100%;
    border-collapse: collapse;
}

.resultsSection .resultsTable thead th {
    background: var(--gray-100);
    padding: 10px 8px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid var(--gray-200);
}

.resultsSection .resultsTable .judgeHeader th {
    background: var(--gray-800);
    color: var(--white);
    font-size: 12px;
}

.resultsSection .resultsTable .judgeHeader th.judgeGroup {
    background: linear-gradient(135deg, #f9ea00 0%, #f2225b 100%);
}

.resultsSection .resultsTable .criteriaHeader th {
    background: var(--gray-100);
    font-size: 14px;
    padding: 12px 8px;
    color: inherit;
    text-transform: capitalize;
}

.resultsSection .table-responsive table tbody tr td:last-child {
    min-width: inherit;
}

.resultsSection .resultsTable .maxScoreRow td {
    background: var(--gray-50);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-light);
    text-align: center;
    padding: 12px 4px;
    border: 1px solid var(--gray-200);
}

.resultsSection .resultsTable tbody td {
    padding: 12px 8px !important;
    border: 1px solid var(--gray-100);
    font-size: 13px;
    color: var(--gray-800);
    text-align: center;
}

.resultsSection .resultsTable tbody tr:hover {
    background: var(--gray-50);
}

.resultsSection .fullScoreTable {
    font-size: 12px;
}

.resultsSection .fullScoreTable tbody td:first-child {
    text-align: left;
    padding-left: 12px;
    white-space: nowrap;
}

.resultsSection .fullScoreTable tbody td:last-child {
    font-weight: 600;
}

.resultsSection .groupTable thead th {
    padding: 8px 3px;
    font-size: 9px;
}

.resultsSection .groupTable tbody td {
    padding: 8px 8px;
    font-size: 13px;
}

.resultsSection .totalScore {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 13px;
    font-weight: 700;
    font-size: 13px;
}

.resultsSection .totalScore.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.resultsSection .totalScore.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.resultsSection .totalScore.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
}


.resultsSection .rank-1 td {
    background: rgba(255, 215, 0, 0.08);
}

.resultsSection .rank-2 td {
    background: rgba(192, 192, 192, 0.08);
}

.resultsSection .rank-3 td {
    background: rgba(205, 127, 50, 0.08);
}

.resultsSection .legendCard {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.resultsSection .legendCard h5 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
}

.resultsSection .criteriaGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.resultsSection .criteriaItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 13px;
}

.resultsSection .critLabel {
    color: var(--gray-700);
}

.resultsSection .critMax {
    color: var(--primary-light);
    font-weight: 600;
}

.resultsSection .legendNote {
    margin-top: 12px;
    font-size: 16px;
    color: var(--gray-600);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .resultsSection .cardHeader {
        padding: 12px 16px;
    }

    .resultsSection .cardHeader h3 {
        font-size: 20px;
    }

    .resultsSection .resultsTable thead th,
    .resultsSection .resultsTable tbody td {
        padding: 6px 4px;
        font-size: 10px;
    }

    .resultsSection .categoryNav .nav-pills .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .resultsSection .groupTable thead th {
        font-size: 8px;
        padding: 6px 2px;
    }

    .resultsSection .groupTable tbody td {
        font-size: 9px;
        padding: 6px 2px;
    }
}

.innerJudge{
    padding: 65px 0px;
}
.judgesImage img{
    width: 100%;
}
.judgDetails h4{
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}
.judgDetails h5{
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}