/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Hero Section Styles */
.hero-wrapper {
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)
    ), url("../img/image_1.jpg") no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-content-box {
    max-width: 700px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4fc3f7; /* Light blue for title */
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b2ebf2; /* Light teal for description */
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #0288d1; /* Blue button color */
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(2, 136, 209, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #0277bd; /* Darker blue on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}
/* Why Join Section Styles */
.why-join-section {
padding: 50px 20px;
background-color: #e3f2fd; /* Light blue background */
color: #333;
text-align: center;
}

.why-join-title {
font-size: 2.5rem;
color: #1e88e5; /* Bright blue for the title */
margin-bottom: 20px;
}

.why-join-description {
font-size: 1.2rem;
margin-bottom: 40px;
max-width: 800px;
margin: auto;
line-height: 1.8;
color: #555;
}

/* Card Container */
.why-join-cards {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
max-width: 1200px;
margin: auto;
}

/* Individual Card */
.why-join-card {
flex: 1 1 250px;
padding: 20px;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-join-card:hover {
transform: translateY(-5px); /* Lift effect */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card Icon */
.why-join-icon {
width: 70px;
margin-bottom: 15px;
}

/* Card Title */
.why-join-card-title {
color: #1e88e5; /* Bright blue for card titles */
margin-bottom: 10px;
font-size: 1.2rem;
}

/* Card Description */
.why-join-card-description {
color: #555;
font-size: 1rem;
line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
.why-join-title {
font-size: 2rem;
}

.why-join-description {
font-size: 1rem;
}

.why-join-cards {
flex-direction: column;
gap: 20px;
}
}

/* Program Highlights Section */
.highlights-section {
padding: 60px 20px;
background-color: #f8f9fc; /* Light grayish-white for clean background */
}

.highlights-title {
font-size: 2.5rem;
color: #1a1a6b; /* Dark blue for headings */
text-align: center;
margin-bottom: 30px;
text-transform: uppercase;
font-weight: bold;
}

.highlights-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}

.highlight-box {
background-color: #ffffff; /* White cards */
border-radius: 15px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
transform: translateY(-8px); /* Lift effect */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.highlight-icon {
font-size: 3rem;
color: #007bff; /* Blue for icons */
margin-bottom: 15px;
}

.highlight-title {
font-size: 1.5rem;
font-weight: bold;
color: #1a1a6b; /* Dark blue for card titles */
margin-bottom: 10px;
}

.highlight-description {
font-size: 1rem;
color: #4a4a4a; /* Neutral gray for text */
line-height: 1.6;
}

/* About Section */
.about-section {
padding: 60px 20px;
background-color: #ffffff; /* Clean white background */
}

.about-container {
display: flex;
flex-wrap: wrap; /* Ensure responsiveness */
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
gap: 30px;
}

.about-text {
flex: 1;
max-width: 600px;
}

.about-title {
font-size: 2.5rem;
color: #1a1a6b; /* Dark blue for professionalism */
margin-bottom: 20px;
font-weight: bold;
text-transform: uppercase;
}

.about-description {
font-size: 1rem;
color: #4a4a4a; /* Neutral gray for readability */
line-height: 1.8;
margin-bottom: 15px;
}

.about-highlight {
font-size: 1.1rem;
color: #007bff; /* Blue to emphasize important text */
font-weight: bold;
margin-bottom: 30px;
}

.about-btn {
display: inline-block;
padding: 12px 30px;
font-size: 1rem;
font-weight: bold;
color: #ffffff;
background-color: #ff5722; /* Vibrant orange for the button */
border-radius: 25px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-btn:hover {
background-color: #e64a19;
transform: translateY(-5px); /* Hover lift effect */
}

.about-image {
flex: 1;
max-width: 500px;
}

.about-image img {
width: 100%;
border-radius: 15px; /* Rounded corners for the image */
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
.about-container {
flex-direction: column; /* Stack content vertically on smaller screens */
}

.about-text, .about-image {
max-width: 100%;
}

.about-title {
font-size: 2rem;
}
}

/* Prizes Section */
.prizes-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light gray background */
}

.prizes-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.prizes-text {
    flex: 1;
    max-width: 600px;
    order: 2; /* Make sure the content comes after the image */
}

.prizes-title {
    font-size: 2.5rem;
    color: #1a1a6b; /* Dark blue for professionalism */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.prizes-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.prizes-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.prize {
    text-align: center;
    padding: 15px;
    background-color: #ffffff;
    border: 2px solid #007bff; /* Blue border for emphasis */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
    position: relative;
    height: 150px; /* Adjust height based on your content */
    overflow: hidden;
}

.prize h3 {
    font-size: 1.5rem;
    color: #1a1a6b;
    margin-bottom: 10px;
    visibility: visible; /* Keep prize titles visible */
}

.prize p {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    visibility: visible; /* Ensure price text is visible */
    position: relative;
}

.prize .price {
    position: relative;
    overflow: hidden;
}

.prize .price::before {
    content: ''; /* Empty content for the scratch effect */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0.2) 90%);
    z-index: 1;
    pointer-events: none;
    animation: scratch 1.5s infinite linear; /* Scratch effect animation */
}

@keyframes scratch {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

.prizes-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff5722;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.prizes-btn:hover {
    background-color: #e64a19;
    transform: translateY(-5px);
}

.prizes-image {
    flex: 1;
    max-width: 500px;
    order: 1; /* Image comes first */
}

.prizes-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .prizes-container {
        flex-direction: column;
    }

    .prizes-text, .prizes-image {
        max-width: 100%;
    }

    .prizes-title {
        font-size: 2rem;
    }
}


/* Participation Section */
.participation-section {
padding: 60px 20px;
background-color: #ffffff;
}

.participation-container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
gap: 30px;
}

.participation-text {
flex: 1;
max-width: 600px;
}

.participation-title {
font-size: 2.5rem;
color: #1a1a6b;
margin-bottom: 20px;
font-weight: bold;
text-transform: uppercase;
}

.participation-description {
font-size: 1rem;
color: #4a4a4a;
line-height: 1.8;
margin-bottom: 30px;
}

.participation-steps {
list-style-type: decimal;
padding-left: 20px;
margin-bottom: 30px;
}

.step {
font-size: 1.1rem;
color: #4a4a4a;
margin-bottom: 10px;
}

.participation-btn {
display: inline-block;
padding: 12px 30px;
font-size: 1rem;
font-weight: bold;
color: #ffffff;
background-color: #ff5722;
border-radius: 25px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
transition: transform 0.3s ease, background-color 0.3s ease;
}

.participation-btn:hover {
background-color: #e64a19;
transform: translateY(-5px);
}

.participation-image {
flex: 1;
max-width: 500px;
}

.participation-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
.participation-container {
flex-direction: column;
}

.participation-text, .participation-image {
max-width: 100%;
}

.participation-title {
font-size: 2rem;
}
}

