/* Base Styles */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-light: #F5E6B3;
    --navy-blue: #0A1F44;
    --dark-blue: #002366;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--navy-blue);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
    font-weight: 400;
}

.gold-text {
    color: var(--gold-primary);
}

.dark-text {
    color: var(--navy-blue);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(10, 31, 68, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: -50px;
}

.logo img {
    height: 80px;
    width: auto;
    margin-right: 0px;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .logo {
        margin-left: -30px;
        gap: 10px;
    }
    .logo img {
        height: 60px;
        margin-right: 8px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .logo {
        margin-left: -15px;
        gap: 8px;
    }
    .logo img {
        height: 90px;
        margin-right: 5px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: 100; /* Extra bold */
    font-size: 1.8rem; /* Larger size */
    letter-spacing: 0.5px; /* Slightly more spacing between letters */
    text-transform: uppercase;
    /* font-weight: 900; Black/heaviest weight */
    font-size: 2rem; /* Even larger */
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

.logo-text .gold-text {
    font-weight: 800; /* Extra bold */
    font-size: 1.8rem; /* Larger size */
    letter-spacing: 0.5px; /* Slightly more spacing between letters */
    text-transform: uppercase; /* Optional: makes text all caps */
}

.logo-text span:first-child {
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text span:last-child {
    font-weight: 400;
    font-size: 0.9rem;
}

nav ul {
    display:flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    left: 50px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold-light);
}

nav ul li a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.9) 0%, #002366 100%);
    color: var(--white);
}

/* Center Alignment with Adjusted Spacing */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px; /* Reduced from 30px to bring image closer */
    width: 100%;
}

.hero-logo {
    height: 160px;
    width: auto;
    max-width: 700px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.gold-shine {
    margin: 10px 0 15px 0; /* Adjusted top/bottom margins */
    font-size: 4.5rem;
    background: linear-gradient(to right, 
              var(--gold-primary) 0%, 
              var(--gold-secondary) 30%, 
              var(--gold-light) 50%, 
              var(--gold-secondary) 70%, 
              var(--gold-primary) 100%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
/* Desktop (default) */
.hero-logo {
    height: 180px;   /* Increased */
    max-width: 400px;
}

/* Tablet */
@media (max-width: 768px) {
    .hero-logo {
        height: 150px;   /* Increased */
        max-width: 720px;
    }
    .hero-logo-container {
        margin-bottom: 12px;
    }
    .gold-shine {
        font-size: 3.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-logo {
        height: 120px;   /* Increased */
        max-width: 760px;
    }
    .gold-shine {
        font-size: 3rem;
    }
}

.hero h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    margin: -10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Section Styles */
.section {
    padding: 100px 5%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    
}

.gold-bar, .dark-bar {
    height: 3px;
    width: 80px;
    background: var(--gold-primary);
    margin: 0 auto 20px;
}

.dark-bar {
    background: var(--navy-blue);
}

.content-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px #002366;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;  /* Better spacing control */
    hyphens: auto;             /* Auto hyphenation for smoother breaks */
    -webkit-hyphens: auto;     /* For Safari/iOS */
    -moz-hyphens: auto;        /* For Firefox */
    word-spacing: -0.02em;     /* Slightly tighter word spacing */
    line-height: 1.6;          /* Improves readability */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .content-box {
        padding: 1.5rem;
        word-spacing: -0.01em; /* Slightly adjust spacing on tablets */
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 1rem;
        line-height: 1.5;      /* Better readability on small screens */
    }
}

/* Background Variations */
.dark-bg {
    background-color: var(--navy-blue);
    color: var(--white);
}

.gold-bg {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--navy-blue);
}

/* Mission Cards */
.mission-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #002366;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px #FFA500;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Why It Matters */
.matters-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.matters-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.matters-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.matters-content ul li i {
    position: absolute;
    left: 0;
    top: 5px;
}

/* Award Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: #002366;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px #FFD700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    z-index: 2;
}

.category-card-content {
    padding: 30px;
}

.category-card h3 {
    color: #FFC000;
    margin-bottom: 15px;
}

.category-card p {
    margin-bottom: 20px;
    color: #ffffff;
}

.category-card .awards-count {
    display: inline-block;
    background: var(--gold-light);
    color: var(--navy-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Participation Section */
.participation-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.participation-text h3 {
    color: gold;
    /* Optional additional styling to enhance the gold text */
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.3); /* subtle glow */
    font-weight: bold;
    text-align: left;
}
.participation-text {
    flex: 1;
    min-width: 400px;       /* Minimum width for larger screens */
    max-width: 800px;       /* Prevents overly wide text blocks */
    width: 70%;             /* Relative width for responsiveness */
    
    /* Justification & Readability */
    text-align: justify;
    text-justify: inter-word;  /* Better word spacing */
    hyphens: auto;             /* Auto-hyphenation for smoother breaks */
    -webkit-hyphens: auto;     /* Safari/iOS support */
    -moz-hyphens: auto;        /* Firefox support */
    
    /* Spacing & Alignment */
    line-height: 1.6;          /* Improves readability */
    letter-spacing: 0.2px;     /* Slight letter spacing */
    word-spacing: -0.02em;     /* Reduces gaps in justified text */
    margin: 0 auto;            /* Centers the container */
    padding: 0;                /* Removes default padding */
    
    /* Font adjustments */
    font-size: 1.1rem;
}

/* Mobile-First Adjustments */
@media (max-width: 768px) {
    .participation-text {
        min-width: unset;      /* Allows shrinking below 400px */
        width: 100%;           /* Full width for better flow */
        font-size: 1rem;       /* Slightly smaller text */
        text-align: center;      /* Last line left-aligned (optional) */
        word-spacing: normal;  /* Reset if spacing looks odd */
    }
}

/* Small Mobile Fix (if needed) */
@media (max-width: 480px) {
    .participation-text {
        text-align: center;
        hyphens: none;         /* Disable hyphens if they look bad */
        line-height: 1.5;      /* Tighter spacing for small screens */
    }
}

.participation-image {
    flex: 1;
    text-align: center;
}

.participation-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* animation: float 6s ease-in-out infinite; */
}
@media (max-width: 500px) {
  .participation-text {
    text-align: justify;
  }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #002366;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--gold-primary);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--navy-blue);
    padding: 0 5px;
    color: var(--gold-primary);
}

.dark-bg .form-group input,
.dark-bg .form-group textarea {
    border-color: rgba(10, 31, 68, 0.2);
    color: var(--navy-blue);
}

.dark-bg .form-group label {
    color: rgba(10, 31, 68, 0.7);
}

.dark-bg .form-group input:focus + label,
.dark-bg .form-group textarea:focus + label,
.dark-bg .form-group input:not(:placeholder-shown) + label,
.dark-bg .form-group textarea:not(:placeholder-shown) + label {
    background: var(--white);
}

.form-success {
    text-align: center;
    padding: 40px;
    display: none;
}

.form-success i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-text span:first-child {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo .logo-text span:last-child {
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--navy-blue);
    transform: translateY(-5px);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 10px 20px; /* Reduced from 15px 30px */
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--navy-blue);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3); /* Reduced shadow */
    position: relative;
    overflow: hidden;
    font-size: 0.9rem; /* Optional: Reduce font size slightly */
    line-height: 1.2; /* Better vertical alignment */
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-gold:hover:before {
    left: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--navy-blue);
    transform: translateY(-3px);
}
.btn-gd {
    display: inline-flex; /* Changed to flex for perfect centering */
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: #002147;
    border: 2px solid transparent; /* Prepare for hover border */
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-align: center; /* Ensures text centering */
    min-width: 120px; /* Ensures consistent button size */
}

