/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark text color */
}

a {
    color: #007bff; /* Blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-image: url('Logo.jpeg'); /* Add a background image */
    background-size: cover;
    background-position: center;
    padding: 20px 0; 
    text-align: center;
    color: black; /* Set text color to black */
}

header h1 {
    font-size: 6em; /* Increased font size */
    margin-bottom: 10px;
    font-weight: bold; /* Added font weight */
    color: yellow;
}

header p {
    font-size: 4em; /* Increased font size */
    margin-bottom: 20px;
    font-weight: bold; /* Added font weight */
    color: yellow;
}
.header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: yellow;
}

nav ul li {
    display: inline;
    margin-right: 20px;
    color: yellow;
}

nav ul li a {
    color: yellow;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color:green; /* Change color on hover */
}


/* Hero Section Styles */
.hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 3.5em; /* Larger font size */
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em; /* Larger font size */
}

.hero button {
    background-color: #28a745; /* Bright green background color */
    color: #fff;
    border: none;
    padding: 12px 24px; /* Larger padding */
    font-size: 1.2em; /* Larger font size */
    cursor: pointer;
}

.hero button:hover {
    background-color: #218838; /* Darker shade of green on hover */
}

/* About Page Styles */
.about-section {
    background-color: #007bff; /* Bright blue background color */
    color: #fff; /* White text color */
    padding: 50px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 3em; /* Larger font size */
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.3em; /* Larger font size */
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Quests Page Styles */
.quest-card {
    background-color: #fff;
    border: 2px solid #ffc107; /* Bright yellow border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    margin-bottom: 20px;
}

.quest-card h3 {
    font-size: 2em; /* Larger font size */
    margin-bottom: 15px; /* Larger margin bottom */
}

.quest-card p {
    font-size: 1.2em; /* Larger font size */
    line-height: 1.6;
    margin-bottom: 15px; /* Larger margin bottom */
}

.quest-card button {
    background-color: #007bff; /* Bright blue background color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em; /* Larger font size */
    cursor: pointer;
}

.quest-card button:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}

/* Leaderboards Page Styles */
.leaderboard-section {
    padding: 50px 0;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.leaderboard-table th {
    background-color: #007bff; /* Bright blue background color */
    color: #fff;
}

.leaderboard-table tr:nth-child(even) {
    background-color: #f8f9fa; /* Light gray background for even rows */
}

/* Contact Us Page Styles */
.contact-form {
    padding: 50px 0;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px; /* Larger margin bottom */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
/* Contact Us Page Styles */
.contact-form {
    padding: 50px 0;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ffc107;
    border-radius: 5px;
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    background-color: #17a2b8;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1.2em;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #138496;
}


/* Footer Styles */
footer {
    background-color: #000; /* Black background color */
    color: #fff; /* White text color */
    padding: 10px 0; /* Adjusted padding */
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.login-container {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
button {
    padding: 5px;
    margin-bottom: 10px;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* CSS to display images side by side */
.image-container {
    display: flex;
}

.image-container img {
    margin-right: 10px; /* Adjust margin as needed */
}
/* CSS to set background image for the page */
body {
    background-image: url('https://t4.ftcdn.net/jpg/07/02/02/45/360_F_702024514_KWBnobEsTqUSMYK1iBlsmvzK0jV6cV92.jpg');
    background-size: cover;
    background-position: center;
}
/* Global Styles */
body,
h1,
h2,
h3,
p,
a,
button,
label {
    color: #fff; /* Set the font color to white */
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Additional CSS for the layout */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
}

.service {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.corporate-program {
    max-width: 800px;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .service {
        flex: 1 1 calc(33.33% - 20px); /* Display three services side by side */
    }
}

.service h2,
.service p {
    color: black;
}

/* Additional CSS for the layout */
.content-container {
    display: flex;
    justify-content: space-around; /* Adjusted to distribute items evenly */
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 20px;
}

.content {
    text-align: center;
    max-width: 400px;
    position: relative; /* Added */
}

.image-container {
    margin-bottom: 20px;
    position: relative;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Styles for the slider arrows */


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Adjusted */
    height: 40px; /* Adjusted */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0; /* Positioned on the left */
}

.next {
    right: 0; /* Positioned on the right */
}

.discover-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.discover-button:hover {
    background-color: #0056b3;
}


table {
    width: 100%;
    margin-top: 20px;
    background-color: black; /* Set background color */
    color: white; /* Font color for the table */
}

th, td {
    border: 1px solid #000;
    padding: 30px;
    text-align: left;
}

th {
    background-color: blue;
    font-weight: bold; /* Font weight for the first row */
}

/* Centering the Adventure Quest text */
.company-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.content-container {
    display: flex;
    justify-content: space-around; /* Adjusted to distribute items evenly */
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 20px;
}

.content {
    text-align: center;
    max-width: 400px;
    position: relative; /* Added */
}

.image-container {
    margin-bottom: 20px;
    position: relative;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.button-container button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.button-container button:last-child {
    margin-right: 0;
}

.button-container button:hover {
    background-color: #45a049;
}

/* Styles for the slider */
.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center; /* Center the slider */
}

.slider-wrapper {
    display: flex;
    justify-content: center; /* Center the slides */
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: none; /* Hide all slides initially */
}

.slide img {
    width: auto; /* Adjust width to fit the container */
    max-height: calc(100vh - 315px); /* Adjust height to fit the container */
    border-radius: 10px;
}

/* Centering the Adventure Quest text */
.logo-container {
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes the logo to the left */
    width: 100px;
}

.logo {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.company-name {
    margin-left: auto; /* Pushes the company name to the right */
    margin-right: auto; /* Pushes the company name to the left */
}

.signup-button-container {
    text-align: center;
    margin-top: 20px;
    width: 100%; /* Added */
}

.signup-button-container button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-button-container button:hover {
    background-color: #45a049;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('Logo.jpeg'); /* Add a background image */
    background-size: cover;
    background-position: center;
    padding: 20px 0; 
    text-align: center;
}

.logo {
    width: 100px; /* Adjust the logo size */
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00; /* Change color on hover */
}
main {
    padding: 20px;
}

.quest-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 40px;
}

.quest {
    flex: 0 0 30%;
    text-align: center;
    margin-right: 20px;
}

.quest img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.quest-content {
    max-width: 300px;
    margin: 0 auto;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}
.signup-container {
    width: 400px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: black; /* Set font color to black */
}

.signup-container form {
    display: flex;
    flex-direction: column;
}

.signup-container label {
    font-weight: bold;
    margin-bottom: 5px;
    color: black; /* Set font color to black */
}

.signup-container input,
.signup-container select {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    font-size: 16px;
    color: black; /* Set font color to black */
}

.signup-container input:focus,
.signup-container select:focus {
    border-color: #007bff;
    outline: none;
}

.signup-container button[type="submit"] {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-container button[type="submit"]:hover {
    background-color: #0056b3;
}

.message {
    margin-top: 20px;
    font-weight: bold;
}
form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label,
form input,
form textarea {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    color: black; /* Set text color to black */
}

form textarea {
    resize: vertical;
}

form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #45a049;
}

/* Styling for the contact information section */
section.contact-info {
    margin-top: 30px;
    text-align: center;
}

section.contact-info p {
    margin-bottom: 10px;
}

table {
            border-collapse: collapse;
            width: 100%;
            margin-top: 20px;
        }

        th, td {
            border: 1px solid #dddddd;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: black;
            color: white;
        }

        .video-container {
            width: 100%;
            overflow: hidden;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
        }
        