/* Global Reset and Styles */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #66c27b;
}

.navbar .logo {
    width: 100px;
}

.navbar .nav-links {
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #66c27b;
}

.navbar .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #66c27b;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover::before {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu Styling */
.mobile-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    top: 13%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #66c27b;
    z-index: 9999;
}

.mobile-menu.show {
    display: flex; /* Show when toggled */
	position: sticky;
	top: 13%;
}

.mobile-menu a {
    color: #fff; /* Ensure text is white */
    text-decoration: none;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #66c27b;
    transition: width 0.3s ease, left 0.3s ease;
}

.mobile-menu a:hover::before {
    width: 100%;
    left: 0;
}

/* Carousel Banner Styling */
.carousel-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.slick-carousel {
    width: 100%;
    margin: 0 auto;
}

.slick-carousel .slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    height: 400px;
    width: 100%;
	
}

.carousel-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 50px;
    text-align: center;
}

.text-section {
    width: 50%;
    color: white;
    font-size: 24px;
    text-align: center;
    z-index: 2;
}

.text-section h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}

.text-section p {
    font-size: 22px;
    color: white;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .slick-carousel .slide {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px;
    }

    .text-section {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .text-section h2 {
        font-size: 28px;
    }

    .text-section p {
        font-size: 18px;
    }

    /* Hide desktop menu items */
    .nav-links {
        display: none !important; /* Ensure it is hidden */
    }

    .menu-toggle {
        display: block; /* Ensure hamburger menu is visible */
        cursor: pointer;
    }
}
