/********** Template CSS **********/
:root {
    --primary: #64C74B;
    --secondary: #74c042;
    --light: #F2F2F2;
    --dark: #272630;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.logo-img {
     width: 250px;
  height: auto;
  object-fit: contain;

}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}
@media (max-width: 768px) {
  .logo-img {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 140px;
    height: auto;
  }
}
@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-section {
  background: url(../img/hero.jpg) center center no-repeat;
  background-size: cover;
  min-height: 450px;
  padding: 60px 0;
}

.hero-section h1,
.hero-section p {
  color: #000;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 350px;
    padding: 40px 0;
    text-align: center;
  }
  .hero-section .container {
    padding: 0 20px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .hero-section a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


.about-start,
.about-end {
    background: url(../img/about-bg.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

.service-item,
.contact-item {
    background: url(../img/service.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}

.service-item:hover,
.contact-item:hover {
    background: url(../img/service.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b4ff53;
    transition: .5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: #bcfc94;
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: #b4ff53;
}

.service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
}

.bg-quote {
    background: url(../img/quote.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-item {
    position: relative;
    margin-bottom: 45px;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/team.jpg) bottom center no-repeat;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 100%;
    bottom: 0;
}

.team-social {
    position: absolute;
    transition: .1s;
    transition-delay: .0s;
    opacity: 0;
}

.team-item:hover .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.bg-call-to-action {
    background: url(../img/call-to-action.jpg) top right no-repeat;
    background-size: contain;
}

.bg-footer {
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}
#header {
    position: relative;
    padding: 200px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10% , rgba(255, 255, 255, 0.8)), url(../img/slide_01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header .header-content {
    width: 100%;
    text-align: left;
}

#header .header-content h2 {
    font-size: 70px;
    font-weight: 700;
    color: #000000;
}
#header .header-content h3 {
    color: #000000;
}

#header .header-content p {
    color: #000000;
    font-size: 22px;
}

#header .header-content .btn {
    padding: 7px 30px 8px 30px;
    font-size: 22px;
    color: #333333;
    letter-spacing: 3px;
    border: 2px solid #333333;
    transition: .3s;
}

#header .header-content .btn:hover {
    color: #333333;
    border-color: #64C74B;
    background: #64C74B;
}

#header .header-img {
    position: relative;
    overflow: hidden;
    text-align: right;
}

#header .header-img img {
    width: 100%;
}


@media (max-width: 991.98px) {  
    #header .header-content h2 {
        font-size: 45px;
    }

    #header .header-content h2 span {
        font-size: 55px;
    }
}

@media (max-width: 767.98px) {
    #header .header-content {
        text-align: center;
    }

    #header .header-img {
        text-align: center;
        margin-bottom: 45px;
    }
}

@media (max-width: 575.98px) {  
    #header .header-content h2 {
        font-size: 35px;
    }

    #header .header-content h2 span {
        font-size: 45px;
    }
    
    #header .header-content p {
        font-size: 18px;
    }
}



/**********************************/
/******** Mini Feature CSS ********/
/**********************************/
#feature-mini {
    position: relative;
    background: transparent;
    margin-top: -80px;
}

#feature-mini .container {
    max-width: 992px;
    background: #64C74B;
}

#feature-mini .col-md-3 {
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 575.98px) {
    #feature-mini .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    #feature-mini .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #feature-mini .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    #feature-mini .col-md-3:nth-child(3n),
    #feature-mini .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    #feature-mini .col-md-3 {
        border-bottom: none;
    }
    
    #feature-mini .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

#feature-mini .feature-item {
    padding: 30px 0;
    text-align: center;
}

#feature-mini .feature-item i {
    color: #ffffff;
    font-size: 35px;
    margin-bottom: 10px;
}

#feature-mini .feature-item h3 {
    font-size: 22px;
    font-weight: 400;
}

#feature-mini .feature-item p {
    margin: 0;
    font-size: 18px;
}

.icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transform: rotate(45deg);
}
.glow-text {
  color: #000;
  text-shadow: 
    0 0 0 #000;
    text-decoration: underline;
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/* SERVICES TABS SECTION */
.single-services {
    padding: 80px 0;
    background: var(--light);
}

.single-services .container {
    max-width: 1200px;
    
}

.single-services h1, 
.single-services h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.single-services p {
    color: #555;
    line-height: 1.7;
}

.single-services ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-services ul li {
    margin-bottom: 15px;
}

.single-services ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
    padding: 12px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.single-services ul li a i {
    color: var(--primary);
    transition: 0.3s;
}

.single-services ul li a:hover {
    background: var(--primary);
    color: #fff;
}

.single-services ul li a:hover i {
    color: #fff;
    transform: translateX(5px);
}

/* TABS CONTENT STYLING */
.tabs-content article {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.tabs-content article img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tabs-content article.active {
    display: block;
}

/* Service List inside Tabs */
.service-list {
    list-style-type: disc !important;
    padding-left: 20px;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 767.98px) {
    .single-services .row {
        flex-direction: column;
    }

    .single-services .col-md-4, 
    .single-services .col-md-8 {
        max-width: 100%;
    }

    .single-services ul li a {
        font-size: 16px;
        padding: 10px 15px;
    }

    .single-services h1 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
  .pppp{
    backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;}}

@media (max-width: 480px) {
  .pppp{
    backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;}}

.ppp{
 
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;

}
/* home */
/* Color Variables */

/* Popular Section Styling */
.popular {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.popular::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.popular::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.03;
  z-index: 1;
}

.popular .container {
  position: relative;
  z-index: 2;
}

/* Title Styling */
.popular .title {
  margin-bottom: 60px;
  position: relative;
}

.popular .title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular .title h2::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.popular .title h2::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Product Item Container */
.food-item {
  margin-bottom: 30px;
  padding: 0 15px;
}

/* Product Card Styling */
.food-item-wrap {
  background: #F2F2F2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.food-item-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.food-item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.food-item-wrap:hover::before {
  opacity: 1;
}

/* Image Section */
.figure-wrap {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-color: var(--light);
}

.figure-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(39, 38, 48, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.food-item-wrap:hover .figure-wrap::before {
  opacity: 1;
}

/* Rating Section */
.rating {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 5px 15px var(--shadow-light);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.food-item-wrap:hover .rating {
  opacity: 1;
  transform: translateY(0);
}

/* Content Section */
.content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.content h5 {
  margin: 0 0 12px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.content h5 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.content h5 a:hover {
  color: var(--primary);
}

/* Product Description */
.product-name {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price and Button Block */
.price-btn-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Price Styling */
.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

.price::before {
  content: '₹';
  font-size: 1rem;
  margin-right: 2px;
  opacity: 0.8;
}

/* Button Styling */
.btn.theme-btn-dash {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn.theme-btn-dash::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn.theme-btn-dash:hover::before {
  left: 100%;
}

.btn.theme-btn-dash:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(100, 199, 75, 0.4);
  text-decoration: none;
  color: var(--white);
}

.btn.theme-btn-dash:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .popular {
    padding: 60px 0;
  }
  
  .popular .title h2 {
    font-size: 2.2rem;
  }
  
  .popular .title {
    margin-bottom: 40px;
  }
  
  .figure-wrap {
    height: 200px;
  }
  
  .content {
    padding: 20px;
  }
  
  .content h5 {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  .btn.theme-btn-dash {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .popular .title h2 {
    font-size: 1.8rem;
  }
  
  .price-btn-block {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .btn.theme-btn-dash {
    text-align: center;
    width: 100%;
  }
}

/* Loading Animation for Images */
.figure-wrap {
  position: relative;
}

.figure-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--light);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0.7;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hide loading animation when image is loaded */
.figure-wrap[style*="background-image"]::after {
  display: none;
}

/* JavaScript will handle the image loading */
.figure-wrap.loaded::after {
  display: none;
}

/* Additional Hover Effects */
.food-item-wrap:hover .content h5 a {
  color: var(--primary);
}

.food-item-wrap:hover .product-name {
  color: var(--dark);
}

/* Accessibility Improvements */
.btn.theme-btn-dash:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.content h5 a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
/* home */



        /* Features Section */
        .features {
            background: linear-gradient(to bottom, var(--light) 0%, var(--white) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
            z-index: -1;
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(46, 139, 87, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: var(--white);
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: var(--gray);
        }

     
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow);
            z-index: 1100;
            transition: var(--transition);
            padding: 30px;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        .mobile-nav-links {
            list-style: none;
            margin-top: 50px;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
/* hero */
