:root {
    --primary-blue: #1e3a8a;
    --primary-gold: #fbbf24;
    --primary-navy: #0f172a;
    --primary-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-gold);
}

h2.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
}

.btn-block {
    display: block;
    width: 100%;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.8)), 
                url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Countdown Timer */
.countdown {
    margin: 4rem auto;
    max-width: 800px;
}

.countdown h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.event-started {
    background-color: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    display: none;
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 60px 0;
    box-shadow: var(--shadow);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--primary-light);
    flex: 1;
    min-width: 250px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    display: flex;
    gap: 15px;
}

.info-card i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

/* Events Section */
.events {
    background-color: var(--primary-light);
}

.event-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.event-tab {
    padding: 15px 30px;
    background-color: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.event-tab.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.event-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.event-content.active {
    display: block;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.event-list {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.event-list ul {
    list-style: none;
}

.event-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.event-list li:last-child {
    border-bottom: none;
}

.event-list i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.event-details {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    gap: 10px;
}

.meta-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Stalls Section */
.stalls-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.stall-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stall-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--primary-light);
    border-radius: 8px;
}

.stall-category i {
    color: var(--primary-gold);
}

.stall-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stall-card h3 {
    color: var(--primary-blue);
}

.stall-card .btn {
    margin-top: auto;
}

.early-bird {
    background-color: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

/* Sponsors Section */
.sponsors {
    background-color: var(--primary-light);
}

.sponsor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sponsor-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sponsor-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.bronze .sponsor-header {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.silver .sponsor-header {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.gold .sponsor-header {
    background: linear-gradient(135deg, #FFD700, #DAA520);
}

.sponsor-body {
    padding: 2rem;
}

.sponsor-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    text-align: center;
    margin: 1rem 0;
}

.sponsor-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.sponsor-benefits li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.sponsor-benefits i {
    color: #10b981;
    margin-right: 10px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    background-color: var(--primary-navy);
    color: var(--white);
}

.contact h2:after {
    background-color: var(--primary-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-navy);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 4rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 15px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--white);
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-gold);
}

.modal-body {
    padding: 2rem;
}

.success-message {
    text-align: center;
    padding: 3rem;
    display: none;
}

.success-message i {
    color: #10b981;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .about-content,
    .event-grid,
    .stalls-grid,
    .contact-grid,
    .sponsor-cards,
    .testimonial-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-box {
        min-width: 80px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.8rem; }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .sponsor-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stall-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .event-tabs {
        flex-direction: column;
    }
    
    .event-meta {
        grid-template-columns: 1fr;
    }
}
/* ============================= */
/* PREMIUM REGISTRATION SECTION */
/* ============================= */

.registrations-section {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #4b5169, #4358b6, #3b6ad6);
    color: #e5e7eb;
}

.registrations-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.registrations-section p {
    text-align: center;
    opacity: 0.8;
    margin-top: 8px;
}

/* Main Form Card */
.registration-box {
    max-width: 760px;
    margin: 50px auto;
    background: rgba(2,6,23,0.75);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 40px;
    border: 1px solid rgba(148,163,184,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Grid Layout */
.registration-box form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.registration-box .form-group {
    display: flex;
    flex-direction: column;
}

.registration-box .form-group.full {
    grid-column: span 2;
}

/* Labels */
.registration-box label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    margin-bottom: 6px;
}

/* Inputs */
.registration-box input,
.registration-box select,
.registration-box textarea {
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    color: #f8fafc;
    transition: all 0.25s ease;
}

.registration-box textarea {
    resize: vertical;
    min-height: 120px;
}

.registration-box input::placeholder {
    color: #64748b;
}

.registration-box input:focus,
.registration-box select:focus,
.registration-box textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.15);
    background: rgba(2,6,23,0.9);
}

/* Submit Button */
.registration-box button[type="submit"] {
    grid-column: span 2;
    margin-top: 10px;
    padding: 16px;
    border-radius: 16px;
    border: none;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #020617;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.registration-box button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.35);
}

/* Other Cards */
.other-registrations {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reg-card {
    background: rgba(2,6,23,0.8);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(148,163,184,0.12);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    text-align: center;
    transition: transform .25s ease;
}

.reg-card:hover {
    transform: translateY(-6px);
}

.reg-card h3 {
    font-size: 22px;
}

.reg-card p {
    opacity: 0.8;
    margin: 10px 0 20px;
}

.reg-card button {
    padding: 14px 22px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #020617;
    cursor: pointer;
}

/* ============================= */
/* PREMIUM MODALS */
/* ============================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.8);
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.modal-content {
    background: rgba(2,6,23,0.85);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 24px;
    max-width: 520px;
    margin: 80px auto;
    padding: 35px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    animation: modalPop .25s ease;
}

@keyframes modalPop {
    from { transform: scale(.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.15);
    color: white;
}

.modal-content button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #020617;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 24px;
    cursor: pointer;
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 700px) {
    .registration-box {
        padding: 25px;
    }

    .registration-box form {
        grid-template-columns: 1fr;
    }

    .registration-box .form-group.full,
    .registration-box button[type="submit"] {
        grid-column: span 1;
    }
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #fff; /* White text */
}

.contact-item i {
    font-size: 24px;
    color: #fbbf24; /* Rotary gold */
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .contact-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.contact-item .contact-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact-item .contact-info a {
    color:  #64748b; /* White links */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item .contact-info a:hover {
    color: #fbbf24; /* Hover effect */
}

/* Optional: make it responsive */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-item i {
        margin-bottom: 10px;
    }
}


/* ============================= */
/* HEADER HEIGHT REDUCTION */
/* ============================= */

.header-container {
    padding: 4px 12px !important;   /* was ~8px 15px */
}

.logo {
    height: 100px !important;        /* was bigger */
}

.nav-links a {
    padding: 6px 10px !important;   /* reduce click area height */
    font-size: 0.95rem;
}

/* MOBILE MORE COMPACT */
@media (max-width: 768px) {
    .header-container {
        padding: 3px 10px !important;
    }

    .logo {
        height: 70px !important;
    }
    .logo-text{
        font-size: 1px;
    }

    .nav-links a {
        padding: 6px 8px !important;
        font-size: 0.9rem;
    }
}


/* ============================= */
/* DJ NIGHT PERMANENT BANNER */
/* ============================= */

.dj-banner {
    width: 100%;
    text-align: center;
    padding: 25px 25px;
    background: linear-gradient(90deg, #c77f22, #ff8c00);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(252, 178, 20, 0.2);
    z-index: 100;
}

/* If header is fixed, keep banner below it */
header + .dj-banner {
    margin-top: 70px; /* adjust if your header height is different */
}

/* Mobile */
@media (max-width: 768px) {
    .dj-banner {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}


/* ============================= */
/* STARTUP PITCH SECTION */
/* ============================= */

.startup-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2a23, #020617);
    color: #fff;
}

.startup-section .section-header h2 {
    color: var(--rotary-gold);
}

.startup-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}

.startup-content h3,
.startup-card h3 {
    margin-bottom: 15px;
    color: var(--rotary-gold);
}

.startup-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fbbf24;
}

