/* Local Font: Outfit (Weights: 300, 400, 500, 700) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Outfit-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Outfit-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Outfit-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Outfit-Bold.woff2') format('woff2');
    font-display: swap;
}

:root {
    --primary-color: #1a006c;
    --secondary-color: #d5a702;
    --silver-color: #c0c0c0;
    --tertiary-color: #c075f5;
    --white: #ffffff;
    --dark-bg: #0b0033;
    --transition: all 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    cursor: auto;
}

#about,
#categories {
    scroll-margin-top: 100px;
}

/* Offset other internal links by 50px except #why-nominate */
#nomination-fees,
#past-jury,
#contact-us {
    scroll-margin-top: 50px;
}

body {
    background-color: var(--white);
    text-align: center;
}

body.sidebar-open {
    overscroll-behavior: none;
}

.text-purple {
    color: var(--primary-color) !important;
}

/* Header Styles */
header {
    padding: 20px 5%;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(27, 0, 117, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.header-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
    z-index: 10001;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header.header-scrolled {
    padding: 12px 5%;
    background-color: rgba(27, 0, 117, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin: 0 10px;
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    text-align: left;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

.nav-item:hover .dropdown-content,
.nav-item.open .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.nested-dropdown-content.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Nested Dropdown */
.nested-dropdown {
    position: relative;
}

.nested-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1002;
}

.nested-dropdown:hover .nested-dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.nested-dropdown:hover>a {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

/* ==========================================================================
   Animations & Custom Cursor
   ========================================================================== */

/*.cursor-dot {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color), var(--secondary-color), #f5d045);*/
/*    background-size: 300% 300%;*/
/*    border-radius: 50%;*/
/*    pointer-events: none;*/
/*    z-index: 99999;*/
/*    opacity: 0.6;*/
/*    transition: transform 0.1s ease-out;*/
/*    will-change: transform;*/
/*    box-shadow: 0 0 10px rgba(188, 63, 252, 0.6), 0 0 15px rgba(213, 167, 2, 0.6);*/
/*    border: 3px solid var(--secondary-color);*/
/*    animation: cursorGradientShift 3s ease infinite, cursorBorderShift 3s ease infinite;*/
/*}*/

@keyframes cursorBorderShift {

    0%,
    100% {
        border-color: var(--secondary-color);
    }

    /* Gold border when bg is likely purple */
    50% {
        border-color: var(--primary-color);
    }

    /* Purple border when bg is likely gold */
}

@keyframes cursorGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .cursor-dot {
        display: none !important;
    }
}

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-fade {
    transition: opacity 1s ease-in-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-fade.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered Delays for Cards */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Button Links */
.nav-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.nav-btn-purple {
    background-color: transparent;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--silver-color);
}

.nav-btn-purple:hover {
    background-color: var(--silver-color);
    color: var(--primary-color);
}

/* Hamburger */
.hamburger {
    display: none;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    z-index: 10001;
}

/* Sidebar */
.sidebar {
    position: absolute;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background: #0b0033;
    /* Solid Dark Background for full coverage */
    z-index: 9000;
    padding: 60px 40px;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    text-align: left;
}

.sidebar.active {
    right: 0;
    height: auto;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white) !important;
    font-size: 35px;
    cursor: pointer;
    z-index: 2100;
}

.sidebar-menu {
    list-style: none;
    margin-top: 50px;
}

.sidebar-item {
    margin-bottom: 25px;
}

.sidebar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    display: block;
    text-align: left;
    transition: var(--transition);
}

.sidebar-link:hover {
    color: var(--secondary-color);
}

/* Sidebar Dropdown - Now controlled via JS for toggle behavior */
.sidebar-dropdown {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    transition: var(--transition);
}

.sidebar-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 8000;
    display: none;
    backdrop-filter: blur(3px);
    overscroll-behavior: none;
    touch-action: none;
}