/* Terms and Conditions Section */
.terms-section {
padding: 60px 20px;
background-color: #f4f4f9; /* Light background color */
}

.terms-container {
max-width: 1200px;
margin: 0 auto;
}

.terms-title {
font-size: 2.5rem;
color: #1a1a6b;
margin-bottom: 20px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
}

.terms-list {
list-style-type: none;
padding-left: 0;
}

.terms-item {
font-size: 1.1rem;
color: #4a4a4a;
margin-bottom: 15px;
line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
.terms-title {
font-size: 2rem;
}
}

/* Contact Us Section */
.contact-section {
padding: 60px 20px;
background-color: #ffffff; /* Clean background */
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.contact-title {
font-size: 2.5rem;
color: #1a1a6b;
margin-bottom: 20px;
font-weight: bold;
text-transform: uppercase;
}

.contact-description {
font-size: 1.2rem;
color: #4a4a4a;
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 600px;
margin: 0 auto;
}

.form-label {
font-size: 1.1rem;
color: #1a1a6b;
text-align: left;
margin-bottom: 8px;
}

.form-input, .form-textarea {
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 8px;
width: 100%;
margin-bottom: 15px;
}

.form-textarea {
height: 150px;
resize: vertical;
}

.form-btn {
padding: 12px 30px;
font-size: 1.1rem;
font-weight: bold;
color: #ffffff;
background-color: #007bff; /* Blue button */
border-radius: 25px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.form-btn:hover {
background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
.contact-title {
font-size: 2rem;
}

.contact-form {
width: 100%;
}
}