body {
    font-family: "Open Sans", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

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

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #004080;
}









/* Banner Section */
.banner {
    background: url("https://i.ibb.co/XMfy6fb/Beige-Minimalist-Food-Vlog-Women-Youtube-Thumbail-49.png") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .banner {
        height: 40vh; /* Make the banner height smaller for mobile (still rectangular) */
    }

    .banner-content h1 {
        font-size: 1em; /* Adjust text size to fit the smaller banner */
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.navbar .logo {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: white;
}

.menu {
    display: flex;
    flex-direction: row;
}

.banner-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: 40px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.learn-more {
    font-size: 1.2em;
    background-color: white;
    color: #004080;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    background-color: #004080;
    color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .banner-content h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2em;
    }

    .navbar {
        padding: 10px 15px;
    }

    .learn-more {
        font-size: 1em;
        padding: 8px 16px;
    }
}






/* Mobile Menu Toggle */
.menu {
    list-style: none;
    display: none; /* Hidden by default */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Covers 70% of the screen width */
    height: 100%; /* Covers the full height of the screen */
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    padding: 20px;
    gap: 20px;
    z-index: 1000;
}

.menu li {
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 1.5em; /* Larger font size */
    font-weight: bold;
    text-align: center;
    transition: color 0.3s;
}

.menu a:hover {
    color: #1e90ff; /* Highlight color */
}

.menu.show {
    display: flex; /* Display the menu when the "show" class is added */
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    font-size: 2em; /* Larger font size */
    cursor: pointer;
    display: none; /* Hidden on desktop */
    color: white;
    position: relative;
    z-index: 1001; /* Above the menu */
}

/* Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show toggle button on smaller screens */
    }

    .navbar {
        justify-content: space-between;
    }
}










/* Default Menu (Desktop View) */
.menu {
    list-style: none;
    display: flex; /* Default flex display for larger screens */
    flex-direction: row;
    gap: 20px;
    margin: 0;
    padding: 0;
    position: static; /* No fixed positioning on desktop */
    background: none; /* No background for desktop menu */
    height: auto;
    width: auto;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Mobile Menu (Hidden by Default) */
.menu.show {
    display: flex; /* Enable flex for mobile menu when toggled */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Covers 70% of screen width */
    height: 100%; /* Full screen height */
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    padding: 20px;
    gap: 20px;
    z-index: 1000;
}

.menu a {
    font-size: 1.5em; /* Larger font for mobile */
    text-align: center;
    transition: color 0.3s;
}

.menu a:hover {
    color: #1e90ff; /* Highlight color */
}

/* Menu Toggle Button */
.menu-toggle {
    font-size: 2em; /* Large size for mobile toggle button */
    cursor: pointer;
    display: none; /* Hidden by default */
    color: white;
    position: relative;
    z-index: 1001; /* Stays above the menu */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu {
        display: none; /* Hide menu on mobile by default */
    }

    .menu.show {
        display: flex; /* Show when toggled */
    }

    .menu-toggle {
        display: block; /* Show menu toggle button on mobile */
    }

    .navbar {
        justify-content: space-between;
    }
}










/* Centered Text in Banner */
.banner-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.banner-content h1 {
    font-size: 3em;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 20px 0;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5em;
    }

    .navbar {
        padding: 10px 20px;
    }

    .menu ul {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2em;
    }

    .navbar {
        padding: 10px 15px;
    }
}


















.segments {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.segment {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    max-width: calc(33.333% - 20px);
}

.segment img {
    width: 100%;
    height: auto;
}

.segment-content {
    padding: 15px;
}

.segment-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #004080;
}

.segment-content p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .segment {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .segment {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.key-points-section {
    background-color: #21b2a6;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.key-points-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.key-points-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.key-points-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.key-point {
    text-align: center;
}

.key-point i {
    font-size: 2.5rem;
    color: #1abc9c;
    margin-bottom: 10px;
}

.key-point p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .key-points-icons {
        flex-direction: column;
        gap: 20px;
    }
}
.key-point i {
    font-size: 2.5rem;
    color: #ffffff; /* Change this to your preferred color */
    margin-bottom: 10px;
}
.key-points-section {
    background-color: #3cc7a3; /* Exact teal-like color from your image */
    color: white;
    text-align: center;
    padding: 40px 20px;
}
















/* Join Our Team Section */
.join-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff; /* Light blue background */
}

.join-container {
    display: flex;
    flex-wrap: nowrap; /* Ensure side-by-side layout */
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    align-items: center;
}

/* Text Section */
.join-text {
    flex: 1; /* Take up half the space */
    font-family: "Open Sans", Helvetica, sans-serif;
    color: #0056a4;
    padding: 20px;
    text-align: left;
}

.join-text h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
}

.join-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);
}

/* Image Section */
.join-image {
    flex: 1; /* Take up half the space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-container {
        flex-wrap: wrap; /* Allow stacking for smaller screens */
        text-align: center;
    }

    .join-text {
        flex: 1 1 100%; /* Full width */
    }

    .join-image {
        flex: 1 1 100%; /* Full width */
        margin-top: 20px;
    }

    .join-image img {
        max-width: 90%; /* Reduce image size for small screens */
    }
}




/* Contact Us Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-section h2 span {
    color: #ffffff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Card */
.contact-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.contact-card .icon {
    font-size: 3rem;
    color: #ff3b6e;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        max-width: 90%;
    }
}



/* Footer Section */
.footer-section {
    background-color: rgba(0, 0, 0, 0.5); /* Dark background */
    color: #ccc; /* Light text */
    text-align: center;
    padding: 20px;
    font-family: "Open Sans", Helvetica, sans-serif;
}

.footer-icons {
    margin-bottom: 15px;
}

.footer-icons a {
    margin: 0 15px;
    color: #ccc;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-icons a:hover {
    color: #ffffff; /* Highlight color (blue shade) */
}

.footer-section p {
    font-size: 1rem;
    margin: 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-icons a {
        font-size: 1.5rem;
        margin: 0 10px;
    }
}