html, body {
  height: 100%;
  overflow-y: scroll;
}

*{
    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%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Caption Styling */
.carousel-caption {
    position: absolute;
    top: 50%;
    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: 2rem;
    font-weight: bold;
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin: 10px 0;
    animation: fadeInUp 1s ease-in-out 0.6s forwards;
}

.carousel-caption .btn {
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 5px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 1s forwards;
}

.carousel-caption .btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.carousel-caption .btn-outline-light {
    border-color: white;
    color: white;
}

.carousel-caption .btn:hover {
    opacity: 1;
}

/* Keyframe Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    #heroCarousel {
        height: 70vh;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2.5rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1.125rem;
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.875rem;
    }
}
/* 
@media (max-width: 992px) {
    #heroCarousel {
        height: 60vh;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2.25rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem;
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.875rem;
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {
    #heroCarousel {
        height: 50vh;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem;
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.875rem;
        padding: 8px 15px;
    }
} */
@media only screen and (max-width: 600px) {
    #heroCarousel {
        height:revert!important;
    }
    #heroCarousel .carousel-item{
        height: 230px!important;
    }
    #heroCarousel .carousel-caption h1 {
        font-size: 1.5rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 0.875rem;
    }
    
    #heroCarousel .carousel-caption .btn {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
/*    .second-header{*/
/*        height: 70px;*/
/*        position: relative;*/
/*    }*/
/*    li.nav-item.second-head-login {*/
/*        position: absolute;*/
/*        top: 10px;*/
/*        right: 20px;*/
/*        color: white;*/
/*    }*/
/*    .logo1{*/
/*    height: 10%;*/
/*    width: 150px!important;*/
   
/*}*/
    .second-header {
        height: 70px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo1 {
        width: 120px !important;
        height: auto;
    }

    li.nav-item.second-head-login {
        position: static;
        color: white;
    }
    .table_class{
    width: 100%;
    overflow-x: scroll;
}


}

/* 
@media (max-width: 320px) {
    #heroCarousel {
        height: 35vh;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 1.25rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 0.75rem;
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
} */

/* @media (max-height: 800px) {
    #heroCarousel {
        height: 60vh;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem;
    }

    #heroCarousel .carousel-caption .btn {
        font-size: 0.875rem;
        padding: 8px 15px;
    }
} */

.marquee-container {
    background-color: #2C3E50;
    padding: 10px 0;
    text-align: center;
    color: white;
}

.marquee-text {
    font-size: 1.25rem;
    font-weight: bold;
    white-space: nowrap; 
}
.plants-heading {
    background-color: #F4F4F4; 
    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: 12px 0; /* Add vertical spacing between items */
}

.nav-link {
    display: block;
    padding: 12px;
    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;
    }
}
