 /* Global Reset */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/image_1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    /* padding-top: 50px; */
    margin-top: 110px;
    max-width: 700px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: slideInDown 1.2s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInUp 1.2s ease-out;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #009dff;
    color: white;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 157, 255, 0.68);
    transition: background-color 0.3s, transform 0.3s;
}

.hero-content .cta-button:hover {
    background-color: rgba(0, 157, 255, 0.68);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content .cta-button {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Why Participate Section */

.why-participate {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eaf1f8, #f8fcff);
}

.participate-container {
    /* display: flex !important; */
    /* flex-direction: column !important; */

}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Updated Benefits Styles */
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px 20px;
    width: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.05);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.benefit:hover::before {
    background: rgba(0, 123, 255, 0.1);
    opacity: 1;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #ffffff;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 1;
}

.benefit h3 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    z-index: 1;
}

.benefit p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 100%;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4faff, #e6f7ff);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    background: #009dff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Prizes Section */
.prizes-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4faff, #e6f7ff);
}

.prizes-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.prize-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.prize-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: #009dff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.prize-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.prize-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .prize-number {
        font-size: 1rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .prize-title {
        font-size: 1.4rem;
    }

    .prize-description {
        font-size: 0.9rem;
    }
}

/* Levels Section */
.levels-section {
    padding: 80px 20px;
    background: #f4faff;
}

.levels-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.level-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.level-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #009dff;
    margin-bottom: 20px;
}

.level-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.level-box ul {
    list-style-type: none;
    padding: 0;
}

.level-box ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: 1fr;
    }

    .level-title {
        font-size: 1.4rem;
    }

    .level-description {
        font-size: 1rem;
    }

    .level-box ul li {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f4faff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faq-items {
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Contact Us Section */
.contact-us-section {
    padding: 80px 20px;
    background: #e6f7ff;
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-group textarea {
    height: 120px;
}

.submit-btn {
    background-color: #009dff;
    color: white;
    font-size: 1.1rem;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #007bb5;
}

.contact-info-comp {
    margin-top: 40px;
    font-size: 1rem;
    color: #333;
}

.contact-info-comp p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

/* Modal for Registration Form */

/* Modal Style */
.modal {
display: none;  /* Hidden by default */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);  /* Semi-transparent background */
z-index: 999;  /* Ensure it's above other content */
overflow: auto;  /* Allow scroll inside the modal */
padding-top: 100px;  /* Add padding to push content below the fixed header */
}

/* Modal Content */
.modal-content {
background-color: #fff;
margin: auto;
padding: 20px;
border-radius: 8px;
width: 80%;
max-width: 500px;
z-index: 999;  /* Ensure modal content stays on top */
}

/* Close Button (x) */
.close-btn {
font-size: 30px;
color: #333;
position: absolute;
top: 10px;
right: 20px;
cursor: pointer;
}

/* Form Styling */
.register-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.register-form label {
font-size: 1rem;
margin-bottom: 5px;
}

.register-form input {
padding: 10px;
font-size: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
}

.pay-now-btn {
padding: 10px 20px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.1rem;
transition: background-color 0.3s;
}

.pay-now-btn:hover {
background-color: #218838;
}

/* For body scroll prevention when modal is open */
body.modal-open {
overflow: hidden;
}

/* For mobile devices */
@media (max-width: 768px) {
.modal-content {
width: 90%;  /* Make modal content take up more width on smaller screens */
}
}