.btn-gd:hover {
    background: #002147; /* Solid royal blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    box-shadow: 0 6px 16px rgba(0, 33, 71, 0.4), 
                0 0 0 4px rgba(255, 215, 0, 0.2); /* Dual shadow effect */
    transform: translateY(-2px);
}

.btn-gd:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 33, 71, 0.4), 
                0 0 0 2px rgba(255, 215, 0, 0.2);
}
.register-btn {
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
.mission-card {
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(#002366, #002366) padding-box,
                linear-gradient(45deg, #FFD700, #FFA500) border-box;
}

/* Contact Form Styles */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px #002366;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #contactForm {
        padding: 3rem 1.5rem 1.5rem; /* top, right/left, bottom */
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    #contactForm {
        padding: 2rem 1rem 1rem; /* top, right/left, bottom */
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}
.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

/* Floating label effect */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #FFD700;
}

/* Button Styles */
.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    color: #FFD700;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    color: black;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Loading State */
.btn-gold .fa-spinner {
    margin-right: 8px;
}

/* Responsive Adjustments */
/* Add this to your existing CSS */
#contactForm {
    padding-top: 3rem; /* Increase top padding for all screens */
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FFD700;
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-secondary);
    transform: translateY(-5px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .participation-content {
        flex-direction: column;
    }
    
    .participation-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--navy-blue);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: all 0.5s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .mission-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 80px 5%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .content-box {
        padding: 30px 20px;
    }
    
    .category-card {
        min-width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
}
/* Jury Page Styles */
#jury {
    background-color: #002366;
    color: #333;
}

/* Hero Section */
#jury .hero {
    background: linear-gradient(135deg, #131518 0%, #1a4b8c 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#jury .container {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(21, 42, 73, 0.95) 100%);
    padding: 5rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#jury .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#jury .hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

#jury .hero-content h3 {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

#jury .hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-top: 2rem;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

.shimmer-text {
    background: linear-gradient(90deg, #FFA500, #FFF380, #FFD700, #FFF380, #FFA500);
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    display: inline-block;
    padding: 0 0.2em;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #jury .container {
        padding: 3rem 1.5rem;
    }
    
    #jury .hero-content {
        padding: 2rem;
    }
    
    #jury .hero-content h1 {
        font-size: 2.5rem;
    }
    
    #jury .hero-content h3 {
        font-size: 1.25rem;
    }
    
    #jury .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #jury .hero-content h1 {
        font-size: 2rem;
    }
    
    #jury .hero-content h3 {
        font-size: 1.1rem;
    }
}

