/* Bottom Navigation Bar Styling */
.mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav-item {
    text-decoration: none;
    text-align: center;
    color: #555555;
    font-size: 12px;
    flex: 1;
    padding: 8px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.bottom-nav-item i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

/* Active Page Styling */
.bottom-nav-item.active {
    color: #2a9d8f; /* Highlight Color */
    font-weight: bold;
    transform: translateY(-3px); /* Subtle lift effect */
}

.bottom-nav-item.active i {
    color: #2a9d8f; /* Icon highlight */
}

.bottom-nav-item:hover,
.bottom-nav-item:focus {
    color: #2a9d8f;
}

/* Mobile-Only Visibility */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}



.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  *{
    overflow-x: hidden;
  }

  .mobile-text-head{
    font-size:10px;
  }
}
body {
  margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #3c4937;
}

/* Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: block;
    padding: 8px 15px;
    border: 1px solid #80cc28;
    border-radius: 5px;
    text-decoration: none;
    color: #3c4937;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #80cc28;
    color: #fff;
}

.pagination .active {
    background-color: #80cc28;
    color: #fff;
    border-color: #80cc28;
    cursor: default;
}

.pagination .disabled {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.pagination .disabled:hover {
    background-color: transparent;
    color: #ccc;
}
/* end of pagination */

.img_class{
  height:60px;
}

/* Navbar */
.navbar {
    background-color: #f1f1f1;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.nav-link {
    color: #27963c !important;
    font-weight: 600;
    padding: 10px 65px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #fff !important;
    background-color: #27963c;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(39, 150, 60, 0.6), rgba(39, 150, 60, 0.6)), url('images/bg.png') center/cover no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 15px;
}

.btn-hero {
  text-decoration: none;
    display: inline-block;
    background: linear-gradient(135deg, #80cc28, #27963c);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #27963c, #80cc28);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    color: #fff;
}


/* Features Section */
.features {
    padding: 60px 0;
}

.feature-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #80cc28;
    margin-bottom: 15px;
}

/* section */
/* Image Grid Section Styling */
.image-grid-section {
    background-color: #f8f9f8; /* Soft off-white for a clean base */
    padding: 50px 0;
}

.grid-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
    height: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.grid-item.main {
    height: 350px; /* Make top images bigger */
}

.grid-item {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}


.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(63, 94, 51, 0.75); /* Dark green, eco-friendly look */
    color: #ffffff; /* White text */
    padding: 10px 0;
    font-weight: 600;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect */
.grid-item:hover .overlay-text {
    background: rgba(113, 138, 83, 0.9); /* Lighter soft green on hover */
    color: #f9f9f9; /* Slightly softer white */
}

