/* Navbar Styling */
.navbar {
    background-color: #ffffff;
    /* White background */
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    /* Dark text color */
    padding: 15px 20px;
    /* Padding for nav items */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Font styling */
    font-weight: 500;
    /* Medium weight for nav items */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #00704a;
    /* Change color on hover */
    background-color: #f0f0f0;
    /* Light grey background on hover */
    border-radius: 4px;
    /* Rounded corners */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(0, 0, 0, 0.5)" stroke-width="2" d="M5 7h20M5 15h20M5 23h20"/%3E%3C/svg%3E');
}

.navbar-logo {
    height: 40px;
    /* Set logo height */
    width: auto;
    /* Maintain aspect ratio */
}

.dropdown-menu {
    border-radius: 8px;
    /* Rounded corners for dropdown menu */
    padding: 10px 0;
    /* Padding for dropdown menu */
}

.dropdown-item {
    color: #333;
    /* Dark text color for dropdown items */
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    /* Light grey background on hover */
}

@media (max-width: 767px) {
    .navbar-nav {
        text-align: center;
        /* Center text in mobile view */
    }

    .navbar-nav .nav-link {
        padding: 10px;
        /* Adjust padding for mobile view */
    }
}



/* Categories Section Styling */
.categories-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    /* Light grey background */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    /* Dark text color */
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Rounded corners for cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* Cover the container while preserving aspect ratio */
    border-radius: 8px;
    /* Rounded corners for images */
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    /* White text color */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.category-card:hover .category-overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Contact Section Styling */
.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
    /* White background */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    /* Dark text color */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form .form-control:focus {
    border-color: #00704a;
    /* Highlight border color on focus */
    outline: none;
}

.contact-form .btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #00704a;
    /* Green background color */
    color: #ffffff;
    /* White text color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #005f3f;
    /* Darker green on hover */
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
}

.contact-info i {
    color: #00704a;
    /* Green color for icons */
    margin-right: 10px;
}

.contact-info span {
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-form .form-control {
        font-size: 0.875rem;
        /* Slightly smaller font size on smaller screens */
    }

    .contact-info li {
        font-size: 0.875rem;
    }
}

/* Footer Styling */
.footer {
    background-color: #333;
    /* Dark background color */
    color: #ffffff;
    /* White text color */
    padding: 40px 0;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffffff;
    /* White text color */
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #ffffff;
    /* White text color */
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

.footer-contact i {
    color: #00704a;
    /* Accent color for icons */
    margin-right: 10px;
}

.footer-social {
    margin-top: 20px;
}

.social-icon {
    color: #ffffff;
    /* White icon color */
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover {
    color: #00704a;
    /* Accent color on hover */
}

.footer-copy {
    margin-top: 20px;
    font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}