

  .carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #28a745;
    border-radius: 50%;
    background-size: 50% 50%; 
    width: 3rem;
    height: 3rem;
}



    .product-card {
        transition: transform 0.3s, shadow 0.3s;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }








    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fcfdfc;
    color: #333;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.hero-section {
    min-height: calc(100vh - 80px);
    padding: 80px 0;
}

/* Green Color Theme */
.text-success {
    color: #2d5a27 !important;
}

.btn-success {
    background-color: #2d5a27;
    border-color: #2d5a27;
}

.btn-success:hover {
    background-color: #22451e;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2d5a27 !important;
}

/* Image Animation */
.image-wrapper img {
    transition: transform 0.5s ease;
    max-height: 500px;
    object-fit: cover;
}

.image-wrapper img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .display-3 {
        font-size: 3rem;
    }
}



.hover-link:hover {
    color: #198754 !important; 
    padding-left: 5px;
    transition: all 0.3s ease;
}