 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
 }

 header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 header.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
 }

 nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
 }

 .logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
 }

 .logo-image {
    height: 60px;
 }

 .about-objectives{
    line-height: 2;
    text-align: justify;
 }

 .nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
 }

 .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
 }

 .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
 }

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

 .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
 }

 .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
 }

 .hero {
    height: 100vh;
    display: flex;
    margin-top: 8rem;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
 }

 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
       radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
       radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
 }

 .hero-title span {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 4.9rem;
    font-weight: 600;
 }

 .hero h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
 }

 @keyframes pulse {
    0%, 100% {
       opacity: 1;
    }

    50% {
       opacity: 0.5;
    }
 }

 .hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 5%;
    max-width: 1200px;
 }

 .hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
 }

 .hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease 0.2s both;
 }

 .hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
 }

 .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8800);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
 }

 .cta-button-submit {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #f2ff00, #f7931e);
    color: #fff;
    margin-left: 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
 }

 .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
 }

 @keyframes fadeInUp {
    from {
       opacity: 0;
       transform: translateY(30px);
    }

    to {
       opacity: 1;
       transform: translateY(0);
    }
 }

 .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
 }

 .section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #888;
    margin-bottom: 4rem;
 }

 /* About Section */
 .about {
    padding: 8rem 5%;
    background: #0a0a0a;
 }

 .about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
 }

 .about-text h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
 }

 .about-text p {
    color: #b0b0b0;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
 }

 .about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
 }

 .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }

 /* Festival Images Section */
 .festival-images {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
 }

 .images-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
 }

 .image-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
 }

 .image-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
 }

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

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

 .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
 }

 .image-overlay h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
 }

 .image-overlay p {
    color: #b0b0b0;
 }

 /* Theme Section */
 .theme {
    padding: 8rem 5%;
    background: #0a0a0a;
 }

 .theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
 }

 .theme-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
 }

 .theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
 }

 .theme-card:hover::before {
    left: 100%;
 }

 .theme-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
 }

 .theme-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
 }

 .theme-card p {
    color: #b0b0b0;
    line-height: 1.8;
 }

 /* Schedule Section */
 .schedule {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
 }

 .schedule-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
 }

 .schedule-day {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
 }

 .schedule-day:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
 }

 .schedule-day h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
 }

 .schedule-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
 }

 .schedule-time {
    color: #ff6b35;
    font-weight: 600;
    min-width: 100px;
 }

 .schedule-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
 }

 .schedule-details p {
    color: #888;
 }

 /* Team Section */
 .team {
    padding: 8rem 5%;
    background: #0a0a0a;
 }

 .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
 }

 .team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
 }

 .team-member:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
 }

 .team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
 }

 .team-member h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
 }

 .team-member .role {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 0.95rem;
 }

 .team-member p {
    color: #888;
    font-size: 0.9rem;
 }

 /* Partners Section */
 .partners {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
 }

 .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
 }

 .partner-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 150px;
 }

 .partner-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
 }

 .partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
 }

 .partner-card h4 {
    color: #ffd700;
    text-align: center;
 }

 /* Photos Gallery Section */
 .gallery {
    padding: 8rem 5%;
    background: #0a0a0a;
 }

 .gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    max-width: 1400px;
    margin: 0 auto;
 }

 .gallery-scroll::-webkit-scrollbar {
    height: 10px;
 }

 .gallery-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
 }

 .gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 10px;
 }

 .gallery-item {
    min-width: 350px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
 }

 .gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 107, 53, 0.8);
 }

 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }

 .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffd700;
 }

 /* FAQ Section */
 .faq {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
 }

 .faq-container {
    max-width: 900px;
    margin: 0 auto;
 }

 .faq-item {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
 }

 .faq-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
 }

 .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
 }

 .faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
 }

 .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
 }

 .faq-item.active .faq-icon {
    transform: rotate(45deg);
 }

 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
 }

 .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
 }

 .faq-answer p {
    color: #b0b0b0;
    line-height: 1.8;
 }

 /* Footer */
 footer {
    background: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 footer p {
    color: #888;
    margin-bottom: 1rem;
 }

 .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
 }

 .social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
 }

 .social-links a:hover {
    color: #ff6b35;
    transform: translateY(-3px);
 }

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

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

    40% {
       transform: translateX(-50%) translateY(-10px);
    }

    60% {
       transform: translateX(-50%) translateY(-5px);
    }
 }

 .scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: #ff6b35;
 }

 /* Mobile Responsive */
 @media (max-width: 968px) {
    .nav-links {
       position: fixed;
       top: 0;
       right: -100%;
       height: 100vh;
       width: 70%;
       background: rgba(10, 10, 10, 0.98);
       flex-direction: column;
       justify-content: center;
       align-items: center;
       transition: right 0.3s ease;
       backdrop-filter: blur(10px);
    }

    .cta-button-submit {
       margin-left: 0;
       margin-top: 1.5rem;
    }

    .nav-links.active {
       right: 0;
    }

    .logo {
       z-index: 1001;
    }

    .logo-image {
       height: 30px;
    }

    .menu-toggle {
       display: flex;
       z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
       transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
       opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(8px, -8px);
    }

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

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

    .gallery-item {
       min-width: 280px;
    }
 }