.sidebar-overlay.active {
    display: block;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 5px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.footer-grid>* {
    flex: 1 1 18%;
}

.footer-logo {
    flex: 1 1 10%;
}

.footer-logo img {
    width: 140px;
}

.footer-heading {
    color: var(--tertiary-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 15px;
    margin: 10px auto 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.archive-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}

.archive-links a {
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    padding-right: 5px;
    font-size: 14px;
    border-right: 1px solid #fff;
    transition: var(--transition);
    white-space: nowrap;
}

.archive-links a:last-child {
    border-right: none;
}

.archive-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-grid>* {
        width: 100%;
    }
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.loader-text {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
}

.loader-text span {
    color: var(--secondary-color);
}

.loader-bar {
    width: 0;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto;
    border-radius: 2px;
    animation: loadingBar 1s ease-in-out forwards;
}

.loader-status {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

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

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes loadingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: var(--primary-color) url('../img/banner/bannerbg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0 0;
}

/* Bottom Right Shadow as requested */
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 75%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
}

.banner-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Left Content Refinement */
.banner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.organized-by {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.org-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.org-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.org-header span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.org-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
}

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

.hero-main-group {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.gfa-icon-large-img {
    width: 60%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(213, 167, 2, 0.3));
    animation: bannerLogoGlow 4s ease-in-out infinite;
}

.hero-title {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
    text-align: left;
}

.hero-year-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.year-line {
    width: 100px;
    height: 4px;
    background: #d5a702;
}

.year-highlight {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(to right, #d5a702, #f5d045, #d5a702);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-meta {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
}

.meta-item svg {
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
}

.banner-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.btn-nominate,
.btn-register-banner {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn-nominate:hover,
.btn-register-banner:hover {
    background: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(213, 167, 2, 0.4);
}

.btn-login-banner {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid var(--silver-color);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn-login-banner:hover {
    background: var(--silver-color);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.4);
}

.btn-nominate {
    padding: 20px 60px;
    font-size: 28px;
    width: fit-content;
}

.auth-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-register-banner {
    padding: 12px 30px;
    font-size: 16px;
}

/* Banner Right content */
.banner-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    position: relative;
    padding-bottom: 40px;
}

.award-podium-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trophy-img {
    width: 90%;
    z-index: 5;
    padding-top: 20px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    /* animation: floatTrophy 6s ease-in-out infinite; */
}

.podium-cloth {
    width: 500px;
    height: 380px;
    background: radial-gradient(circle at top, #3a0099, #1a006c);
    border-radius: 50% / 100% 100% 0 0;
    margin-top: -120px;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    position: relative;
}

.podium-cloth::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    border-radius: inherit;
}

.rotating-badge {
    position: absolute;
    right: 0%;
    top: 10%;
    width: 200px;
    height: 200px;
}

@keyframes floatTrophy {

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

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

.badge-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(213, 167, 2, 1);
    border-radius: 50%;
}

.badge-border-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(213, 167, 2, 1);
    border-radius: 50%;
}

.circular-text {
    width: 100%;
    height: 100%;
    animation: rotateInfinite 20s linear infinite;
}

.circular-text svg {
    width: 100%;
    height: 100%;
}

.star-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    transform: translate(-50%, -50%);
    animation: rotateInfiniteStar 15s linear infinite, pulseInfinite 3s ease-in-out infinite;
}

@keyframes rotateInfiniteStar {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Header & Banner */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
        width: 95%;
    }

    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .org-logos {
        justify-content: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .year-highlight {
        font-size: 60px;
    }

    .banner-right {
        margin-top: 40px;
    }

    .rotating-badge {
        right: 0;
        top: 10%;
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 1101px) {

    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1450px) {

    .hero-meta,
    .organized-by {
        margin-bottom: 5px;
    }

    .banner-container {
        align-items: start;
    }

    .gfa-icon-large-img {
        width: 50%;
    }
}

@media (max-width: 1450px) {
    .hero-banner {
        min-height: 100vh;
        padding: 100px 0 0;
    }
}

@keyframes bannerLogoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(213, 167, 2, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 45px rgba(213, 167, 2, 0.8));
    }
}

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

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

