:root {
    --deep-clay-orange: #C14D28;
    --saffron-yellow: #E7A027;
    --mint-green: #F7BFA4;
    --mahogany-brown: #8A361A;
    --light-bg: #FFF9F5;
    --dark-text: #2C1810;
    --light-text: #5A4A42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--deep-clay-orange);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--mahogany-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 64, 40, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--deep-clay-orange);
    color: var(--deep-clay-orange);
}

.btn-outline:hover {
    background: var(--deep-clay-orange);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--mahogany-brown);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--saffron-yellow);
    border-radius: 2px;
}

.section-title p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 245, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mahogany-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navlinks {
    display: flex;
    /* gap: 30px; */
}

.navlinks a {
    font-weight: 500;
    transition: all 0.3s ease;
    /* position: relative;
    padding: 5px 0; */
}

/* .navlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-clay-orange);
    transition: width 0.3s ease;
} */

.navlinks a:hover {
    color: var(--deep-clay-orange);
}

/* .navlinks a:hover::after {
    width: 100%;
} */

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.countdown-item {
    margin: 0 15px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--saffron-yellow);
    margin-bottom: 5px;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 10px;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #fef8f5 0%, #f9f0ea 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-clay-orange), var(--saffron-yellow), var(--deep-clay-orange));
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--mahogany-brown);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.text-highlight {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border-left: 5px solid var(--deep-clay-orange);
    text-align: center;
}

.text-highlight p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--light-text);
    margin: 0;
    font-weight: 500;
}

/* Four Features in Single Row */
.feature-grid-single-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--deep-clay-orange);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-clay-orange), var(--saffron-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(193, 64, 40, 0.1), rgba(231, 160, 39, 0.05));
    border-radius: 25px;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--mahogany-brown);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 20px;
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
}

.stats-row {
    display: flex;
    width: 100%;
    background: #fef5f3;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-column {
    flex: 1;
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.stat-column:hover {
    background: #f9e0db;
}

.stat-icon {
    font-size: 3rem;
    color: var(--deep-clay-orange);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-clay-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Enhanced Banners */
.about-banners-enhanced {
    margin: 60px 0;
}

.banner-enhanced {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.banner-visual {
    flex: 1;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--deep-clay-orange), var(--saffron-yellow));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    z-index: 2;
    position: relative;
}

.banner-graphic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 64, 40, 0.1), rgba(231, 160, 39, 0.05));
    border-radius: 20px;
}

.banner-content-enhanced {
    flex: 1;
}

.banner-content-enhanced h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--mahogany-brown);
}

.banner-content-enhanced p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--deep-clay-orange);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

/* Events Section */
.events {
    background-color: #fef8f5;
    position: relative;
}

.events-container {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    gap: 20px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.events-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.event-card {
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0e6e0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 200px;
    overflow: hidden;
    /* background: var(--mint-green); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--mahogany-brown);
}

.event-details p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.8rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Event navigation arrows */
.event-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--deep-clay-orange);
}

.event-nav:hover {
    background: var(--deep-clay-orange);
    color: white;
}

.event-nav.prev {
    left: 10px;
}

.event-nav.next {
    right: 10px;
}

/* Leaderboard Section */
#leaderboard .leaderboard-grid {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#leaderboard .leaderboard-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-width: 600px;
  padding: 15px;
  background: linear-gradient(90deg, #ffffff 0%, #fef5f3 100%);
  border-radius: 12px;
  margin-bottom: 10px;
}

#leaderboard {
    background: linear-gradient(135deg, #fef8f5 0%, #f9f0ea 100%);
    padding: 80px 0;
}

.leaderboard-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-row {
    padding: 18px 30px;
    border-radius: 15px;
    background: linear-gradient(90deg, #ffffff 0%, #fef5f3 100%);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0e6e0;
}

#leaderboard .leaderboard-row::before {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
}

#leaderboard .leaderboard-row:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: linear-gradient(90deg, #f9e0db 0%, #f5d1ca 100%);
}