/* Section Title */
#jury .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

#jury .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

#jury .section-title p {
    font-size: 1.2rem;
    color: #FFD700;
}

/* Jury Grid */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.jury-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px #002147;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.jury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 33, 71, 0.2);
    
}

.jury-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.jury-card:hover .jury-img {
    border-color: #FFD700;
}

.jury-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jury-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.jury-title {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.jury-card p {
    color: #666;
    line-height: 1.6;
}

.jury-card h3 {
    color: #FFD700;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #jury .hero h1 {
        font-size: 2.5rem;
    }
    
    #jury .hero p {
        font-size: 1.2rem;
    }
    
    .jury-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #jury .hero h1 {
        font-size: 2rem;
    }
    
    #jury .section-title h2 {
        font-size: 2rem;
    }
}
/* Professional Footer Styles */
.professional-footer {
    background-color: #002147;
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 90px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .gold-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

.logo-text .awards-year {
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-heading {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-menu a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-menu i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: #FFD700;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 12px;
    color: #FFD700;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.address-line {
    display: block;
    margin-left: 32px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.subscribe-btn {
    background: #FFD700;
    color: #002147;
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #002147;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.auth-message {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 2rem auto;
    border: 1px solid #e0e0e0;
}

.auth-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.auth-progress {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.auth-progress-bar {
    height: 100%;
    width: 0%;
    background: #4CAF50;
    transition: width 5s linear;
}

.auth-message h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-message p {
    color: #666;
}
/* Banner Container */
.register-banner {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.royal-blue-bg {
    background: linear-gradient(135deg, #240b36 0%, #1a237e 50%, #0d47a1 100%);
}

/* Content Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.text-content {
    flex: 1;
    min-width: 250px;
}

/* Typography */
.countdown-text {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-rotate {
    display: inline-block;
    animation: rotateWords 8s infinite;
}

.glow-text {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin: 0;
    padding-left: 1.5rem; 
}

/*  */

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.15;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff8a00;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #e52e71;
    top: 60%;
    right: 15%;
    animation: float 10s ease-in-out infinite 2s;
}

.star {
    width: 50px;
    height: 50px;
    background: #fff;
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
    bottom: 20%;
    right: 20%;
    animation: float 12s ease-in-out infinite 4s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotateWords {
    0%, 20% {
        transform: translateY(0);
        opacity: 1;
    }
    25%, 45% {
        transform: translateY(-1.5em);
        opacity: 0;
    }
    50%, 70% {
        transform: translateY(-3em);
        opacity: 1;
    }
    75%, 95% {
        transform: translateY(-4.5em);
        opacity: 0;
    }
    100% {
        transform: translateY(-6em);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-text {
        justify-content: center;
        font-size: 1.3rem;
    }
    
    .btn-gd {
        margin-top: 0.5rem;
    }
}
/* Modal Styles */
.award-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Darker overlay for contrast */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #002366; /* Royal Blue */
    color: white; /* White text */
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3); /* Golden shadow */
    border: 3px solid #D4AF37; /* Golden border */
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #D4AF37; /* Gold */
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: white;
    background-color: #D4AF37; /* Gold */
    transform: rotate(90deg);
}

.modal-content h3 {
    margin-top: 0;
    color: #D4AF37; /* Gold */
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #D4AF37; /* Gold underline */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-description {
    color: #ffffffcc; /* Slightly transparent white */
    margin-bottom: 25px;
    line-height: 1.6;
}

.awards-list h4 {
    margin-bottom: 20px;
    color: #D4AF37; /* Gold */
    font-size: 20px;
    font-weight: 500;
}

.awards-list ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.awards-list li {
    padding: 12px 20px;
    background-color: #00308a; /* Darker royal blue */
    border-radius: 6px;
    transition: all 0.3s;
    border-left: 3px solid #D4AF37; /* Gold accent */
    font-weight: 600;
}

.awards-list li:hover {
    background-color: #D4AF37; /* Lighter royal blue */
    color: #00308a;
    border-color: #00308a;
    transform: translateX(5px);
    font-weight: 600;
}

@media (hover: none) and (pointer: coarse) {
  .awards-list li:active {
    background-color: #D4AF37;
    color: #002366;
    border-left-color: #002366;
    font-weight: 600;
    transform: translateX(5px);
  }
  
  /* Visual feedback for tapped state */
  .awards-list li:active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
    animation: tapPulse 0.4s ease-out;
  }
  
  @keyframes tapPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  }
}

/* Desktop hover effect (only applies on devices with hover capability) */
@media (hover: hover) {
  .awards-list li:hover {
    background-color: #D4AF37;
    color: #002366;
    border-left-color: #002366;
    font-weight: 600;
    transform: translateX(5px);
  }
}

/* Animation for modal */
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content {
    animation: modalFadeIn 0.4s ease-out forwards;
}