@keyframes pulseInfinite {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* About & Categories Section */
.about-categories-section {
    background-color: var(--primary-color);
    background-image: url('../img/bg-img.png');
    background-size: 100% 90%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-container {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent nested containers from double-shrinking */
.container .container {
    width: 100%;
    padding: 0;
}

/* Inner Pages Main Container Styling */
.faq-section,
.rules-section,
.policy-section,
.category-section,
.winners-section {
    background-color: var(--primary-color);
    background-image: url('../img/inner-bg.png');
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
    min-height: 100vh;
}

.category-section .bordered-container,
.winners-section .bordered-container {
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    padding: 0px 0px;
    border: 1px solid rgba(213, 167, 2, 1);
    background: rgba(12, 6, 33, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* About Row */
.about-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 150px;
}

.about-left {
    flex: 0 0 35%;
    text-align: left;
}

.about-right {
    flex: 0 0 50%;
    text-align: left;
}

.about-title,
.cat-section-title,
.abt-title,
.cat-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    width: fit-content;
    position: relative;
}

/* Center titles inside text-center containers */
.text-center .about-title,
.text-center .cat-section-title,
.text-center .abt-title,
.text-center .cat-title,
.about-title.text-center,
.cat-section-title.text-center,
.abt-title.text-center,
.cat-title.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* Attach lines exactly matching text width */
.about-title::after,
.cat-section-title::after,
.abt-title::after,
.cat-title::after,
.why-nominate-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 15px;
    background: linear-gradient(to right, #d2a257, #a33bf5, #ffffff);
}

.about-title:not(.text-purple)::after {
    background: linear-gradient(90deg, #d2a257, #a33bf5, #2a0a8a);
}

.about-title {
    margin-bottom: 25px;
    color: var(--white);
}

.about-title span {
    display: block;
}

/* Hide original lines but keep them as invisible layout spacers */
.about-title-line {
    height: 0 !important;
    background: transparent !important;
    margin-top: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

/* Categories Box */
.categories-box {
    background: var(--white);
    border-radius: 30px;
    padding: 0 40px;
    box-shadow: 0 -15px 0px rgba(106, 17, 203, 1);
    color: var(--dark-bg);
    margin-bottom: 120px;
}

.categories-main-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.categories-left {
    flex: 1;
    min-width: 0;
}

.categories-right {
    flex: 0 0 28%;
    min-width: 0;
    padding-top: 25px;
}

/* Category Cards */
.category-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    margin-bottom: -100px;
}

.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 0;
    min-width: 250px;
    max-width: 350px;
}

.category-card {
    background: linear-gradient(20deg, #bc3ffc 0%, #29008d 100%);
    border-radius: 30px;
    padding: 30px 25px;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 -8px 10px rgba(188, 63, 252, 0.8), -4px 0 8px rgba(255, 255, 255, 0.4), 4px 0 8px rgba(255, 255, 255, 0.4), 0 4px 4px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 -8px 10px rgba(188, 63, 252, 0.8), -4px 0 8px rgba(255, 255, 255, 0.4), 4px 0 8px rgba(255, 255, 255, 0.4), 0 4px 4px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(106, 17, 203, 0.5);
}

.card-special {
    flex: 1 1 0;
    min-width: 250px;
    max-width: 350px;
}

@media (max-width: 1100px) {
    .category-cards {
        flex-direction: column;
        align-items: center;
    }

    .cards-stack,
    .card-special {
        flex: 1;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .categories-box {
        min-height: auto;
        padding: 40px 20px;
    }

    .category-cards {
        margin: 0;
        gap: 20px;
    }

    .rules-container,
    .faq-container {
        padding: 0 20px !important;
    }
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon img {
    width: 70px;
    height: auto;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(to right, var(--white), var(--tertiary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    opacity: 0.9;
}

.btn-more {
    display: inline-block;
    background: #29008d;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.btn-more:hover {
    background: #d5a702;
    color: #29008d;
    transform: scale(1.05);
}

.cat-section-title {
    color: #1a006c;
    margin-bottom: 15px;
    text-align: left;
}

.abt-title,
.cat-title {
    margin-bottom: 15px;
    color: var(--white);
}

.cat-title-line {
    height: 0 !important;
    background: transparent !important;
    margin: 0 auto 15px;
}

.abt-title-line {
    height: 0 !important;
    background: transparent !important;
}

.cat-trophy {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* End of Categories Desktop Styles */

/* Participants Marquee */
.past-participants-section {
    background-color: var(--primary-color);
    background-image: url('../img/bg-img-1.png');
    background-size: 100% 90%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: visible;
}

.logo-marquee-wrapper {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.logo-marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 5s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-content {
    animation-play-state: paused;
}

.logo-box {
    background: #fff;
    padding: 30px 60px;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.logo-box img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nomination-row {
    display: flex;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
    padding-top: 80px;
    text-align: left;
}

.nomination-left {
    width: 30%;
    position: sticky;
    top: 100px;
}

.nomination-right {
    width: 65%;
}

.nomination-cards-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1001px) {
    .nomination-cards-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.nomination-card {
    width: 100%;
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #2a0a8a 0%, #6a11cb 100%);
    border-radius: 30px;
    padding: 40px 35px;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 -8px 10px rgba(188, 63, 252, 0.8), -4px 0 8px rgba(255, 255, 255, 0.4), 4px 0 8px rgba(255, 255, 255, 0.4), 0 4px 4px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nomination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 -8px 10px rgba(188, 63, 252, 0.8), -4px 0 8px rgba(255, 255, 255, 0.4), 4px 0 8px rgba(255, 255, 255, 0.4), 0 4px 4px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(106, 17, 203, 0.5);
}

.nomination-card-icon img {
    width: 80px;
    height: auto;
}

.nomination-card-title {
    font-size: 28px;
    margin: 10px 0 10px;
    font-weight: 500;
    background: linear-gradient(to right, var(--white), var(--tertiary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nomination-card-title span {
    font-weight: 700;
}

.nomination-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

body {
    background-color: #0b011d;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.why-nominate-section {
    position: relative;
    padding: 80px 1%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.why-nominate-title-col {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    height: fit-content;
    flex: 0 0 30%;
    align-self: flex-start;
}

.why-nominate-title-col h2 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
    text-align: left;
    color: #ffffff;
}

.why-nominate-stack-wrapper {
    flex: 1;
    position: relative;
}

.why-nominate-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.why-nominate-card {
    width: 100%;
    background: linear-gradient(135deg, #2a0a8a 0%, #6a11cb 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #bc3ffc;
    box-shadow: 0 -8px 10px rgba(188, 63, 252, 0.8),
        -4px 0 8px rgba(255, 255, 255, 0.4),
        4px 0 8px rgba(255, 255, 255, 0.4),
        0 4px 4px rgba(0, 0, 0, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-sizing: border-box;
    text-align: left;
}

.why-nominate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 -8px 12px rgba(188, 63, 252, 0.9), 0 20px 40px rgba(106, 17, 203, 0.5);
}

.why-nominate-card-icon img {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.why-nominate-card-title {
    font-size: 26px;
    margin: 0 0 15px;
    font-weight: 500;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-nominate-card-title span {
    font-weight: 700;
}

.why-nominate-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 991px) {
    .why-nominate-section {
        flex-direction: column;
        padding-top: 50px;
    }

    .why-nominate-title-col {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .why-nominate-stack-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .why-nominate-card-row {
        display: contents;
    }

    .why-nominate-card {
        flex: 0 0 100%;
        width: 100%;
        min-height: auto;
        scroll-snap-align: start;
    }

    .why-nominate-stack-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .why-nominate-stack-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.35);
        border-radius: 10px;
    }
}

@media (max-width: 991px) {
    .nomination-row {
        flex-direction: column;
        gap: 50px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100% !important;
    }

    .nomination-left,
    .nomination-right {
        flex: 0 0 100%;
        width: 100% !important;
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .nomination-cards-stack {
        grid-template-columns: 1fr;
    }

    .nomination-card {
        width: 100%;
        margin-bottom: 30px;
        padding: 30px;
    }

    .logo-box {
        padding: 20px 40px;
        min-width: 250px;
    }

    .logo-box img {
        max-height: 50px;
    }
}

.faq-section,
.rules-section,
.policy-section,
.category-section,
.winners-section {
    padding: 100px 0 50px !important;
}

.special-jury-section {
    position: relative;
    overflow: visible;
    padding: 50px 0 50px !important;
    background-color: #ffffff;
    /* background: linear-gradient(135deg, #8a2be2, #4b0082); */
    background: url(../img/jury/awads-bg.webp);
}

.jury-section {
    position: relative;
    overflow: visible;
    padding: 50px 0 50px !important;
    background-color: var(--primary-color);
}

/* Special Jury Necklace Carousel - Refined */
.special-jury-section .carousel-container,
.jury-section .carousel-container {
    width: 95%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 0 0;
}

@media (max-width: 540px) {

    .special-jury-section .carousel-container,
    .jury-section .carousel-container {
        width: 95%;
    }
}

.special-jury-section .swiper,
.jury-section .swiper {
    width: 100%;
    padding: 50px 0 50px;
    overflow: visible;
    margin-top: 0;
}

.special-jury-section .swiper-slide,
.jury-section .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    transition: transform 0.3s ease;
    transform: none;
    box-sizing: border-box;
}

.card-inner {
    width: 100%;
    max-width: 280px;
    height: auto;
    background: linear-gradient(145deg, rgba(192, 117, 245, 1), rgba(26, 0, 108, 1));
    border-radius: 12px;
    border: 2px solid #d5a702;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 16px 10px;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transform-origin: center bottom;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.juror-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #d5a702;
    object-fit: cover;
    display: block;
    opacity: 0.96;
}

.card-info {
    margin-top: 0;
    text-align: center;
    width: 100%;
    padding: 10px 10px 0;
    transform-origin: center bottom;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.card-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #d5a702;
}

.card-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-bank {
    font-size: 16px;
    font-weight: 700;
    color: #d5a702;
    margin: 0;
}

/* Jury Section (Primary Background) Text Color Overrides */
.jury-section .card-name,
.jury-section .about-title {
    color: #d5a702 !important;
}

.jury-section .card-title {
    color: rgba(255, 255, 255, 0.8) !important;
}

.jury-section .card-bank {
    color: #d5a702 !important;
}

/* Active slide states */
.special-jury-section .swiper-slide-active .card-inner,
.jury-section .swiper-slide-active .card-inner {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.special-jury-section .swiper-slide:not(.swiper-slide-active),
.jury-section .swiper-slide:not(.swiper-slide-active) {
    cursor: pointer;
}

/* Jury Button */
.jury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    gap: 10px;
    position: relative;
    z-index: 10;
}

.jury-btn i {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.jury-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.jury-btn:hover i {
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .card-inner {
        width: 100%;
        max-width: 240px;
        padding: 20px 12px 14px;
    }

    .juror-img {
        width: 96px;
        height: 96px;
    }

    .card-name {
        font-size: 1.3rem;
    }

    .card-bank {
        font-size: 1rem;
    }
}

/* Swiper Navigation Customization for Jury */
.special-jury-section .swiper-button-next,
.special-jury-section .swiper-button-prev,
.jury-section .swiper-button-next,
.jury-section .swiper-button-prev {
    color: var(--primary-color);
    background: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    position: static !important;
    margin: 0 !important;
}

.special-jury-section .swiper-button-next::after,
.special-jury-section .swiper-button-prev::after,
.jury-section .swiper-button-next::after,
.jury-section .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.special-jury-section .swiper-button-next:hover,
.special-jury-section .swiper-button-prev:hover,
.jury-section .swiper-button-next:hover,
.jury-section .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Center Jury Controls Container */
.jury-controls {
    position: absolute;
    top: -30px;
    right: 0;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    z-index: 20;
}

/* Nominees, Winners & Glimpse Section Styling */
.nominee-winners-glimpse {
    background: linear-gradient(180deg, #1a005c 0%, #6a11cb 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-bottom: 80px !important;
}

/* Nomination Fees - Manual Implementation */
.fees-custom-section {
    width: 100%;
    padding: 80px 0;
}

.fees-custom-inner {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.fees-custom-layout {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fee-custom-card {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 40px;
    padding: 50px 40px;
    position: relative;
    border: 1.5px solid rgba(245, 197, 66, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 66, 0.2);
    transition: all 0.4s ease;
}

.fee-custom-card:hover {
    transform: translateY(-10px);
}

.gold-dot {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #f5c542, #b8860b);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px rgba(245, 197, 66, 0.8);
}

.fee-custom-header {
    text-align: center;
    margin-bottom: 40px;
}

.fee-custom-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fee-custom-white-box {
    background: #fff;
    border-radius: 35px;
    padding: 35px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fee-custom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1.5px solid rgba(75, 0, 130, 0.1);
}

.fee-custom-row.no-border {
    border-bottom: none;
}

.fee-custom-label {
    color: #4b0082;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    flex: 1;
    text-align: left;
}

.fee-custom-value {
    color: #4b0082;
    font-size: 3rem;
    font-weight: 900;
    white-space: nowrap;
    text-align: right;
}

.gst-small {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
    margin-left: 5px;
}

/* Response Manual Layout */
@media (max-width: 1024px) {
    .fee-custom-card {
        max-width: 48%;
    }
}

@media (max-width: 850px) {
    .fees-custom-layout {
        flex-direction: column;
        align-items: center;
    }

    .fee-custom-card {
        width: 100%;
        max-width: 500px;
        padding: 10px 10px;
    }
}

@media (max-width: 500px) {
    .fee-custom-title {
        font-size: 1.8rem;
        gap: 5px;
    }

    .fee-custom-value {
        font-size: 2.2rem;
    }

    .fee-custom-label {
        font-size: 1.5rem;
        text-align: center;
    }

    .fee-custom-white-box {
        padding: 25px;
    }

    .gold-dot {
        top: 0px;
        left: 0px;
        width: 50px;
        height: 50px;
    }
}

/* Winners 2025 - Manual Implementation */
.winners-custom-section {
    width: 100%;
    padding: 50px 0 0;
}

.glimpseSwiper {
    padding: 20px 0 0;
}

.winners-custom-container {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
}

.winners-slider-box {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.winnersSwiper {
    padding-bottom: 50px;
}

.winner-card {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(245, 197, 66, 0.4);
    transition: all 0.4s ease;
    width: 100%;
    padding: 10px 0;
}

.winner-card:hover {
    transform: translateY(-10px);
}

.winner-img-box {
    width: 100%;
    height: 300px;
    /* Fixed Image Box Height */
    padding: 15px;
    overflow: hidden;
}

.winner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.winner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 25px 10px;
    text-align: center;
}

.winner-category {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 12px;
}

.winner-divider {
    width: 60%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #f5c542, transparent);
    margin-bottom: 15px;
    opacity: 0.7;
}

.winner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Glimpse of Past Awards */
.glimpseSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.glimpse-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #1a005c, #6a11cb) padding-box,
        linear-gradient(135deg, #8a2be2, #f5c542) border-box;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Responsiveness */
@media (max-width: 576px) {
    .fee-card-header h4 {
        font-size: 1.4rem;
    }

    .fee-value {
        font-size: 1.5rem;
    }

    .glimpse-img {
        width: 100%;
        max-width: 280px;
        height: 180px;
    }

    .winner-card {
        max-width: 100%;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .glimpse-img {
        width: 100%;
        max-width: 320px;
        height: 200px;
    }
}

@media (min-width: 992px) {
    .glimpse-img {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
}

/* Partners 2026 Section */
.partners-custom-section {
    background: #1a006c;
    padding: 50px 0 100px;
    color: var(--white);
    position: relative;
}

.partners-custom-section .cat-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.partners-grid-custom {
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-row-top,
.partner-row-bottom {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 80px;
    flex-wrap: wrap;
    width: 100%;
}

.partner-card {
    background: var(--white);
    border-radius: 30px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-header {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-type {
    color: #1a006c;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.partner-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d5a702, #c075f5);
    border-radius: 2px;
}

.partner-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .partner-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .partners-custom-section .cat-title {
        font-size: 2.5rem;
    }

    .partners-grid-custom {
        gap: 30px;
    }

    .partner-row-top,
    .partner-row-bottom {
        gap: 30px;
    }
}