
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 20px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    color: #fff;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}


/* ================= HEADER & TOPBAR ================= */

/* Topbar scrolls normally (NOT sticky) */
.topbar {
   
    padding: 10px 0;
}

.top-icon {
    color: #b4ff17;
}

.topbar .top-info,
.topbar .top-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Social Icons */
.social-icon {
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #0aa157;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #b4ff17;
    transform: translateY(-3px);
    color: #0aa157;
}

/* ================= NAVBAR ================= */

#mainNav {
    width: 100%;

    transition: all 0.4s ease;
    background: #fff;
}
.logo{
    max-height: 66px;
}
.navbar-nav .nav-item .nav-link{
    color: #98c33f;
    font-weight: 700;
    transition: all 0.3 ease;
}
.navbar-nav .nav-item .nav-link:hover{
    color: #0aa157;
}
.navbar-nav .nav-item .nav-link.active{
    color: #0aa157;
}
/* Sticky ONLY navbar */
#mainNav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* Sticky animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navbar icons */
.icon-btn {
    color: #7ac800;
    font-size: 20px;
    position: relative;
    transition: 0.3s;
}

.icon-btn:hover {
    color: #5ea000;
}

/* ================= MOBILE MENU ================= */

#mobileMenu {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    padding: 20px;
    z-index: 1050;
    transition: left 0.4s ease;
}

#mobileMenu.active {
    left: 0;
}

#mobileMenu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Overlay */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1040;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= HERO HEADER ================= */

.hero-header {
    margin-top: 0; /* IMPORTANT: no white gap */
    background: linear-gradient(
        rgba(248, 223, 173, 0.1),
        rgba(248, 223, 173, 0.1)
    ),
    url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-h{
    font-size: 30px;
    font-weight: 700;
}

/* COMMON BUTTON STYLE */
.btn-shop,
.btn-franchise {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

/* SHOP BUTTON */
.btn-shop {
    background-color: #0aa157;
    color: #fff;
    border: 2px solid #0aa157;
}

.btn-shop:hover {
    background-color: transparent;
    color: #0aa157;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 161, 87, 0.3);
}

/* FRANCHISE BUTTON */
.btn-franchise {
    background-color: transparent;
    color: #0aa157;
    border: 2px solid #0aa157;
}

.btn-franchise:hover {
    background-color: #0aa157;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 161, 87, 0.3);
}


/* Carousel */
.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(
        rgba(255, 181, 36, 0.7),
        rgba(255, 181, 36, 0.7)
    );
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(
        #000000a3,
        #000000a3
    ),
    url(../img/page-header.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.breadcrumb-item{
    color: #b4ff17;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    #mainNav {
        padding: 10px 0;
    }
}



/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #0aa157;
    color: #fff;
    transition: all 0.3 ease;
}
.featurs-item{
    cursor: pointer;
    transition: all 0.3 ease;
}
.featurs-item:hover .featurs-icon {
    background-color: #fff;
    border: 1px solid #0aa157;
}
.featurs-item:hover .featurs-icon i {
    color: #0aa157 !important;
}

.icons{
    font-size: 20px;
}

/*** featurs End ***/


/* Product Section */
.products-section {
  background: #fff;
}

/* Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  /* text-align: center; */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.7s ease;
  overflow: hidden;
}

.product-card:hover {
  border: 1px solid #a0c146;
}

/* Image */
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;

}

.product-img img {
  max-height: 100%;
  transition: transform 0.8s ease;
}

.product-card:hover .product-img img {
  transform: rotate(360deg);
}

/* Discount */
.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff7a00;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* Favorite */
.fav-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ff7a00;
  font-size: 18px;
  cursor: pointer;
}

/* Title */
.product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0aa157;
}

/* Rating */
.product-rating {
  color: #ffc107;
  
  font-size: 14px;
}

/* Description */
.product-desc {
  font-size: 14px;
  color: #777;
}

/* Price */
.product-price {
  margin: 7px 0;
}

.product-price .price {
  color: #ff7a00;
  font-size: 20px;
  font-weight: 700;
}

.product-price del {
  margin-left: 8px;
  color: #999;
}

/* Buttons */
.product-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 20px;
}

.btn-buy {
  background: #0aa157;
  color: #fff;
  border-radius: 30px;
  padding: 8px 16px;
  transition: all 0.3 ease;
}

.btn-buy:hover {
  background: #fff;
  color: #0aa157;
  border: 1px solid #0aa157;
}

.btn-cart {
  border: 2px solid #0aa157;
  color: #0aa157;
  border-radius: 30px;
  padding: 8px 16px;
  transition: all 0.3 ease;
}

.btn-cart:hover {
  background: #0aa157;
  color: #fff;
}

/* View All */
.btn-view-all {
  background: #0aa157;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3 ease;
}

.btn-view-all:hover {
  background: #fff;
  color: #0aa157;
  border: 1px solid #0aa157;
}



/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/* why choise us section */
.benefits-section {
  background: #f8f9fa;
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #e9f7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #28a745;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.benefit-item{
    cursor: pointer;
}
.benefit-item:hover .icon-box {
  transform: scale(1.1) rotate(8deg);
  background: #28a745;
  color: #fff;
}

.image-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.product-img {
  width: 100%;
  height: 400px;
  animation: zoomIn 1.5s ease;
}

/* Floating Animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Fade Animations */
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeLeft 1s forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeRight 1s forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .benefit-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .icon-box {
    margin-bottom: 15px;
  }
}

