/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #2f95bb;
}

/* Header */
.header {
    background: white;
    text-align: center;
    padding: 65px 0;
    position: relative;
}

.logo img {
    width: 200px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: url('https://i.ibb.co/jvKRNVps/question-mark-1872665.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 85px;
}

.register-btn {
    background: #d291fc;
    color: black;
    font-size: 16px;
    padding: 16px 26px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.register-btn:hover {
    background: #b76ef7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .register-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Section Styling */
.categories {
    text-align: center;
    padding: 70px 0;
}

.section-title {
    font-size: 30px;
    font-weight: bold;
    color: #6c5ce7;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.category:hover {
    transform: scale(1.05);
}

.category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 30px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .categories-container {
        flex-direction: column;
        align-items: center;
    }

    .category {
        width: 90%;
        max-width: 350px;
    }
}

/* Section 3 Styling */
.section-three {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.section-three .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #6c48af;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contest-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contest-item {
    width: 300px;
    text-align: center;
}

.contest-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.contest-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.contest-item p {
    font-size: 30px;
    color: #333;
    margin-top: 10px;
}

/* Section 4 Styling */
.vision-section {
    text-align: center;
    background-color: #f4f4f4;
    padding: 60px 20px;
}

.vision-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.vision-text {
    font-size: 16px;
    color: #666;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer {
    background-color: #f8f9fa;
    padding: 70px 0;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left img {
    width: 120px;
    margin-bottom: 50px;
}

.footer-left p {
    font-size: 14px;
    color: #555;
}

.footer-right {
    flex: 1;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.registration-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.registration-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #5a4fcf;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: normal;
}

.submit-btn {
    width: 50%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #5a4fcf;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4638b1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-right {
        max-width: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.payment-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background 0.3s ease;
}

.payment-option:hover {
    background-color: #f1e8ff;
}

.payment-option input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.payment-label img {
    width: 30px;
    height: 30px;
}

.continue-btn {
    width: 55%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #5a4fcf;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.continue-btn:hover {
    background-color: #4638b1;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    gap: 20px; /* This adds spacing between buttons */
    padding: 10px 10px 0 10px;
    background-color: #fff;
    position: relative;
    top: -20px;
}

.play-button {
    background-color: #5a4fcf;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease, cursor 0.3s ease;
}

.play-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.section-three + .deadline-section,
.deadline-section + .deadline-section {
    margin-top: 20px;
}

.deadline-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.step3-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.step3-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.button-group {
    display: flex;
    gap: 20px; /* Adjust as needed */
    justify-content: flex-end; /* Optional, aligns buttons to the right */
    padding: 10px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.close-button {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.modal h2 {
  margin-bottom: 15px;
}
.modal .input-group {
  margin-bottom: 15px;
}
.modal .submit-btn {
  width: 100%;
  padding: 10px;
  background: #1e90ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
