/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    min-width: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #0047AB;
    --secondary-color: #003D99;
    --accent-color: #FF8C00;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #FF8C00;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    width: 100%;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5576c;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
     background: url("hitkarani.jpg") 
     no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

/*.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}
*/
/*.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
*/
/*.hero-content h1{
font-size: 1.2rem;
font-weight: 800;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
margin-top: 32px;
margin-left: -174%;
color: #0047AB;
}
*/

.glitch {
    position: relative;
}

/*.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
}*/

/*.hero-subtitle {
    font-size: .95rem;
font-weight: 300;
margin-bottom: 1rem;
opacity: 0.95;
margin-top: -15PX;
margin-left: -172%;
color: #0047AB;
font-weight: bold;
}*/

/* =========================================
   HERO TEXT POSITION FIX
========================================= */

.hero-content {
      position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0047AB;
    text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-content h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: .95rem;
    font-weight: bold;
    color: #0047AB;
    text-align: center;
    margin-top: 10px;
}

/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1400px) {

    .hero-content {
        left: 40%;
    }

    .hero-content h1 {
        font-size: 1.0rem;
    }

    .hero-subtitle {
        font-size: 1.0rem;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .hero-content {
        left: 50%;
        width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* =========================================
   MOBILE
========================================= */
/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 42vh;
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        position: absolute;
        top: 52%;
        left: 41%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 1200px;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.25;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-top: 8px;
    }

    .nav-wrapper {
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-menu {
        gap: 1rem;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }
}


.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.85;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Committee Section */
.committee {
    padding: 10px 0;
    background: var(--light-color);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.committee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-image img {
    /* width: 100%;
    height: 100%; */
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.committee-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-card:hover .card-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    color: white;
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.card-content .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-content .bio {
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Challenge Section */
.challenge {
    padding: 10px 0;
    background: white;
}

.challenge-content {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.challenge-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.challenge-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.challenge-text > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.challenge-tracks {
    display: flex;
    /* flex-direction: column; */
    gap: 1.5rem;
}

.track {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.track:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: translateX(10px);
}

.track i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.track h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.track p {
    color: var(--text-color);
    opacity: 0.85;
    text-align: justify;
}

/* Rules Section */
.rules {
    padding: 100px 0;
    background: var(--light-color);
}

.rules-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.rule-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.rule-content h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: var(--text-color);
    opacity: 0.85;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0047AB;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content .date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    opacity: 0.85;
}

/* Registration Section */
.registration {
    padding: 10px 0;
    background: white;
}

.registration-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.registration-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: 500px;
}

.registration-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.registration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 3rem;
}

.registration-overlay h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.registration-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

.registration-benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-content {
    padding: 2rem;
}

.benefit-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-content h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-content p {
    color: var(--text-color);
    line-height: 1.8;
}

.registration-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 20px;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-color);
    font-size: 1rem;
}

.registration-requirements h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.requirements-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.requirement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.req-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.requirement-card h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.requirement-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.registration-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Submission Section */
.submission {
    padding: 100px 0;
    background: var(--light-color);
}

.submission-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.submission-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: 450px;
}

.submission-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.submission-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92), rgba(118, 75, 162, 0.92));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 3rem;
}

.submission-hero-overlay h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.submission-hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.submission-guidelines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.guideline-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guideline-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.guideline-content {
    padding: 2.5rem;
}

.guideline-content > i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.guideline-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.guideline-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guideline-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1.05rem;
}

.guideline-card li i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.criteria-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.criteria-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 1rem;
}

.criteria-label strong {
    color: var(--primary-color);
    font-weight: 700;
}

.criteria-bar {
    width: 100%;
    height: 12px;
    background: #e0e7ff;
    border-radius: 10px;
    overflow: hidden;
}

.criteria-fill {
    height: 100%;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.submission-process {
    background: white;
    padding: 3rem;
    border-radius: 20px;
}

.submission-process h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.submission-tips h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
}