/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}


.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

/* COUNTER SECTION CODE */
.counter-section {
  background: linear-gradient(90deg, #f26522, #f7941d);
}



.icon-circle {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  color: #6bbf00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
}

.counter-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

.counter-box h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* img-wrapper  */
.img-wrapper {
    width: 100%;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: If you want fixed height banner */
@media (min-width: 768px) {
    .img-wrapper img {
        max-height: 500px;
        object-fit: cover;
    }
}

/* sticky  */
.whatsapp-sticky {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
}
.whatsapp-sticky:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
.whatsapp-sticky i {
    font-size: 24px;
}
.whatsapp-sticky:hover i {
    transform: rotate(360deg);
    transition: transform 0.3s ease;
}
/* Show after scroll */
.whatsapp-sticky.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile: show only icon */
@media (max-width: 576px) {
    .whatsapp-sticky {
        padding: 14px;
        border-radius: 50%;
    }
    .wa-text {
        display: none;
    }
}

/* about section */
.about-us {
        background-color: #f4f8f9;
    }

    .section-title {
        font-size: 2rem;
        color: #2c3e50;
    }

    .highlight {
        color: #1abc9c;
    }

    .section-description {
        font-size: 1rem;
        color: #34495e;
        line-height: 1.6;
    }

    .features-list {
        margin-top: 20px;
        list-style: none;
        padding-left: 0;
    }

    .features-list li {
        font-size: 1rem;
        color: #34495e;
        margin-bottom: 10px;
    }

    .features-list li strong {
        color: #16a085;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    .team-title h5 {
        font-size: 1rem;
        color: #34495e;
        margin-top: 15px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-us .container {
            padding-left: 15px;
            padding-right: 15px;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .features-list {
            font-size: 0.9rem;
        }


        .team-title h5 {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .about-us .row {
            flex-direction: column;
            text-align: center;
        }

        .section-title {
            font-size: 1.25rem;
        }

        .features-list li {
            font-size: 0.9rem;
        }
    }

    /* why choise us  */
    .why-choose-us {
        background-color: #2c3e50; /* Dark background */
        color: #f9f9f9;
    }

    .why-choose-us .card {
        background-color: white;
        color: #34495e;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-choose-us .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .icon-box {
        display: inline-block;
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 60px; /* Centers the icon vertically */
        border-radius: 50%; /* Rounded background */
        background-color: #f39c12; /* Icon background color */
    }

    .feature-title {
        font-weight: bold;
        color: #f39c12;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .why-choose-us .card {
            padding: 2rem;
        }
    }

    @media (max-width: 576px) {
        .why-choose-us .card {
            padding: 1.5rem;
        }
    }

    /* vison and mison */
    .vision-mission {
        background-color: #f4f8f9;
        color: #2c3e50;
    }

    .vision-mission .section-title {
        font-size: 2rem;
        color: #1abc9c;
        font-weight: bold;
    }

    .vision-mission ul {
        list-style: none;
        padding-left: 0;
    }

    .vision-mission ul li {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .vision-mission ul li i {
        color: #1abc9c;
        margin-right: 10px;
    }

    .vision-mission .col-lg-6 {
        padding: 2rem;
    }

    .vision-mission .col-lg-6 img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    @media (max-width: 768px) {
        .vision-mission .col-lg-6 {
            padding: 1.5rem;
        }

        .vision-mission .section-title {
            font-size: 1.5rem;
        }

        .vision-mission ul li {
            font-size: 1rem;
        }
    }

    /* product details */
    .img-thumbnail {
        border: 1px solid #ddd;
        transition: transform 0.3s;
    }

    .img-thumbnail:hover {
        transform: scale(1.1);
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    .card-title {
        font-size: 1.4rem;
        color: #6A7C53;
    }

    .rating i {
        color: gold;
    }

    .product-features .badge {
        font-size: 0.9rem;
        border-radius: 15px;
    }

    .btn-outline-success {
        border-color: #6A7C53;
        color: #6A7C53;
    }

    .btn-outline-success:hover {
        background-color: #6A7C53;
        color: white;
    }

    .btn-success {
        background-color: #6A7C53;
        color: white;
    }

    .btn-success:hover {
        background-color: #5a6d42;
    }
    #main-product-image{
        max-width: 100px;
        
    }

    .img-box{
        text-align: center; 
        margin: auto;
    }
    .img-thumbnails{
        align-items: center; 
        justify-content: center; 
        border-top: 1px solid #ddd;
        
    }

    /* retting from code */
    .rating-stars i{
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.rating-stars i.active{
    color: #ff5a1f;
}

.upload-area{
    border: 2px dashed #ddd;
    border-radius: 6px;
    cursor: pointer;
    color: #777;
}

.btn-orange{
    background: #ff5a1f;
    color: #fff;
    border: none;
}

.btn-orange:hover{
    background: #e14c16;
}

/* card section code */
.cart-card, .summary-card {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.item-img {
  width: 70px;
  border-radius: 8px;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  border: none;
  background: #f8f9fa;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  border: none;
  text-align: center;
}

.qty-input:focus {
  outline: none;
}

.cart-item {
  transition: all 0.4s ease;
}

.cart-item.hide {
  opacity: 0;
  transform: translateX(60px);
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.remove-btn {
  cursor: pointer;
  transition: 0.3s;
}

.remove-btn:hover {
  color: red;
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: start !important;
  }

  .cart-item > div:last-child {
    margin-top: 15px;
  }
}