/* Top 3 Podium Style */
#leaderboard .top-podium {
    background: linear-gradient(90deg, #fff8e1 0%, #ffe0b2 100%);
}

#leaderboard .top-podium .rank {
    font-size: 2rem;
}

/* Rank / Medal */
.rank {
    flex: 0 0 60px;
    text-align: center;
}

/* Name */
.name {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    color: var(--mahogany-brown);
}

/* Points */
.points {
    flex: 0 0 100px;
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-clay-orange);
}

.category-name {
    flex: 1 1 120px;
}

.category-points {
    flex: 1 1 120px;
    background: none;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--deep-clay-orange);
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid #f0e6e0;
}

.nav-tabs .nav-link {
    color: var(--light-text);
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--deep-clay-orange);
    color: white;
    border-radius: 8px;
}

.nav-pills .nav-link {
    color: var(--light-text);
    border: 1px solid #f0e6e0;
    margin: 0 5px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: var(--deep-clay-orange);
    color: white;
    border-color: var(--deep-clay-orange);
}

/* Gallery Section */
#gallery {
    background-color: #fef8f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(193, 64, 40, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
}

/* Videos Section */
#videos {
    background: linear-gradient(135deg, #fef8f5 0%, #f9f0ea 100%);
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.video-item {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    border: 1px solid #f0e6e0;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(193, 64, 40, 0.8), rgba(231, 160, 39, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay i {
    transform: scale(1.1);
}

.video-item h4 {
    text-align: center;
    margin: 15px 0 18px;
    font-size: 1.15rem;
    color: var(--mahogany-brown);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.video-item:hover h4 {
    color: var(--deep-clay-orange);
}

.video-item p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.video-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--deep-clay-orange), var(--saffron-yellow));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.video-item:hover::after {
    opacity: 0.15;
}

/* FAQ Section */
.faq {
    background-color: #fef8f5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6e0;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--mahogany-brown);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fef5f3;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--deep-clay-orange);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #fef8f5 0%, #f9f0ea 100%);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--mahogany-brown);
}

.contact-details {
    margin-top: 30px;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, var(--deep-clay-orange), var(--saffron-yellow));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--mahogany-brown);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #f0e6e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: var(--deep-clay-orange);
    outline: none;
    box-shadow: 0 0 0 2px rgba(193, 64, 40, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--mahogany-brown);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--saffron-yellow);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--saffron-yellow);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .event-nav {
        display: none;
    }
    
    .feature-grid-single-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* .navlinks {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        gap: 20px;
    }
    
    .navlinks.active {
        left: 0;
    } */

    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .feature-grid-single-row {
        grid-template-columns: 1fr;
    }
    
    .banner-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .countdown-item {
        margin: 0 8px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    #leaderboard .leaderboard-row {
        min-width: 1000px;
        font-size: 0.9rem;
    }
}

/* ===== Level Tabs (Institution Wise + Category Wise) ===== */
.nav-pills .nav-link {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mahogany-brown);
    border: 2px solid transparent;
    background-color: #fef5f3;
    transition: all 0.3s ease-in-out;
    margin: 0 6px;
    padding: 8px 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link:hover {
    border-color: var(--deep-clay-orange);
    color: var(--deep-clay-orange);
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(193, 64, 40, 0.15);
}

.nav-pills .nav-link.active {
    background: linear-gradient(90deg, var(--deep-clay-orange), var(--saffron-yellow));
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 10px rgba(193, 64, 40, 0.25);
    transform: scale(1.05);
}

/* Make all tab sets consistent */
#institutionLevelTabs,
#categoryLevelTabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

/* Smooth transition between tab changes */
.tab-pane {
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
}
.tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}
.tab-pane.fade {
    opacity: 0;
    transform: translateY(10px);
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .nav-pills .nav-link {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-pills .nav-item {
        flex: 1 1 calc(50% - 12px);
        display: flex;
        justify-content: center;
    }
    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
        width: 100%;
    }
}
