*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}




nav ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

/* Right-side styles */
.right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-side img {
    width: 24px;
    height: 24px;
}

/* Mobile styles */
@media (max-width: 768px) {
    section {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
        position: sticky;
        
    }

    .menu-icon {
        display: block; /* Ensure the menu icon is visible on smaller screens */
        cursor: pointer;
        font-size: 24px;
    }

    nav ul {
        display: none; /* Hide the menu by default on smaller screens */
        flex-direction: column;
        gap: 15px;
        background-color: #e7fdf6;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    nav ul.active {
        display: flex; /* Show the menu when the 'active' class is added */
    }

    .right-side {
        margin-top: 10px;
    }

    img {
        width: 80px;
        height: 80px;
    }
}

.menu-icon {
    display: none; /* Hide the menu icon by default on larger screens */
}



body {
    padding-top: 70px;
 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 75px;
    height: auto;
    
}

.nav-link {
    color: black !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #127a58 !important;
    transform: translateY(-2px);
}

/* Search Bar */
.search-form {
    position: relative;
    margin-right: 15px;
}

.search-input {
    border-radius: 20px;
    padding-left: 40px;
    width: 220px;
    border: 1px solid var(--gray);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 10px;
    color: var(--primary-dark);
}

/* Buttons */
.auth-buttons .btn {
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.login-btn {
    border: 1px solid #ff7f50;
    color: #ff7f50;
}

.login-btn:hover {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.signup-btn {
    background-color: #127a58;
    color: white;
}

.signup-btn:hover {
    background-color: white;
    color: #127a58;
    border: 1px solid #127a58;
}

/* Hero Section */
.hero-section {
    background-color: #e7fdf6 !important; /* Very light green background */
    color: #127a58; /* Matching text color */
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

/* Hero Section Buttons */
.hero-section .btn {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.hero-section .btn-light {
    background-color: #127a58; /* Matching green button */
    color: white;
    border: none;
}

.hero-section .btn-light:hover {
    background-color: #0f4432; /* Darker green on hover */
    color: white;
}

.hero-section .btn-outline-light {
    border: 1px solid #127a58; /* Matching green border */
    color: #127a58;
    background-color: transparent;
}

.hero-section .btn-outline-light:hover {
    background-color: #127a58; /* Green background on hover */
    color: white;
}

/* Main Content */
.hero-section {
    
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 25px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card .category-badge {
    background-color: var(--secondary);
    color: white;
}

/* Footer */

:root {
    --primary-color: #127a58;
    --primary-light: #18a076;
    --primary-dark: #0e5d44;
    --secondary-color: #6c757d;
    --dark-color: #2d3e50;
    --light-color: #f8f9fa;
    --hover-color: #0e5d44;
    --transition-speed: 0.3s;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 30px !important;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background-color: var(--primary-color) !important;
    color: white;
    border-radius: 30px !important;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--primary-dark) !important;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }
    
    .search-form {
        margin: 15px 0;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .auth-buttons {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero_image img{
        width: 250px;
        padding: 40px 0;
    }
}

.footer-brand img {
    width: 100px;
    height: auto;

    margin-bottom: 10px;
    margin-top: 10px;

    
}
