* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}
.top-bar {
    background: #000; /* Black background */
    color: #fff; /* White text */
    padding: 0.5rem; /* Thin height */
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100; /* Above header */
    font-size: 0.9rem; /* Small text */
}

.top-bar p {
    margin: 0; /* Remove default paragraph margin */
}

header {
    background: #2c3e50;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 1.9rem;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu li {
    margin-right: 2rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-menu li a:hover {
    background-color: #34495e;
    transform: scale(1.05);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.nav-menu li a.active {
    border-bottom: 2px solid #3498db;
}

main {
    min-height: calc(100vh - 60px);
    padding-top: 4rem; /* Add padding to push content below fixed header + top bar */

}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
    color: #fff;
    background-color: #ecf0f1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}

.hero-text-bg {
    background: rgba(128, 128, 128, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #2980b9;
}

/* About Us Section */
.about-us {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: #ffffff;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-us p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-us-features {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.feature-item {
    flex: 1;
    text-align: center;
}

.feature-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
}

.discover {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
}

.discover h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.discover p {
    margin-bottom: 1.5rem;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    z-index: 1;
}

.carousel {
    position: relative;
    max-width: 1000px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel input[type="radio"] {
    display: none;
}

.carousel-inner {
    display: flex;
    width: 3000px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-item {
    width: 1000px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
}

.carousel-item a {
    display: block;
    text-decoration: none;
    color: white;
}

.carousel-item img {
    width: 1000px;
    height: 400px;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem;
    text-align: center;
    font-size: 1rem;
}

.carousel-controls {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.carousel-controls label {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-controls label:hover {
    background: #3498db;
}

.carousel-wrapper input[type="radio"]:checked ~ .carousel + .carousel-controls label[for="slide1"],
.carousel-wrapper input[type="radio"]:checked ~ .carousel + .carousel-controls label[for="slide2"],
.carousel-wrapper input[type="radio"]:checked ~ .carousel + .carousel-controls label[for="slide3"] {
    background: #3498db;
}
/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 0 1rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column iframe {
    width: 100%;
    height: 150px;
    border: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.contact-us {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: #f9f9f9; /* Matches .discover for consistency */
}

.contact-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50; /* Matches other section headings */
}

.contact-us p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical; /* Allows vertical resizing only */
}

.contact-form button {
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #2980b9;
}
.about-hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 300px;
    color: #fff;
    background-color: #ecf0f1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.5rem;
}

.our-story {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    text-align: center;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.our-story h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.our-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.our-team {
    background: #f9f9f9;
    padding: 2rem;
    text-align: center;
}

.our-team h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
}

.our-mission {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: #fff;
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
}

.our-mission h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.our-mission p {
    font-size: 1.1rem;
}
.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #ecf0f1;
    color: #2c3e50;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.5rem;
}

.contact-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-form-wrapper, .contact-info-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper h2, .contact-info-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #2980b9;
}

.contact-info-wrapper p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-info-wrapper strong {
    color: #2c3e50;
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}
.coming-soon {
    min-height: calc(100vh - 4rem - 300px); /* Full height minus header and footer */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ecf0f1;
    text-align: center;
    padding: 2rem;
}

.coming-soon-content h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    font-size: 2rem;
    color: #666;
}   

/* Media Queries */
@media (max-width: 1000px) {

     .top-bar {
        font-size: 0.8rem; /* Slightly smaller text */
        padding: 0.4rem; /* Slightly thinner */
    }
    header {
        top: 1.6rem;
    }
    main {
        padding-top: 3.5rem;
    }

      .contact-us {
        padding: 1rem;
    }

    .contact-us h2 {
        font-size: 1.5rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 0.6rem 1.5rem;
    }
    .hamburger {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #2c3e50;
        width: 200px;
        padding: 1rem;
        flex-direction: column;
        z-index: 1001;
    }

    .nav-menu li {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .nav-menu li a {
        display: block;
        padding: 0.5rem 0;
    }

    .nav-menu li a:hover {
        background-color: #34495e;
        transform: scale(1.05);
        padding: 0.5rem;
        border-radius: 3px;
    }

    .menu-toggle:checked + .hamburger + .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

.hero {
        padding: 2rem 1rem;
        min-height: 350px;
    }

    .hero-text-bg {
        padding: 0.8rem 1.5rem; /* Slightly smaller padding for medium screens */
    }

    .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* ... (other unchanged styles) ... */


    .about-us {
        padding: 1rem;
    }

    .about-us h2 {
        font-size: 1.5rem;
    }

    .about-us p {
        font-size: 1rem;
    }

    .about-us-features {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-img {
        width: 80px;
        height: 80px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .discover {
        padding: 1rem;
    }

    .discover h2 {
        font-size: 1.5rem;
    }

    .discover p {
        font-size: 1rem;
    }

    .carousel-wrapper {
        max-width: 700px;
    }

    .carousel {
        max-width: 700px;
    }

    .carousel-inner {
        width: 2100px;
    }

    .carousel-item {
        width: 700px;
    }

    .carousel-item img {
        width: 700px;
        height: 267px;
    }

    .caption {
        font-size: 0.9rem;
    }

    footer {
        position: relative;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }

    .footer-column iframe {
        height: 120px;
    }
     .about-hero {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .our-story, .our-team, .our-mission {
        padding: 1rem;
    }

    .our-story h2, .our-team h2, .our-mission h2 {
        font-size: 1.5rem;
    }

    .our-story p, .our-mission p {
        font-size: 1rem;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        min-width: 200px;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }
     .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 1rem;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper h2, .contact-info-wrapper h2 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 0.6rem 1.5rem;
    }

    .contact-info-wrapper p {
        font-size: 0.9rem;
    }

    .contact-map iframe {
        height: 150px;
    }
        .coming-soon {
        min-height: calc(100vh - 3.5rem - 250px); /* Adjusted for smaller header/footer */
        padding: 1rem;
    }

    .coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .coming-soon-content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {


.top-bar {
        font-size: 0.7rem; /* Even smaller text */
        padding: 0.3rem; /* Thinner */
    }

    header {
        top: 1.3rem; /* Adjust for smaller top bar */
    }

    main {
        padding-top: 3rem; /* Adjust padding */
    }
    .contact-us {
        padding: 1rem;
    }

    .contact-us h2 {
        font-size: 1.3rem;
    }

    .contact-us p {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .contact-form button {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
        .hero {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .hero-text-bg {
        padding: 0.5rem 0.8rem; /* Reduced padding to shrink grey box */
    }

    .hero h2 {
        font-size: 1.1rem; /* Smaller text for mobile */
        margin-bottom: 0.6rem; /* Reduced margin to fit better */
    }

    .hero p {
        font-size: 0.7rem; /* Smaller text for mobile */
        margin-bottom: 1.2rem; /* Adjusted margin */
    }

    .btn {
        padding: 0.6rem 1.5rem;
    }

 

    .about-us h2 {
        font-size: 1.3rem;
    }

    .about-us p {
        font-size: 0.9rem;
    }

    .feature-img {
        width: 60px;
        height: 60px;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .discover h2 {
        font-size: 1.3rem;
    }

    .discover p {
        font-size: 0.9rem;
    }

    .carousel-wrapper {
        max-width: 500px;
    }

    .carousel {
        max-width: 500px;
    }

    .carousel-inner {
        width: 1500px;
    }

    .carousel-item {
        width: 500px;
    }

    .carousel-item img {
        width: 500px;
        height: 200px;
    }

    .caption {
        font-size: 0.8rem;
    }
     .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .footer-column iframe {
        height: 100px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
     .about-hero {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .our-story h2, .our-team h2, .our-mission h2 {
        font-size: 1.3rem;
    }

    .our-story p, .our-mission p {
        font-size: 0.9rem;
    }

    .team-img {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 1.1rem;
    }

    .team-member p {
        font-size: 0.8rem;
    }
      .contact-hero {
        padding: 1.5rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-wrapper h2, .contact-info-wrapper h2 {
        font-size: 1.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .contact-form button {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-info-wrapper p {
        font-size: 0.8rem;
    }

    .contact-map iframe {
        height: 120px;
    }
     .coming-soon {
        min-height: calc(100vh - 3rem - 200px); /* Adjusted for mobile */
        padding: 1rem;
    }

    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1.2rem;
    }
}