/* ===========================
   ROOT VARIABLES & RESET
=========================== */

:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #A8892E;
    --navy: #1A1A2E;
    --dark: #0D0D1A;
    --cream: #F8F4EC;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #F8F4EC;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

.section-tag {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    background: rgba(13, 13, 26, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

.navbar .logo {
    height: 50px;
    width: auto;
}

.navbar .nav-link {
    color: var(--cream) !important;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1A3E 50%, var(--navy) 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            linear-gradient(45deg, rgba(13, 13, 26, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 5rem;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
    margin-bottom: 5px;
    letter-spacing: 8px;
}

.hero-heading {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--cream);
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.hero-theme {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: var(--gold-light);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    color: var(--cream);
    font-weight: 300;
}

.event-details div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.event-details i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-logo {
    max-width: 350px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--gold-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* ===========================
   ABOUT SECTION
=========================== */

.about {
    background: var(--cream);
    padding: 80px 0;
}

.about img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-box {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.info-box h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 2rem;
}

.info-box p {
    color: #666;
    font-weight: 300;
}

/* ===========================
   ORGANIZER SECTION
=========================== */

.organizer {
    background: var(--white);
    padding: 80px 0;
}

.organizer-img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.designation {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.signature {
    max-width: 200px;
    margin-top: 20px;
}

/* ===========================
   EVENT INFORMATION
=========================== */

.event-info {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
}

.event-info .section-title {
    color: var(--cream);
}

.event-info .section-tag::after {
    background: var(--gold);
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.event-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.event-card h3 {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.event-card p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   CHIEF GUEST
=========================== */

.chief-guest {
    background: var(--cream);
    padding: 80px 0;
}

.chief-image {
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 350px;
    border: 5px solid var(--gold);
}

.chief-guest h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.chief-guest h5 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.chief-guest p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===========================
   SPEAKERS SECTION
=========================== */

.speakers {
    background: var(--white);
    padding: 80px 0;
}

.speaker-card {
    background: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.speaker-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.speaker-content {
    padding: 25px;
    text-align: center;
}

.speaker-content h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.speaker-content p {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.9rem;
}

.speaker-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

/* ===========================
   COUNTER SECTION
=========================== */

.counter-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    padding: 80px 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.counter-box {
    text-align: center;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.counter-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.counter-box p {
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 250px;
        margin-top: 40px;
    }

    .event-details {
        gap: 15px;
    }

    .navbar .nav-link {
        padding: 8px 0 !important;
    }

    .organizer-img,
    .chief-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 30px;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .hero-heading {
        font-size: 1.2rem;
    }

    .hero-theme {
        font-size: 1rem;
    }

    .hero-line {
        margin: 15px auto;
    }

    .event-details {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        max-width: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .counter-box h2 {
        font-size: 2.5rem;
    }

    .counter-box {
        margin-bottom: 30px;
    }

    .speaker-card img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-heading {
        font-size: 1rem;
    }

    .hero-theme {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .btn-gold,
    .btn-outline-light {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .event-details div {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-box h4 {
        font-size: 1.5rem;
    }
}

/* ===========================
   UTILITY CLASSES
=========================== */

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background: var(--gold);
}

.bg-navy {
    background: var(--navy);
}

.bg-cream {
    background: var(--cream);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection Styling */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* ===========================
   ANIMATIONS
=========================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   PARTNERS SECTION (Add if needed)
=========================== */

.partners {
    background: var(--cream);
    padding: 80px 0;
}

.partner-logo {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* ===========================
   CONTACT SECTION (Add if needed)
=========================== */

.contact {
    background: var(--white);
    padding: 80px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--gold-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 40px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    font-weight: 300;
}

/* ===========================
   FOOTER (Add if needed)
=========================== */

.footer {
    background: var(--dark);
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer .social-links a {
    color: var(--cream);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer .social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer p {
    font-weight: 300;
    font-size: 0.9rem;
}

/* ===========================
   ADDITIONAL STYLES FOR NEW SECTIONS
=========================== */

/* Hero Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tagline-text {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tagline-dot {
    color: var(--cream);
    font-size: 1.5rem;
}

/* Guests Section */
.guests {
    background: var(--cream);
}

.guest-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.guest-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.guest-content {
    padding: 20px;
    text-align: center;
}

.guest-content h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.guest-content p {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.85rem;
    margin: 0;
}

/* Panelists Section */
.panelists {
    background: var(--white);
}

.panelist-card {
    background: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--gold);
}

.panelist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.panelist-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.panelist-content {
    padding: 20px;
    text-align: center;
}

.panelist-content h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.panelist-content p {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.85rem;
    margin: 0;
}

/* Sponsors Slider */
.sponsors {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
}

.sponsors .section-title {
    color: var(--cream);
}

.sponsors .section-tag::after {
    background: var(--gold);
}

.sponsors-slider {
    padding: 20px 0 50px;
}

.sponsor-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: var(--transition);
}

.sponsor-item:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.sponsor-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: var(--transition);
}

.sponsor-item:hover img {
    filter: brightness(1) invert(0) opacity(1);
}

.swiper-pagination-bullet {
    background: var(--cream);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Partners Section */
.partners {
    background: var(--cream);
    padding: 80px 0;
}

.partner-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.partner-card img {
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.partner-name {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.partner-tagline {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
}

/* Nominees Section */
.nominees {
    background: var(--white);
    padding: 80px 0;
}

.nominees-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.nominee-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.nominee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nominee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(13, 13, 26, 0.9));
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nominee-card:hover .nominee-overlay {
    transform: translateY(0);
}

.nominee-card:hover img {
    transform: scale(1.1);
}

.nominee-overlay h5 {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.nominee-overlay p {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 300;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-title {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p i {
    color: var(--gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 991px) {
    .nominee-card {
        aspect-ratio: 4/3;
    }

    .nominee-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(13, 13, 26, 0.8));
        padding: 15px;
    }

    .nominee-overlay h5 {
        font-size: 0.75rem;
    }

    .nominee-overlay p {
        font-size: 0.65rem;
    }

    .partner-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .guest-card img,
    .panelist-card img {
        height: 200px;
    }

    .sponsor-item {
        height: 120px;
    }

    .partner-card img {
        max-height: 80px;
    }

    .tagline-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 575px) {
    .nominee-card {
        aspect-ratio: 1/1;
    }

    .guest-card img,
    .panelist-card img {
        height: 180px;
    }
}

/* ===========================
   NAVBAR - CENTERED WITH NO LOGO
=========================== */

.navbar {
    background: rgba(13, 13, 26, 0.95);
    padding: 12px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

.navbar .navbar-nav {
    gap: 2px;
}

.navbar .nav-link {
    color: var(--cream) !important;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
    border-radius: 4px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.05);
}

.navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: var(--gold);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        padding: 15px 0;
        gap: 0;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .navbar .nav-link:hover {
        background: rgba(201, 168, 76, 0.1);
    }

    .collapse.show {
        background: rgba(13, 13, 26, 0.98);
        border-radius: 8px;
        margin-top: 10px;
        padding: 10px 0;
    }
}

@media (max-width: 575px) {
    .navbar .nav-link {
        font-size: 0.8rem;
        padding: 8px 15px !important;
        letter-spacing: 0.5px;
    }
}

/* ===========================
   ALL 36 GUESTS GALLERY
=========================== */

.all-guests {
    background: var(--cream);
    padding: 80px 0;
}

.guests-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.guest-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.guest-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.guest-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guest-thumbnail:hover img {
    transform: scale(1.05);
}

.guest-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.7) 0%, rgba(201, 168, 76, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-thumbnail:hover .guest-thumb-overlay {
    opacity: 1;
}

.guest-number {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(201, 168, 76, 0.9);
    padding: 8px 15px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.guests-count {
    display: inline-block;
    background: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.guests-count i {
    color: var(--gold);
    margin-right: 10px;
}

/* Responsive adjustments for guest gallery */
@media (max-width: 991px) {
    .guest-thumbnail {
        aspect-ratio: 1/1;
    }

    .guest-number {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 767px) {
    .guest-thumbnail {
        aspect-ratio: 1/1;
    }

    .guest-number {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media (max-width: 575px) {
    .guests-count {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* ===========================
   PARTNERS LOGOS SECTION
=========================== */
.partners-logos {
    background: var(--white);
    padding: 80px 0;
}

.partners-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.partner-logo-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-logo-card:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-logo-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partners-count {
    display: inline-block;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.partners-count i {
    color: var(--gold);
    margin-right: 10px;
}

/* ===========================
   NOMINEES GALLERY SECTION
=========================== */
.nominees-gallery {
    background: var(--cream);
    padding: 80px 0;
}

.nominees-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.nominee-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.nominee-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nominee-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nominee-image-card:hover img {
    transform: scale(1.05);
}

.nominee-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.6) 0%, rgba(201, 168, 76, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nominee-image-card:hover .nominee-image-overlay {
    opacity: 1;
}

.nominee-number {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(201, 168, 76, 0.9);
    padding: 8px 15px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nominees-count {
    display: inline-block;
    background: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.nominees-count i {
    color: var(--gold);
    margin-right: 10px;
}

/* ===========================
   EVENT IMAGES / GOOGLE DRIVE SECTION
=========================== */
.event-images {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
}

.event-images .section-title {
    color: var(--cream);
}

.event-images .section-tag::after {
    background: var(--gold);
}

.event-images-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.drive-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}

.drive-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.drive-card i.fa-google-drive {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.drive-card h3 {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.drive-card p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.drive-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.drive-features span {
    color: var(--cream);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.drive-features span i {
    color: var(--gold);
}

.drive-card .btn-gold {
    margin-top: 10px;
}

.drive-card .btn-gold i {
    margin-right: 10px;
}

/* ===========================
   RESPONSIVE DESIGN FOR NEW SECTIONS
=========================== */
@media (max-width: 991px) {
    .partner-logo-card {
        height: 100px;
    }

    .nominee-image-card {
        aspect-ratio: 1/1;
    }

    .drive-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .partner-logo-card {
        height: 80px;
        padding: 15px;
    }

    .nominee-image-card {
        aspect-ratio: 1/1;
    }

    .nominee-number {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .drive-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .drive-features span {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .partner-logo-card {
        height: 70px;
        padding: 10px;
    }

    .nominee-image-card {
        aspect-ratio: 1/1;
    }

    .partners-count,
    .nominees-count {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* ===========================
   NOMINEES GALLERY SECTION
=========================== */
.nominees-gallery {
    background: var(--cream);
    padding: 80px 0;
}

.nominees-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.nominee-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.nominee-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nominee-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nominee-image-card:hover img {
    transform: scale(1.05);
}

.nominee-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.85) 0%, rgba(13, 13, 26, 0.4) 50%, rgba(13, 13, 26, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.nominee-image-card:hover .nominee-image-overlay {
    opacity: 1;
}

.nominee-info {
    width: 100%;
    text-align: center;
}

.nominee-number {
    display: inline-block;
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.8rem;
    background: rgba(201, 168, 76, 0.9);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.nominee-name {
    color: var(--cream);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.3;
}

/* On mobile, always show the overlay with name */
@media (max-width: 767px) {
    .nominee-image-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(13, 13, 26, 0.8) 0%, rgba(13, 13, 26, 0.2) 100%);
        padding: 10px;
    }

    .nominee-name {
        font-size: 0.7rem;
    }

    .nominee-number {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
}

.nominees-count {
    display: inline-block;
    background: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.nominees-count i {
    color: var(--gold);
    margin-right: 10px;
}

/* ===========================
   PARTNERS LOGOS SECTION
=========================== */
.partners-logos {
    background: var(--white);
    padding: 80px 0;
}

.partners-subtitle {
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.partner-logo-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.partner-logo-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-logo-card img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.partner-logo-card:hover img {
    transform: scale(1.05);
}

.partners-count {
    display: inline-block;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.partners-count i {
    color: var(--gold);
    margin-right: 10px;
}

/* Responsive Design for Partners */
@media (max-width: 991px) {
    .partner-logo-card {
        height: 130px;
        padding: 12px;
    }

    .partner-logo-card img {
        max-width: 80%;
        max-height: 80%;
    }
}

@media (max-width: 767px) {
    .partner-logo-card {
        height: 110px;
        padding: 10px;
    }

    .partner-logo-card img {
        max-width: 75%;
        max-height: 75%;
    }
}

@media (max-width: 575px) {
    .partner-logo-card {
        height: 90px;
        padding: 8px;
    }

    .partner-logo-card img {
        max-width: 70%;
        max-height: 70%;
    }

    .partners-count {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* ===========================
   ADVANCED IMAGE CROPPING FIX
=========================== */

.nominee-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.nominee-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* Default: slightly top-focused */
    transition: var(--transition);
}

/* Option 1: Manual fix via data attribute - use this for problematic images */
.nominee-image-card img[data-position="top"] {
    object-position: center 15%;
}

.nominee-image-card img[data-position="center"] {
    object-position: center 30%;
}

.nominee-image-card img[data-position="bottom"] {
    object-position: center 70%;
}

.nominee-image-card img[data-position="face"] {
    object-position: center 20%;
}

/* Option 2: If you can add class names manually */
.nominee-image-card img.top-fix {
    object-position: center 15%;
}

.nominee-image-card img.bottom-fix {
    object-position: center 70%;
}

.nominee-image-card img.center-fix {
    object-position: center 25%;
}

/* Option 3: Object fit fallback */
@supports (object-fit: cover) {
    .nominee-image-card img {
        object-fit: cover;
    }
}

/* For browsers that don't support object-fit */
@supports not (object-fit: cover) {
    .nominee-image-card {
        background-size: cover;
        background-position: center 20%;
    }
    .nominee-image-card img {
        opacity: 0;
        position: absolute;
        width: 100%;
        height: 100%;
    }
}