.startup-content ul {
    padding-left: 20px;
}

.startup-content ul li {
    margin-bottom: 8px;
    list-style: "✔  ";
    padding-left: 6px;
}

.startup-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.startup-card .step {
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.startup-info {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.startup-btn {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, var(--rotary-gold), #f59e0b);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.startup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251,191,36,0.4);
}

/* Mobile */
@media (max-width: 900px) {
    .startup-grid {
        grid-template-columns: 1fr;
    }
}

/*event */
.event-list ul li a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.25s;
}

.event-list ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(6px);
}

.event-list ul li a i {
    width: 22px;
    text-align: center;
    margin-right: 6px;
}

/*event page*/
.event-page-header {
    margin-bottom: 30px;
}

.event-page-header h1 {
    color: var(--primary-blue);
}

.event-subtitle {
    color: #64748b;
}

/* Info boxes */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.event-info-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.event-info-box i {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

/* Cards */
.event-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.event-card h3 {
    color: var(--primary-blue);
}

/* CTA buttons */
.event-page-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/*whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/*go to top*/
.go-top {
    position: fixed;
    bottom: 90px; /* above WhatsApp button */
    right: 20px;
    width: 50px;
    height: 50px;
    background: #1e3a8a; /* Rotary blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.go-top.show {
    opacity: 1;
    pointer-events: auto;
}

.go-top:hover {
    transform: translateY(-4px);
}

@media (max-width: 600px) {
    .go-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        right: 15px;
        bottom: 80px;
    }
}