.tip-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tip-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.submission-deadline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.deadline-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.deadline-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.deadline-date {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.deadline-content > p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Funding Section */
.funding {
    padding: 100px 0;
    background: white;
}

.funding-hero {
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.funding-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.prize-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.winner-1 {
    border-color: #ffd700;
}

.winner-2 {
    border-color: #c0c0c0;
}

.winner-3 {
    border-color: #cd7f32;
}

.prize-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.winner-1 .prize-icon {
    color: #ffd700;
}

.winner-2 .prize-icon {
    color: #c0c0c0;
}

.winner-3 .prize-icon {
    color: #cd7f32;
}

.prize-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.prize-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.prize-benefits {
    list-style: none;
    text-align: left;
}

.prize-benefits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.prize-benefits li:last-child {
    border-bottom: none;
}

.prize-benefits i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

.additional-prizes {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.additional-prizes h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.special-awards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.special-award {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.special-award:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.special-award i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.special-award h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.special-award p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sponsors {
    text-align: center;
}

.sponsors h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.sponsors > p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 1.5rem 2.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.sponsor-logo:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {    

       display: flex;
    justify-content: center;   /* 👈 centers horizontally */
    align-items: center;
    text-align: center;        /* 👈 centers text */
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .challenge-content,
    .rules-wrapper,
    .registration-wrapper,
    .submission-guidelines {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .submission-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-logos {
        flex-direction: column;
    }
}

/* Results Section */
.results {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f2ff 100%);
}

.results-announcement {
    margin-bottom: 4rem;
}

.announcement-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.announcement-banner i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.announcement-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.announcement-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.winners-showcase {
    margin-bottom: 4rem;
}

.winner-showcase {
    margin-bottom: 3rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.winner-badge i {
    font-size: 1.5rem;
}

.winner-badge.second {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.winner-badge.third {
    background: linear-gradient(135deg, #cd7f32, #e6a057);
}

.winner-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.winner-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.winner-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.winner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: white;
    padding: 3rem;
}

.winner-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.winner-overlay .team-name {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.winner-overlay .project-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.winner-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.winner-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winner-stats i {
    color: #ffd700;
    font-size: 1.3rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.runner-ups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.runner-up {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.runner-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.runner-up img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.runner-content {
    padding: 2rem;
}

.runner-content h4 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.runner-content .team-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.runner-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.runner-content .prize {
    display: inline-block;
    background: #0047AB;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
}

.special-mentions {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.special-mentions h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mention-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mention-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: translateY(-5px);
}

.mention-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mention-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mention-card p {
    margin-bottom: 0.5rem;
}

.mention-card .team {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.all-participants {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
}

.all-participants h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.all-participants p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: 450px;
    margin-bottom: 4rem;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92), rgba(118, 75, 162, 0.92));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 3rem;
}

.contact-hero-overlay h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-overlay p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card-large {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-image {
    height: 200px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-card-large:hover .contact-image img {
    transform: scale(1.1);
}

.contact-info-detailed {
    padding: 2.5rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(17, 153, 142, 0.4);
}

.contact-info-detailed h4 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.contact-info-detailed .address,
.contact-info-detailed .hours {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.method i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.method strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method p {
    color: var(--text-color);
    margin: 0;
}

.contact-departments {
    background: var(--light-color);
    padding: 4rem 0;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.contact-departments h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 3rem;
}

.dept-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.dept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dept-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dept-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.dept-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dept-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dept-link:hover {
    gap: 1rem;
    color: var(--accent-color);
}

.social-connect {
    text-align: center;
    margin-bottom: 4rem;
}

.social-connect h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-connect > p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.social-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.social-card:nth-child(1):hover i { color: #1877f2; }
.social-card:nth-child(2):hover i { color: #1da1f2; }
.social-card:nth-child(3):hover i { color: #0077b5; }
.social-card:nth-child(4):hover i { color: #e4405f; }
.social-card:nth-child(5):hover i { color: #ff0000; }
.social-card:nth-child(6):hover i { color: #5865f2; }

.social-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.social-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.map-container {
    margin-top: 4rem;
}

.map-container h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive for Results and Contact */
@media (max-width: 968px) {
    .runner-ups {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .mentions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .winner-content img {
        height: 350px;
    }

    .winner-overlay {
        padding: 2rem;
    }

    .winner-overlay h3 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .registration-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .requirements-container {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links-large {
        grid-template-columns: repeat(3, 1fr);
    }

    .registration-overlay h3,
    .submission-hero-overlay h3,
    .contact-hero-overlay h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mentions-grid {
        grid-template-columns: 1fr;
    }

    .winner-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .project-links {
        flex-direction: column;
    }

    .announcement-banner {
        padding: 2rem;
    }

    .announcement-banner h3 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .registration-stats {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-hero,
    .submission-hero,
    .contact-hero {
        height: 350px;
    }

    .registration-overlay h3,
    .submission-hero-overlay h3,
    .contact-hero-overlay h3 {
        font-size: 2rem;
    }

    .registration-overlay p,
    .submission-hero-overlay p,
    .contact-hero-overlay p {
        font-size: 1.1rem;
    }

    .cta-content h3,
    .deadline-content h3 {
        font-size: 2rem;
    }

    .submission-guidelines {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   COMPLETE WEBSITE RESPONSIVE FIX
========================================= */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   CONTAINER
========================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================
   NAVBAR RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .nav-wrapper {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: auto;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 18px;
    }
}

/* =========================================
   PROFILE SECTION
========================================= */

@media (max-width: 992px) {

    .profile-card {
        padding: 30px 20px;
    }

    .profile-image {
        float: none;
        margin-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }

    .profile-image img {
        width: 100%;
        max-width: 320px;
    }

    .profile-content h2 {
        text-align: center;
        font-size: 2rem;
    }

    .profile-content p {
        text-align: justify;
    }
}

/* =========================================
   COMMITTEE SECTION
========================================= */

@media (max-width: 992px) {

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .committee-card {
        width: 100%;
    }

    .card-image {
        height: 280px;
    }
}

/* =========================================
   CHALLENGE SECTION
========================================= */

@media (max-width: 992px) {

    .challenge-content {
        grid-template-columns: 1fr;
    }

    .challenge-tracks {
        flex-direction: column;
    }

    .track {
        flex-direction: column;
    }
}

/* =========================================
   RULES & TIMELINE
========================================= */

@media (max-width: 992px) {

    .rules-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rule-item {
        flex-direction: column;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-marker {
        left: -35px;
    }
}

/* =========================================
   SECTION HEADINGS
========================================= */

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* =========================================
   POPUP RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .popup-content {
        width: 95%;
        margin: 15% auto;
        padding: 20px;
    }

    .popup-header h2 {
        font-size: 1.8rem;
    }

    .popup-body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .popup-content {
        margin-top: 25%;
    }
}

/* =========================================
   FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }
}

/* =========================================
   GENERAL MOBILE SPACING
========================================= */

@media (max-width: 768px) {

    .committee,
    .challenge,
    .rules,
    .registration,
    .results,
    .contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .card-content,
    .timeline-content,
    .rule-item,
    .track {
        padding: 20px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .track h4,
    .timeline-content h4 {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {

    .hero-content {
        left: 50%;
        width: 90%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}