*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.custom-navbar {
    background-color: black;
}

.custom-navbar .nav-link {
    color: white;
}

.custom-navbar .nav-link:hover {
    color: #a8ff98; /* Light green hover color */
}

.custom-navbar .navbar-toggler {
    border-color: white;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.logo {
    height: 7%; /* Adjust logo height as needed */
    width: 7%
}

.custom-navbar .form-control {
    background-color: transparent;
    border-color: white;
    color: white;
}

.custom-navbar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.custom-navbar .btn-outline-light {
    color: white;
    border-color: white;
}

.custom-navbar .btn-outline-light:hover {
    background-color: white;
    color: black;
}

#heroCarousel {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust the height of the carousel as needed */
    overflow: hidden;
}

#heroCarousel .carousel-inner {
    height: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire carousel item area */
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the images scale and cover the container */
}

.carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeInUp 1s ease-in-out 0.3s forwards; /* Delay for heading animation */
}

.carousel-caption p {
    font-size: 1.25rem;
    margin: 10px 0;
    animation: fadeInUp 1s ease-in-out 0.6s forwards; /* Delay for paragraph animation */
}

.carousel-caption .btn {
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 5px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 1s forwards; /* Delay for button animation */
}

.carousel-caption .btn-primary {
    background-color: #4CAF50; /* Green primary button color */
    border-color: #4CAF50;
}

.carousel-caption .btn-outline-light {
    border-color: white;
    color: white;
}

.carousel-caption .btn:hover {
    opacity: 1;
}

/* Keyframe Animation for Content Fade-In and Slide-Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #heroCarousel .carousel-caption h1 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem; /* Adjust paragraph size for smaller screens */
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.875rem; /* Adjust button size for smaller screens */
    }
}
.marquee-container {
    background-color: #2C3E50; /* Dark background for the marquee */
    padding: 10px 0;
    text-align: center;
    color: white;
}

.marquee-text {
    font-size: 1.25rem;
    font-weight: bold;
    white-space: nowrap; /* Prevents the text from wrapping */
}
.plants-heading {
    background-color: #F4F4F4; /* Light background color for the heading section */
    padding: 30px 0;
}

.plants-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2C3E50; /* Dark text color for the heading */
}

.plants-heading p {
    font-size: 1.25rem;
    color: #7F8C8D; /* Slightly lighter text for the description */
}
.card-img-top{
    width: 100%;
    height: 250px;
    /* object-fit: contain; */
}
/* General Card Styling */
.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.card-img-top {
    border-bottom: 3px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
}

/* Card Body Styling */
.card-body {
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

.card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

/* Price Styling */
.card-body .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #27ae60;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-warning {
    background-color: #f39c12;
    color: white;
    border: none;
}

.btn-warning:hover {
    background-color: #e67e22;
}

.btn-success {
    background-color: #27ae60;
    color: white;
    border: none;
}

.btn-success:hover {
    background-color: #2ecc71;
}

.btn:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body h5 {
        font-size: 1.1rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        margin-bottom: 20px;
    }

    .card-body h5 {
        font-size: 1.15rem;
    }

    .card-body p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1rem;
    }
}

/* Sidebar Styling */
.bg-light-green {
    background-color: #A3D9A5; /* Light green background for the sidebar */
}

.bg-dark-green {
    background-color: #388E3C; /* Dark green background for sections */
}

.navbar-nav {
    padding-left: 0; /* Remove default padding from navbar */
    list-style-type: none; /* Remove bullets from the list */
}

.nav-item {
    margin: 4px 0; /* Add vertical spacing between items */
}

.nav-link {
    display: block;
    padding: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #2C6B2F; /* Dark green text color */
    text-decoration: none;
    border-radius: 8px; /* Round the corners for a softer look */
}

.nav-link:hover {
    background-color: #81C784; /* Light green background on hover */
    color: #fff; /* White text on hover */
}

.nav-link:active {
    background-color: #66BB6A; /* Slightly darker green when clicked */
    color: #fff;
}

/* Hover effect for section titles */
.nav-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff; /* White text for headings */
}

/* Add some spacing to the sidebar for better layout */
.col-md-2 {
    padding: 20px;
    border-right: 5px solid #388E3C; /* Green border to separate sidebar */
}

@media (max-width: 768px) {
    .col-md-2 {
        width: 100%; /* Make the sidebar full width on small screens */
        border-right: none; /* Remove the right border */
    }
}

/* Footer Section Styling */
.custom-footer {
    background-color: #2C3E50; /* Dark background color for the footer */
    color: #fff; /* White text color */
    padding: 40px 0; /* Top and bottom padding */
    font-family: Arial, sans-serif; /* Font style for the footer */
}

.custom-footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #F1C40F; /* Yellow color for headings */
    margin-bottom: 20px;
}

.custom-footer p {
    font-size: 1rem;
    color: #BDC3C7; /* Light grey color for the text */
    margin-bottom: 10px;
}

.custom-footer a {
    color: #fff; /* White color for links */
    text-decoration: none;
    font-size: 1.25rem;
    margin-right: 15px; /* Space between the icons */
}

.custom-footer a:hover {
    color: #27AE60; /* Green color on hover for links */
}

.custom-footer .container {
    max-width: 1200px; /* Set a max width for the container */
}

.custom-footer .row {
    display: flex;
    flex-wrap: wrap;
}

.custom-footer .col-md-4 {
    flex: 1;
    margin-bottom: 30px;
}

.custom-footer .text-center {
    margin-top: 20px;
}

.custom-footer .text-center p {
    font-size: 0.9rem;
    color: #BDC3C7;
}

/* Google Map Section */
.custom-footer iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 5px; /* Rounded corners for the map */
    margin-top: 20px;
}

/* Add a hover effect on the map area */
.custom-footer iframe:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        align-items: center;
    }

    .custom-footer .col-md-4 {
        width: 100%;
        margin-bottom: 20px;
    }
}
