
html, body, main {
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
	background-color: #2b2f38;
	color: #1484c4;
}

* {
	box-sizing: inherit;
}

	/* Add padding-top to main to account for the fixed header */
main {
	padding-top: 0px; /* Adjust this value based on your header height */
}

section {
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.content-section {
    padding-top: 180px;  /* Adjust this value according to your header height */
    max-width: 100%;
    
}
.about-section,
.showcase {
    min-height: 100vh;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
    font-size: 2rem; /* Reduce font size for smaller screens */
    }

    h2 {
    font-size: 2rem; /* Adjust other elements similarly */
    }

    section {
    padding: 0px; /* Reduce padding to fit smaller screens */
    }
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Spreads items across the header */
    align-items: center;
    padding: 10px 10px;
    background-color: #2b2f38; /* Header background */
    z-index: 50;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-bottom: 20px;
}

.logo {
    height: 100px;
    width: auto;
}

.nav-buttons {
    display: flex;
    justify-content: space-between; /* Spread buttons evenly */
    flex: 1; /* Make buttons container take available space */
    margin-left: 10px; /* Space between the logo and the buttons */
}

.button {
    background-color: transparent; /* Remove button background */
    color: white; /* Keep button text white */
    border: none; /* Remove button border */
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase; /* Optional: Make text uppercase */
    padding: 0 10px; /* Adjust spacing inside buttons */
    flex: 1; /* Ensure buttons are evenly spaced */
    text-align: center; /* Center-align text inside each button */
}

.button:hover {
    color: #007BFF; /* Highlight text on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}

.content-section {
    display: none; /* Hide by default */
    margin-top: 20px;
}

.content h1 {
    font-size: 3rem;  /* Default size for large screens */
    text-align: justify;
}

/* Responsive Title for Medium Screens */
@media (max-width: 1024px) {
    .content h1 {
        font-size: 2.5rem;  /* Smaller font size for tablets and medium screens */
    }
}

/* Responsive Title for Small Screens */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;  /* Smaller font size for mobile devices */
    }
}

/* Very Small Screens (Optional) */
@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;  /* Even smaller font size for very small screens */
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 15vh;
}

.hero {
    color: #1484c4;
    text-align: justify;
    padding: 10px;
}

.hero h1 {
    font-size: 2rem;  /* Adjust font size based on screen size */
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Adds a shadow effect for readability */
}

.hero p {
    font-size: 1rem;
    margin: 20px 10;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    text-align: justify;
    margin-right: auto;
}
.hero-image {
    width: 100%;
    height: 50vh; /* Adjust height as needed */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area without distorting */
}


.cta-container {
    position: relative; /* Make the container a reference point for absolute positioning */
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    align-self: center; /* Center the button */
    margin-top: 20px; /* Space above the button */
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Value Proposition Section */
.value-proposition {
    padding: 10px;
    margin-top: 20px;
    text-align: justify;
    border-radius: 8px;
}

.value-proposition h2 {
    font-size: 2.5rem;
    color: #1484c4;
    margin-bottom: 20px;
}

.value-proposition p {
    font-size: 1rem;
    font-weight: 300;
    color: #1484c4;
    line-height: 1.5;
    margin-bottom: 15px;
}

.concept-art {
    text-align: center;
    margin-top: 50px;
}

.concept-art h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.concept-art {
    text-align: center;
    margin-top: 50px;
}

.concept-art h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-images {
    display: flex;
    transition: transform 1s ease-in-out;
}

.carousel-item {
    position: relative;
    flex-shrink: 0;  /* Prevent items from shrinking */
    width: 100%;  /* Ensures the item takes full width */
}

.carousel-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-title {
    position: absolute;
    bottom: 10%;
    left: 10%;
    color: white;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-image: url('Images/Dream\ World\ concept.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero h1 {
    color: white;
    font-size: 3rem; /* Adjust font size */
    text-align: center;
    font-weight: bold;
    z-index: 1; /* Make sure the text is above the overlay */
}

/* About Us Content */
.about-content {
    padding: 40px 20px;
    color: #fff;
    text-align: justify;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2rem;
    margin-top: 20px;
    color: #1484c4;
}

.about-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.about-content ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-content ul li strong {
    color: #1484c4;
}


/* Contact Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px; /* Add padding for proper spacing */
}

.contact-hero .contact-image img {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the image */
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-top: 20px;
    font-weight: bold;
    word-wrap: break-word; /* Prevent long words from overflowing */
}

/* Contact Form Section */
.contact-content {
    padding: 40px 20px;
    color: #fff;
    text-align: justify;
    max-width: 90%; /* Limit the width for responsiveness */
    margin: 20px auto; /* Center and provide top/bottom spacing */
    overflow: hidden; /* Ensure no content spills outside */
    word-wrap: break-word; /* Wrap long text */
}

.contact-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%; /* Prevent the input fields from overflowing */
    box-sizing: border-box; /* Include padding and border in element's total width/height */
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1484c4;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1484c4;
}

p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.email-link {
    font-size: 1.3rem;
    color: #007BFF;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    margin: 15px 0 20px 20px;
    padding: 0;
}