.grid-item h3,
.grid-item h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.grid-item:hover {
    transform: scale(1.03); /* Gentle scaling effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.grid-item:hover .overlay-text {
    background: rgba(0, 0, 0, 0.8); /* Darken overlay text on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .grid-item.main {
        height: 250px;
    }
    .grid-item {
        height: 150px;
    }
    .grid-item h3,
    .grid-item h4 {
        font-size: 1rem;
    }
}
/* Footer */
.footer-section {
    background-color: #3c4937;
    color: #fff;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer-section h5 {
    color: #80cc28;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #80cc28;
}

.social-icons a {
    display: inline-block;
    background-color: #80cc28;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #27963c;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form input {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 10px 20px;
    width: 100%;
}

.newsletter-form .btn-subscribe {
    background-color: #80cc28;
    border: none;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-subscribe:hover {
    background-color: #27963c;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .social-icons a {
        margin-bottom: 10px;
    }
}


        .product-page {
            padding: 60px 0;
        }

        .filter-sidebar {
            background-color: #3c4937;
            color: #fff;
            padding: 20px;
            border-radius: 8px;
        }

        .filter-sidebar h5 {
            color: #80cc28;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .filter-sidebar label {
            margin-bottom: 10px;
            font-weight: 600;
        }

        .filter-sidebar .form-control,
        .filter-sidebar .btn-filter {
            margin-bottom: 15px;
            border-radius: 8px;
        }

        .btn-filter {
            background-color: #80cc28;
            color: #fff;
            border: none;
        }

        .btn-filter:hover {
            background-color: #27963c;
        }

        .product-grid .product-item {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .product-grid .product-item:hover {
            transform: scale(1.05);
        }

        .product-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-details {
            padding: 15px;
            text-align: center;
        }

        .product-details h5 {
            margin: 10px 0;
            font-weight: 600;
        }

        .product-details .price {
            color: #27963c;
            font-weight: 700;
        }


        .product-details-section {
            padding: 60px 0;
        }

        .product-image {
           width: 100%;
           max-height: 500px;
           object-fit: cover;
           border-radius: 8px;
       }

       .product-info {
           padding: 30px;
           background-color: #fff;
           border-radius: 8px;
           box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
       }

       .product-info h2 {
           font-weight: 700;
           color: #3c4937;
       }

       .product-info .price {
           font-size: 1.5rem;
           color: #27963c;
           font-weight: 700;
       }

       .product-info p {
           color: #555;
       }

       .product-info .features-list li {
           list-style: none;
           margin-bottom: 10px;
       }

       .product-info .features-list li::before {
           content: "\2022";
           color: #80cc28;
           margin-right: 8px;
       }

       .btn-buy {
           background-color: #80cc28;
           color: #fff;
           border: none;
           padding: 12px 25px;
           border-radius: 8px;
           font-weight: 600;
           transition: background-color 0.3s ease;
       }

       .btn-buy:hover {
           background-color: #27963c;
       }

       .related-products-section {
           padding: 60px 0;
           background-color: #f1f1f1;
       }

       .related-products-section h3 {
           font-weight: 700;
           color: #3c4937;
           margin-bottom: 40px;
       }

       .related-product-item {
           background-color: #fff;
           padding: 20px;
           border-radius: 8px;
           box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
           text-align: center;
           transition: transform 0.3s ease;
       }

       .related-product-item:hover {
           transform: scale(1.05);
       }

       .related-product-item img {
           width: 100%;
           max-height: 220px;
           object-fit: cover;
           border-radius: 8px;
       }

       .related-product-item .product-title {
           font-weight: 600;
           margin: 10px 0;
       }

       .related-product-item .price {
           color: #27963c;
           font-weight: 700;
       }

       /* Image Gallery */
       .product-gallery img {
           width: 100%;
           max-height: 500px;
           object-fit: cover;
           border-radius: 8px;
           cursor: pointer;
       }

       .gallery-thumbnails img {
           width: 100px;
           height: 100px;
           object-fit: cover;
           margin-right: 10px;
           border-radius: 8px;
           cursor: pointer;
       }

       .gallery-thumbnails {
           display: flex;
           margin-top: 20px;
       }
       @media (max-width: 768px) {
         .mobile-text-head{
           font-size: 28px !important; /* Base size for small screens */
           font-weight: 700; /* Makes it bold */
           line-height: 1.3; /* Ensures good readability */
           color: #fff; /* Softer dark shade for cleaner appearance */
           text-align: center; /* Center the heading for better design */
           margin: 10px 0; /* Add spacing */
         }
         .mobile-text-small-head {
             font-size: 14px !important; /* Adjust for better scaling on small screens */
             font-weight: 600; /* Semi-bold for smoother text weight */
             color: #fff; /* Darker gray for readability */
             line-height: 1.4; /* Spacing for better text flow */
             letter-spacing: 0.5px; /* Slight spacing for clarity */
             text-transform: uppercase; /* Optional: makes it look more caption-like */
             text-align: center; /* Centers the caption text */
             margin: 8px 0; /* Adds breathing space */
         }

         .btn-hero{
           font-size:15px;
         }
       }
