@font-face {
  font-family: 'Perfectly Nineties';
  src: url('./fonts/PerfectlyNineties-Semibold.otf') format('opentype');
  font-weight: 600;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/Lato-Regular.ttf') format('opentype');
  font-weight: 400;
}

  a {
    text-decoration: none !important;
    color: #142900 !important;
  }
  
  p {
    font-family: "Lato", serif !important;

  }
  .add-plan {
    font-family: "Lato", serif !important;
    /* border-bottom: 1px solid var(--dark-green); */
    border-radius: 0%;
    color: var(--medium-green);
    font-weight: 600;
  }
  .add-plan:hover {
    color: var(--dark-green);
  }

        :root {
            --dark-green: #142900;
            --light-green: #d7ffa4;
            --medium-green: #2c3e1a;
            --pale-green: #e7ffc8;
            --off-white: #fbfff6;
        }

        body {
            margin: 0;
            font-family: 'Perfectly Nineties', sans-serif !important;
            background-color: var(--off-white);
        }

        .section-title {
            font-size: 40px;
            color: var(--dark-green);
            font-weight: 700;
        }

        .little-title {
          font-size: 28px;
          color: var(--dark-green);
          font-weight: 700;
          /* font-family: "Lato", serif !important; */

      }
      .term-content p {
          font-family: "Lato", serif !important;
      }

      .term-content li {
        font-family: "Lato", serif !important;
    }


    

        .navbar {
            background: var(--pale-green);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            /* border-radius: 10px; */
            position: sticky;
            top: 0;
            z-index: 1030;
            transition: all 0.3s ease-in-out;
            padding: 1.5rem 0rem;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--pale-green);
            /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); */
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .navbar-brand img {
            width: 220px;
            /* height: auto; */
        }

        .navbar-nav .nav-link {
            color: var(--dark-green) !important;
            font-size: 1.1rem;
            margin: 0 10px;
            transition: transform 0.3s, color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--pale-green);
            transform: scale(1.1);
        }

        .navbar-toggler {
            border: none;
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28105, 105, 105, 0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* .search-bar {
            display: none;
            position: absolute;
            top: 100%;
            right: 10%;
            width: 300px;
            background-color: var(--off-white);
            border: 2px solid var(--light-green);
            border-radius: 5px;
            padding: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        } */

        @media (max-width: 768px) {
            .navbar-brand {
                position: static;
                transform: none;
                margin-left: 10px;
            }

            .navbar-toggler {
                margin-right: 27px;
            }

            .navbar-collapse {
                background: linear-gradient(45deg, var(--dark-green), var(--medium-green));
                border-radius: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            }

            .navbar-nav {
                text-align: center;
            }

            .navbar-nav .nav-link {
                margin: 10px 0;
                color: var(--off-white) !important;
            }
        }

        .custom-btn {
            border: none;
            cursor: pointer;
            width: 130px;
            height: 40px;
            border-radius: 5px;
            background-color: var(--light-green);
            color: var(--medium-green);
            font-weight: 700;
            font-size: 18px;
            transition: 0.5s;
        }


        /* Banner Section */
        .banner {
            position: relative;
            background-image: url('./images/banner-img.jpg');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: var(--off-white);
            overflow: hidden;
        }

        .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(20 41 0 / 50%);
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            margin-left: 5%;
            max-width: 500px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .banner-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .btn-join {
            background: linear-gradient(45deg, var(--light-green), var(--pale-green));
            color: var(--dark-green);
            font-weight: bold;
            font-size: 1.2rem;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease-in-out;
        }

        .btn-join:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 2rem;
            }

            .btn-join {
                font-size: 1rem;
                padding: 8px 16px;
            }
        }
        

        
        
        /* feature style */
           .outline-button {
            font-family: "Lato", serif !important;
            display: inline-block;
            padding: 10px 25px;
            font-size: 1rem;
            font-weight: bold;
            color: var(--secondary-color);
            border: 2px solid var(--dark-green);
            border-radius: 8px;
            /* text-transform: uppercase; */
            background: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

            .outline-button:hover {
            color: var(--off-white);
            background: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            }


            /* latest menus starts */
            .menu-section {
                padding: 60px 20px;
                background: var(--background-color);
              }
          
              .menu-heading {
                text-align: center;
                font-size: 2.5rem;
                font-weight: bold;
                margin-bottom: 40px;
              }
          
              .nav-pills {
                justify-content: center;
                flex-wrap: nowrap;
                overflow-x: auto;
                white-space: nowrap;
              }
          
              .nav-pills .nav-link {
                background: var(--light-color);
                color: var(--dark-green);
                font-weight: 600;
                border-radius: 30px;
                margin: 5px;
                transition: 0.3s;
                font-family: "Lato", serif !important;
                border: 1.7px solid var(--dark-green);
                
              }
              .nav-pills .nav-link:hover {
                background: var(--dark-green);
                color: var(--off-white);
              }
          
              .nav-pills .nav-link.active {
                background: var(--dark-green);
                color: var(--off-white);
                font-weight: 600;
              }
          
              .menu-content .card {
                position: relative;
                border: none;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                transition: transform 0.3s;
              }
          
              .menu-content .card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
              }
          
              .menu-content img {
                width: 100%;
                height: auto;
                object-fit: cover;
              }
              .menu-content .avatar img {
                width: 30px;
                height: 30px;
                border-radius: 30px;
                border: 1px solid var(--dark-green);
              }
              .menu-content a {
                color: var(--dark-green);
              }
              
          
              .badge-overlay {
                position: absolute;
                top: 10px;
                left: 10px;
                background-color: #d8ffa4aa;
                color: var(--dark-green);
                font-size: 14px;
                padding: 5px 10px;
                font-weight: 500;
                border-radius: 6px;
              }
          
              .card-title {
                font-size: 1.2rem;
                font-weight: bold;
                text-align: start;
              }
          
              @media (max-width: 768px) {
                .menu-heading {
                  font-size: 2rem;
                }
          
                .nav-pills {
                  justify-content: flex-start;
                }
                .other-imgs img {
                    display: none;
                }
                .slider-header {
                    display: block !important;
                }
                
              }
            /* latest menus ends */

            /* slider styling start */
            .food-slider {
                overflow: hidden;
            }
            .slider-wripper {
                background-color: var(--pale-green);
            }
            .slider-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .slider-header .slider-title {
                font-size: 24px;
                font-weight: 500;
            }
            .slider-header .custom-drops  {
                display: flex;
                align-items: center;
            }
            
            .custom-drops .custom-dropdown {
                display: inline-flex;
                align-items: center;
                justify-content: space-between;
                background-color: transparent;
                border: 1.8px solid var(--dark-green);
                border-radius: 10px;
                padding: 5px 10px !important;
                font-family: "Lato", serif !important;
                font-size: 1.2rem;
                color: var(--dark-green);
                cursor: pointer;
                width: 170px; /* Adjust width for responsiveness */
              }
          
              
          
              .custom-drops .custom-dropdown .icon {
                background-color: var(--light-green);
                border-radius: 50%;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: 10px;
              }
          
              .custom-drops .custom-dropdown .icon svg {
                width: 15px;
                height: 15px;
                fill: var(--dark-green);
              }
          
              .custom-drops .dropdown-menu {
                border-radius: 10px;
                margin-top: 5px;
                background-color: #f8f8e8;
                border: 1px solid var(--medium-green);
              }
          
              .custom-drops .dropdown-item {
                font-family: 'Lato', serif;
                font-size: 1rem;
                color: var(--dark-green);
                padding: 10px 15px;
              }
          
              .custom-drops .dropdown-item:hover {
                background-color: var(--pale-green);
                color: var(--dark-green);
              }
          
              /* Custom styles for the button */
              .custom-drops .custom-button {
                font-size: 1.2rem;
                color: var(--dark-green);
                background-color: transparent;
                border: 1.8px solid var(--dark-green);
                border-radius: 10px;
                padding: 5px 15px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                text-decoration: none;
                font-family: 'Lato', serif;

              }
          
              .custom-drops .custom-button:hover {
                background-color: var(--dark-green);
                color: var(--off-white);
              }
          
              .custom-drops .custom-button .icon {
                background-color: #dce6c4;
                border-radius: 50%;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: 10px;
              }
          
              .custom-drops .custom-button .icon svg {
                width: 12px;
                height: 12px;
                fill: #3a3a3a;
              }
            
            
              .slider-title {
                  text-align: center;
                  margin-bottom: 20px;
                  font-size: 24px;
                  font-weight: bold;
              }
              /* .slider-wripper .dropdown .btn {
                border-radius: 30px !important;
                background-color: transparent;
                border: 1.5px solid var(--dark-green);
              }
              .slider-wripper .dropdown .btn:focus {
                box-shadow: none;
              } */
              .filter-btn {
                background-color: transparent;
                border: 1.5px solid var(--dark-green);
                border-radius: 30px;
              }
              .filter-btn:focus {
                box-shadow: none;
              }
              .slider-wripper .card {
                  border: none;
                  border-radius: 10px;
                  overflow: hidden;
                  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                  margin: 0px 10px;
              }
              .slider-wripper .card img {
                  /* height: 180px; */
                  object-fit: cover;
              }
              .slider-wripper .card-title {
                  font-size: 16px;
                  font-weight: bold;
              }
              .slider-wripper .card-text {
                  font-size: 14px;
                  color: var(--medium-green);
                font-family: 'Lato', serif;

              }
              .slider-wripper .cook-time {
                  font-size: 12px;
                  color: #28a745;
                  font-weight: bold;
                font-family: 'Lato', serif;

              }
              .slider-wripper .slick-prev:before, .slider-wripper .slick-next:before {
                  color: #333;
              }
              .order-btn {
                background-color: var(--light-green);
                color: var(--dark-green);
                border: 1px solid var(--dark-green);
              }

              .slick-next {
                right: -1px !important;
                font-size: 30px !important;
              }
              .slick-prev {
                left: 0px !important;
                z-index: 99 !important;
            }
              .slick-prev, .slick-next {
                font-size: 40px !important;
              }

              
  
#about-us {
    padding: 80px 0;
}


.section-subtitle {
    font-size: 18px;
    color: var(--medium-green) !important;
}

/* Card Styles */
.about-card {
    border: none;
    background: var(--dark-green);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: transform 0.5s, box-shadow 0.5s;
    overflow: hidden;
}

.about-card:hover {
    /* transform: translateY(-10px) rotate(5deg); */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.about-card .card-body {
    text-align: center;
    padding: 30px 20px;
}

.about-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}

.about-card .card-text {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
    font-family: "Lato", serif !important;

}

.about-card .card-description {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    opacity: 0.8;
    line-height: 1.6;
    font-family: "Lato", serif !important;

}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-card {
        margin-bottom: 30px;
    }
    .custom-drops .custom-dropdown {
        width: 100%;
    }
    .navbar-brand img {
        width: 150px;
    }
    #about-us {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .about-card {
        margin-bottom: 20px;
    }
}

/* pricing style starts */

.pricing-wrapper .pricing-card {
    background: linear-gradient(145deg, #ffffff, #f7faff);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .pricing-wrapper .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .pricing-wrapper .badge-save {
    background-color: var(--light-green);
    color: var(--dark-green);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 25px;
    position: absolute;
    top: -15px;
    /* display: inline-block; */
  }

  .pricing-wrapper .price {
    font-size: 2.5rem;
    color: var(--medium-green);
    font-weight: bold;
  }

  .pricing-wrapper .duration {
    font-size: 1rem;
    color: #6c757d;
  }

  .pricing-wrapper .billed-info {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 10px;
  }

  .pricing-wrapper .container-pricing {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }
  .pricing-wrapper .card-footer {
    background-color: transparent;
    margin-top: 1rem;
  }

  /* testimonial style */
  
  /* Testimonial Section Styles */
#testimonials {
    background: #f9f9f9;
    padding: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

#testimonials:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}



.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    padding: 20px;
    text-align: center;
}

.testimonial-text {
    font-size: 17.6px;
    color: #000;
    /* font-style: italic; */
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #f1f1f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.author-role {
    font-size: 14px;
    color: #888;
}

/* Star Rating */
.star-rating {
    /* margin-top: 10px; */
    font-size: 20px;
    color: #FFD700;
}

.star {
    margin-right: 3px;
}

.star.filled {
    color: #FFD700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        width: 90%;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-role {
        font-size: 12px;
    }
}

/* Faq styling */

/* FAQ Section Styles */
.faq-section {
    background: var(--pale-green);
    padding: 60px 0;
    /* border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}



.faq-section .section-subtitle {
    font-size: 18px;
    color: var(--medium-green);
    margin-bottom: 50px;
}

.faq-card {
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: var(--off-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-green);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-section .card-header {
    background-color: var(--medium-green);
    /* padding: 20px; */
    border-radius: 10px;
    color: var(--off-white);
    text-align: left;
}

.faq-section .card-header .btn {
    color: var(--off-white);
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.faq-section .card-header .btn:hover {
    color: var(--light-green);
}
.faq-section .card-header .btn:focus {
    box-shadow: none;
    text-decoration: none;
}

.faq-section .card-body {
    /* background-color: var(--off-white);
    padding: 20px;
    color: var(--medium-green);
    font-size: 16px;
    text-align: left;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease; */
}

.faq-section .card-body {
  font-size: 20px;
    font-family: "Lato", serif !important;


}

.faq-section .card-body.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-card {
        margin: 0 auto;
    }

    .faq-section .card-header .btn {
        font-size: 16px;
    }

    .faq-section .card-body {
        font-size: 16px !important;
    }

    .faq-section .section-title {
        font-size: 24px;
        font-weight: 600;
    }

    .faq-section .section-subtitle {
        font-size: 16px;
    }
    .feature-content h2 {
        text-align: center;
    }
    .filter-btn {
        margin-left: 1.7rem !important;
    }
}

@media (max-width: 576px) {
    .faq-section .card-header .btn {
        font-size: 18px;
        font-weight: 600;
    }

    .faq-section .card-body {
        font-size: 12px;
    }

    .faq-section .section-title {
        font-size: 28px;
    }

    .faq-section .section-subtitle {
        font-size: 14px;
    }
}

/* FAQ Section Styles */
.faq-section {
  background: var(--pale-green);
  padding: 60px 0;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.card-header .collapsed + .arrow-icon {
  transform: rotate(0deg);
}

.card-header .arrow-icon {
  transform: rotate(-180deg);
}


.footer-section {
    background-color: #142900;
    color: #fbfff6;
    padding: 60px 0;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-section .footer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0px;
    color: #d7ffa4;
    text-transform: uppercase;
    border-bottom: 2px solid #d7ffa4;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section ul,
.footer-section p {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fbfff6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d7ffa4;
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
    padding: 10px 20px;
    background: #2c3e1a;
    border: none;
    color: #fbfff6;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #d7ffa4;
    color: #142900;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    color: #fbfff6;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #d7ffa4;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-newsletter .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}


.feature-wrapper .heading h1 {
    color: var(--dark-green);
}
.feature-content h2 {
    color: var(--dark-green);
}
.feature-content p {
    font-family: "Lato", serif !important;
    font-size: 1.1rem;
}
.filter-btn {
    margin-left: 0.5rem;
}

/* about page starts */


/* Banner Section */
.about-banner {
    /* background: url('./images/about-banner.jpg') no-repeat center center/cover; */
    position: relative;
    padding: 50px 0;
    color: var(--off-white);
  }
  
  .about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-green); /* Dark green overlay with 70% opacity */
    z-index: 1;
  }
  
  .about-banner .container {
    position: relative;
    z-index: 2; /* Ensure text and elements are above the overlay */
  }
  
  .about-banner .banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .about-banner .breadcrumb {
    background: transparent;
    margin-top: 20px;
  }
  
  .about-banner .breadcrumb-item a {
    color: #fff !important;
    text-decoration: none;
  }
  
  .about-banner .breadcrumb-item.active {
    color: var(--light-green);
  }

  
  /* About Us Section Styling */
  .about-us-section {
    background: var(--off-white);
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .about-us-section .about-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    font-weight: bold;
  }
  
  .about-us-section .about-text {
    color: var(--medium-green);
    font-size: 1.2rem;
    line-height: 1.8;
    font-family: "Lato", serif !important;

  }
  
  .about-us-section .action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: "Lato", serif !important;

  }
  
  .about-us-section .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    cursor: pointer;
  }
  
  .about-us-section .btn-learn-more {
    background-color: var(--light-green);
    color: var(--dark-green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .about-us-section .btn-learn-more:hover {
    background-color: var(--medium-green);
    color: var(--off-white);
  }
  
  .about-us-section .btn-contact-us {
    background-color: var(--dark-green);
    color: var(--off-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .about-us-section .btn-contact-us:hover {
    background-color: var(--light-green);
    color: var(--dark-green);
  }
  
  /* Social Icons */
  .about-us-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .about-us-section .social-icon  {
    text-decoration: none;
  }
  
  .about-us-section .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--off-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .about-us-section .facebook-icon {
    background: linear-gradient(145deg, #3b5998, #4e6bc4);
  }
  
  .about-us-section .twitter-icon {
    background: linear-gradient(145deg, #1da1f2, #329cec);
  }
  
  .about-us-section .instagram-icon {
    background: linear-gradient(145deg, #e4405f, #fa7298);
  }
  
  .about-us-section .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  


  

/* About Us Section */
.about-us {
    padding: 60px 0;
    background: var(--pale-green);
  }
  
  .about-us .about-content {
    text-align: left;
  }
  
  .about-us .about-content .title {
    font-size: 2.5rem;
    color: var(--dark-green);
    font-weight: bold;
  }
  
  .about-us .about-content .description {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin: 20px 0;
    font-family: "Lato", serif !important;

  }
  
  .about-us .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    cursor: pointer;
    font-family: "Lato", serif !important;

  }

  .about-us .btn-contact-us {
    background-color: var(--light-green);
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
  }
  
  .about-us .btn-custom:hover {
    background-color: var(--light-green) !important;
    color: var(--dark-green) !important;
  }
  
  .about-us .about-image img {
    border-radius: 15px;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-us .about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }


  /* join us section */


.join-us-section {
    background-color: var(--off-white);
    padding: 50px 0;
    
  }
  
  .join-us-section .text-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .join-us-section .text-content ul {
    list-style: none;
    padding: 0;
  }
  
  .join-us-section .text-content ul li {
    font-size: 1.2rem;
    color: var(--medium-green);
    margin-bottom: 10px;
    font-family: "Lato", serif !important;

  }
  
  .join-us-section .button-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%; /* Ensures alignment for buttons */
    font-family: "Lato", serif !important;

  }
  
  .join-us-section .btn {
    display: inline-block;
    width: 250px; /* Same width for both buttons */
    height: 60px; /* Same height for both buttons */
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .join-us-section .btn-primary {
    background-color: var(--dark-green);
    color: var(--off-white);
    border: 2px solid var(--dark-green);
  }
  
  .join-us-section .btn-primary:hover {
    background-color: var(--medium-green);
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .join-us-section .btn-secondary {
    background-color: var(--light-green);
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
  }
  
  .join-us-section .btn-secondary:hover {
    background-color: var(--pale-green);
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 768px) {
    .join-us-section .button-content {
      align-items: center; /* Center buttons on small screens */
    }
  }
  
  
  @media (max-width: 768px) {
    .join-us-section .row {
      flex-direction: column;
      text-align: center;
    }
    .about-us .btn-contact-us {
        margin-bottom: 1.5rem;
    }
  
    
  }


  /* Help Section Styles */
.help-section {
  background: linear-gradient(145deg, var(--light-green), var(--pale-green));
  padding: 60px 0;
  /* border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); */
  position: relative;
}

.help-section:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--light-green);
  border-radius: 20px;
  z-index: -1;
  filter: blur(15px);
}

.help-section .section-title {
  font-size: 2.5rem;
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 20px;
}

.help-section .section-desc {
  font-size: 18px;
  color: var(--medium-green);
  line-height: 1.6;
  
}

.help-section .contact-link {
  color: var(--dark-green);
  font-weight: 600;
  text-decoration: underline;
}

.help-section .contact-link:hover {
  color: var(--medium-green);
  text-decoration: none;
}

.help-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.help-section .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--dark-green);
  color: var(--off-white);
  font-size: 20px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.help-section .social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  background: var(--medium-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .help-section .section-title {
      font-size: 24px;
  }

  .help-section .section-desc {
      font-size: 16px;
  }

  .help-section .social-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .help-section .section-title {
      font-size: 20px;
  }

  .help-section .section-desc {
      font-size: 14px;
  }

  .help-section .social-icon {
      width: 35px;
      height: 35px;
      font-size: 16px;
  }
}

/* recipe page starts */


.search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-container .search-box {
  display: flex;
  align-items: center;
  background-color: transparent;
  /* background: linear-gradient(145deg, #ffffff, #e6e6e6); */
  /* border-radius: 50px; */
  /* padding: 10px; */
  border-bottom: 2px solid var(--dark-green);
  /* box-shadow: 5px 5px 15px #cccccc, -5px -5px 15px #ffffff; */
}

.search-container .search-input {
  background-color: transparent;

  width: 100%;
  border: none;
  /* border-radius: 50px; */
  /* padding: 10px 15px; */
  outline: none;
  font-size: 16px;
  /* box-shadow: inset 5px 5px 15px #d9d9d9, inset -5px -5px 15px #ffffff; */
}
.search-container .search-input:focus {
  box-shadow: none;
}

.search-container .search-btn {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff; */
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

/* .search-container .search-btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 20px #b8b8b8, -5px -5px 20px #ffffff;
} */

.search-container .search-btn i {
  color: var(--dark-green);
  font-size: 20px;
}


/* second searcbar */


.search-container1 {
  position: relative;
  width: 100%;
}

.search-container1 .search-box1 {
  display: flex;
  align-items: center;
  background-color: transparent;
  background: linear-gradient(145deg, #f3f3f3, #e6e6e6);
  border-radius: 50px;
  padding: 7px;
  margin: 20px 0px;
  /* box-shadow: 5px 5px 15px #cccccc, -5px -5px 15px #ffffff; */
}

.search-container1 .search-input1 {
  background-color: transparent;

  width: 100%;
  border: none;
  /* border-radius: 50px; */
  /* padding: 10px 15px; */
  outline: none;
  font-size: 16px;
  /* box-shadow: inset 5px 5px 15px #d9d9d9, inset -5px -5px 15px #ffffff; */
}
.search-container1 .search-input1:focus {
  box-shadow: none;
}

.search-container1 .search-btn1 {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff; */
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

/* .search-container .search-btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 20px #b8b8b8, -5px -5px 20px #ffffff;
} */

.search-container1 .search-btn1 i {
  color: var(--dark-green);
  font-size: 20px;
}

/* plan recipe styel */

.planner-container {
  display: flex;
  align-items: center;
  position: relative;
}
.planner-container .arrow {
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: -60px;
  right: 60px;

}
.meal-plan-days .day-wrapper {
  overflow: hidden;
  width: 100%;
}
.meal-plan-days .day-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  margin-right: 10px;
  position: relative;
}
.day-label {
  font-weight: bold;
  margin-bottom: 5px;
}
.recipe-list {
  display: flex;
  flex-direction: column; /* Recipes will stack vertically */
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.recipe-box {
  border: 1px dashed #142900;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  width: 250px;
  /* min-height: 50px; */
  border-radius: 15px;
}
.day-wrapper .card {
  width: 250px !important;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.day-recipes .card img {
  /* border-top-left-radius: 10px;
  border-top-right-radius: 10px; */
  height: 150px;
  object-fit: cover;
}
.day-recipes .card-body {
  text-align: start;
  padding: 10px;
}
.day-recipes .card-body .card-title {
font-size: 14px;
font-weight: 500;
}
.delete-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  cursor: pointer;
  font-size: 15px;
  color: var(--dark-green);
}


.categories .custom-drops  {
  /* display: flex;
  align-items: center; */
}

.categories .custom-drops .custom-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1.8px solid var(--dark-green);
  border-radius: 10px;
  padding: 8px 10px !important;
  font-family: "Lato", serif !important;
  font-size: 1.2rem;
  color: var(--dark-green);
  cursor: pointer;
  width: 100%; /* Adjust width for responsiveness */
}



.categories .custom-drops .custom-dropdown .icon {
  background-color: var(--light-green);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.categories .custom-drops .custom-dropdown .icon svg {
  width: 15px;
  height: 15px;
  fill: var(--dark-green);
}

.categories .custom-drops .dropdown-menu {
  border-radius: 10px;
  margin-top: 5px;
  background-color: #f8f8e8;
  border: 1px solid var(--medium-green);
  width: 100%;
}

.categories .custom-drops .dropdown-item {
  font-family: 'Lato', serif;
  font-size: 1rem;
  color: var(--dark-green);
  padding: 10px 15px;
}

.categories .custom-drops .dropdown-item:hover {
  background-color: var(--pale-green);
  color: var(--dark-green);
}

/* Custom styles for the button */
.categories .custom-drops .custom-button {
  font-size: 1.2rem;
  color: var(--dark-green);
  background-color: transparent;
  border: 1.8px solid var(--dark-green);
  border-radius: 10px;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Lato', serif;

}

.categories .custom-drops .custom-button:hover {
  background-color: var(--dark-green);
  color: var(--off-white);
}

.categories .custom-drops .custom-button .icon {
  background-color: #dce6c4;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.categories .custom-drops .custom-button .icon svg {
  width: 12px;
  height: 12px;
  fill: #3a3a3a;
}



.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* max-width: 350px; */
}

.card-container .recipe-card {
  /* background: linear-gradient(145deg, #ffffff, #e6e6e6); */
  box-shadow: 5px 5px 15px #cccccc, -5px -5px 15px #ffffff;
  border-radius: 15px;
  overflow: hidden;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  border: 1px solid var(--medium-green);
}

/* .card-container .recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 20px #cccccc, -10px -10px 20px #ffffff;
} */

.card-container .card-image {
  position: relative;
  width: 100%;
}

.card-container .card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-container .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--medium-green);
  color: var(--off-white);
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 25px;
}

.card-container .bookmark-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #000000cc;
  border-radius: 50%;
  padding: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 40px;
  height: 40px;
}
.card-container .fav {
  background-color: var(--off-white);
  color: var(--dark-green);
}

.card-container .card-content {
  padding: 15px;
}

.card-container .card-content h5 {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-green);
  margin: 0 0 10px;
  font-family: 'Lato', serif;

}

.card-container .card-content p {
  font-size: 14px;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  font-family: 'Lato', serif;

}

.card-container .card-content p i {
  margin-right: 5px;
}

.card-container .card-footer {
  display: flex;
  align-items: center;
  background-color: transparent;
}

.card-container .card-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.card-container .card-footer span {
  font-size: 14px;
  color: var(--dark-green);
  font-family: 'Lato', serif;

}


/* details page style */

.detail-wrapper {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.detail-wrapper .section-header {
  margin-bottom: 30px;
  margin-left: 0;
}

.detail-wrapper .detail-img {
  position: relative;
}

.detail-wrapper .detail-img img {
  position: relative;
  width: 100%;
  border-radius: 15px;
}

.detail-wrapper .btn-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}
.share-btn {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 100px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: none;
  outline: none;
  background-color: #1429008e;
  color: var(--off-white);
}

/* share card style starts */
.share-section .card {
  width: 100%;
  padding: 2rem;
  background-color: #fff;
}



.share-section .card-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.share-section .card-title h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  text-align: start;
  color: var(--dark-green);
}

.share-section .card-title img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  margin-left: 10px;
}

.share-section .divider {
  height: 1px;
  background-color: var(--medium-green);
  margin: 15px 0;
  opacity: 0.3;
}

.share-section .card-actions {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.share-section .card-actions div {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark-green);
  transition: color 0.3s;
}

.share-section .card-actions div:hover {
  color: var(--medium-green);
}

.share-section .card-actions div i {
  font-size: 20px;
  margin-right: 8px;
}
/* share card style ends */
.book-btn {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 50px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: none;
  outline: none;
  background-color: #1429008e;
  color: var(--off-white);
}
.shopping-btn {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 0px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: none;
  outline: none;
  background-color: #1429008e;
  color: var(--off-white);
}

.detail-wrapper .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #d7ffa4;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.detail-wrapper .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #142900;
  border-radius: 50%;
  transition: all 200ms;
}

.detail-wrapper .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.detail-wrapper .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #ffffff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
0% {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  opacity: 1;
}
100% {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
  opacity: 0;
}
}

#videoModal {
  padding-left: 17px;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .detail-wrapper .about-img {
      margin-bottom: 30px;
  }
}

.rating-container {
  
}
.recipe-detail-content p {
  font-family: "Lato", serif !important;
}

.rating-container .stars {
  display: flex;
}

.rating-container .star {
  width: 20px;
  height: 20px;
  background: gold;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}


.star.active {
  background: var(--dark-green);
  transform: scale(1.1);
}

.time-label {
  font-size: 1.1rem;
  font-weight: 800 !important;
  color: var(--dark-green);
  font-family: "Lato", serif !important;

}

.time-value {
  font-size: 1rem;
  font-weight: bold;
  color: var(--medium-green);
  font-family: "Lato", serif !important;
  line-height: 10px;

}

.btn-cook {
  background-color: var(--medium-green);
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-cook:hover {
  background-color: var(--pale-green);
  color: var(--dark-green);
}

.btn-cook i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .d-flex {
    flex-direction: row;
    text-align: center;
  }

  .btn-cook {
    /* margin-top: 10px; */
    /* width: 100%; */
  }
  .recipe-detail-content {
    margin-top: 1.3rem;
  }
}
.recipe-method .nav-pills {
  justify-content: start;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}
.recipe-method .nav-link {
  background: transparent !important;
  /* border-bottom: 2px solid var(--dark-green); */
  color: var(--dark-green) ;
  font-weight: 700 !important;
  border-radius: 0px;
  margin: 5px;
  /* transition: 0.3s; */
  font-family: "Lato", serif !important;
}
.recipe-method .nav-link.active {
  /* background: var(--dark-green); */
  border-bottom: 2px solid var(--dark-green) !important;
  color: var(--dark-green) !important;
  font-weight: 700 !important;
}
.recipe-method .nav-link:hover {
  color: var(--dark-green) !important;
}



.recipe-method-content .quantity-btn {
  width: 30px;
  height: 30px;
  line-height: 1;
  font-size: 1rem;
  font-family: "Lato", serif !important;
  background-color: var(--pale-green) !important;
}

.recipe-method-content .quantity-btn:focus {
  box-shadow: none !important;
}

.recipe-method-content .quantity-input {
  width: 60px;
  font-size: 1rem;
  font-family: "Lato", serif !important;
  background-color: var(--pale-green) !important;


}

.recipe-method-content .custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-family: "Lato", serif !important;
  background-color: var(--dark-green) !important;

}

.recipe-method-content .table td {
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Lato", serif !important;

}

@media (max-width: 576px) {
  .recipe-method-content .d-flex {
    flex-direction: row;
    align-items: flex-start;
  }

  .recipe-method-content .quantity-input {
    width: 50px;
  }

  .recipe-method-content .quantity-btn {
    width: 25px;
    height: 25px;

  }

  .recipe-method-content  table {
    font-size: 0.9rem;
  }
}



.shipping-btn button {
  font-family: "Lato", serif !important;
}

/* Styles for the Comments Component */
.comment-box {
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(11, 35, 7, 0.1);
}

.profile-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.comment-textarea {
  border: none;
  outline: none;
  font-size: 0.95rem;
  resize: none; /* Prevent resizing */
}
.comment-textarea:focus {
  box-shadow: none;
}

.comment-textarea::placeholder {
  color: var(--dark-green);
  font-family: "Lato", serif !important;

}

.image-upload-icon {
  width: 40px;
  height: 40px;
  border: 1px dashed #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #888;
  line-height: 38px;
  cursor: pointer;
}

.image-upload-icon:hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}

@media (max-width: 576px) {
  .comment-box {
    flex-wrap: wrap;
  }

  .image-upload-icon {
    margin-top: 10px;
  }
}

.shopping-wrapper {
  max-width: 700px;
      margin: 40px auto;
      background: var(--off-white);
      border: 1px solid var(--pale-green);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;

}




.shopping-wrapper .category-title {
  font-size: 1rem;
  font-weight: 800 !important;
  color: var(--dark-green);
  font-family: "Lato", serif !important;
  

}

.shopping-wrapper .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid var(--pale-green);
  font-family: "Lato", serif !important;

}

.shopping-wrapper .item:last-child {
  border-bottom: none;
}

.shopping-wrapper .item input[type="checkbox"] {
  accent-color: var(--medium-green);
  margin-right: 10px;
}

.shopping-wrapper .item-label {
  display: flex;
  align-items: center;
  flex-grow: 1;
  color: var(--dark-green);
  
}
.shopping-wrapper .item-label span {
  font-weight: 500;
}

.shopping-wrapper .item-quantity {
  font-size: 0.9rem;
  color: var(--medium-green);
  margin-left: 10px;
}

.shopping-wrapper .remove-btn {
  background: none;
  border: none;
  color: var(--medium-green);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}

.shopping-wrapper .remove-btn:hover {
  color: var(--dark-green);
}

.shopping-wrapper .divider {
  height: 1px;
  background: var(--pale-green);
  margin: 20px 0;
}

.shopping-wrapper .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopping-wrapper .controls button {
  border: 1px solid var(--medium-green);
  background: none;
  color: var(--medium-green);
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Lato", serif !important;

}

.shopping-wrapper .controls button:hover {
  background: var(--medium-green);
  color: var(--off-white);
}

/* Toggle Switch */
.shopping-wrapper .toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Lato", serif !important;

}

.shopping-wrapper .toggle input {
  display: none;
}

.shopping-wrapper .toggle label {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background: var(--pale-green);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.shopping-wrapper .toggle label:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--off-white);
  border: 2px solid var(--medium-green);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}

.shopping-wrapper .toggle input:checked + label {
  background: var(--medium-green);
}

.shopping-wrapper .toggle input:checked + label:before {
  transform: translateX(20px);
}

.shopping-wrapper .toggle span {
  font-size: 0.9rem;
  color: var(--dark-green);
}









/* Header Section */
.plan-wrapper .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: "Lato", serif !important;

}

.plan-wrapper .header a {
  color: var(--medium-green);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s;
  font-family: "Lato", serif !important;

}

.plan-wrapper .header a:hover {
  color: var(--dark-green);
}

.plan-wrapper .header-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-left: 10px;
  font-family: "Lato", serif !important;

}

/* .plan-wrapper .shopping-list-btn {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-wrapper .shopping-list-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} */



/* Divider */
.plan-wrapper .divider {
  height: 2px;
  background: var(--light-green);
  margin: 20px 0;
}

  /* Scrollable wrapper */
  /* .plan-wrapper {
    overflow-x: auto; 
    white-space: nowrap;
    padding-bottom: 10px; 
    width: 100%;
}


.day-card-container {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap; 
    padding: 10px;
    width: max-content; 
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.add-day-btn {
  cursor: pointer;
  color: var(--dark-green);
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  border: 1px dashed var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 120px;
  white-space: nowrap;
}


.plan-wrapper .day-card {
  background: var(--off-white);
  border: 1px dashed var(--dark-green);
  border-radius: 10px;
  width: 200px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.plan-wrapper .day-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.plan-wrapper .day-card h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark-green);
}

.plan-wrapper .day-card span {
  font-size: 0.8rem;
  color: var(--medium-green);
}


.plan-wrapper .add-day-btn {
  color: var(--medium-green);
  font-size: 1rem;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.plan-wrapper .add-day-btn:hover {
  color: var(--dark-green);
}


    
    .plan-wrapper .nav-arrows {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
    }

    .plan-wrapper .nav-arrows button {
      background: var(--dark-green);
      border: 1px solid var(--light-gray);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .plan-wrapper .nav-arrows button:hover {
      background: var(--light-red);
      transform: translateY(-3px);
    } */

    



    .nutrition-section {
      padding: 20px;
      text-align: center;
  font-family: "Lato", serif !important;

  }

  .nutrition-section h5 {
      font-size: 16px;
      color: var(--dark-green);
      font-weight: bold;
      margin-bottom: 10px;
  }

  .nutrition-section .read-more {
      font-size: 14px;
      color: var(--medium-green);
      text-decoration: underline;
      cursor: pointer;
  }

  .nutrition-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
  }

  .nutrition-card {
      background-color: var(--pale-green);
      width: 150px;
      padding: 20px 10px;
      border-radius: 10px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .nutrition-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }

  .nutrition-value {
      font-size: 20px;
      font-weight: bold;
      color: var(--dark-green);
  }

  .nutrition-label {
      font-size: 12px;
      color: var(--medium-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-top: 5px;
  }

  @media (max-width: 768px) {
      .nutrition-card {
          width: 120px;
          padding: 15px;
      }

      .nutrition-value {
          font-size: 18px;
      }

      .nutrition-label {
          font-size: 10px;
      }
  }



  .method-content {
    max-height: 400px;
    overflow-y: scroll;
    /* padding: 20px; */
    /* background-color: #fff; */
    /* border: 1px solid #ccc; */
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* margin: 20px auto; */
    /* width: 80%; */
    scrollbar-width: none; /* For Firefox */
}

.method-content::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}



.method-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.method-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.method-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}
/*.custom-control-input:checked ~ .custom-control-label::before {*/
/*  background-color: black !important;*/
/*  border-color: black !important;*/
/*}*/
/*.custom-control-input:checked ~ .custom-control-label::after {*/
/*  border-color: white !important;  */
/*}*/


.custom-checkbox {
  width: 18px;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
    vertical-align: middle;
  margin-top: -2px; /* alignment adjust */
  
}
.diet-text {
  margin-left: 6px;   /* jitna chaho increase kar sakte ho */
}
.course-text {
  margin-left: 6px; /* checkbox se text ka distance */
}
.method-text {
  margin-left: 6px; /* adjust spacing between checkbox and text */
}
.dish-text {
  margin-left: 6px; /* space between checkbox and text */
}

/* Black background when checked */
.custom-checkbox:checked {
  background-color: #142900;
  border-color: #142900;
}

/* White Tick */
.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



.method-content .step {
    padding: 0px 15px;
    /*margin-bottom: 20px;*/
    /* border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .method-content .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */

.method-content .step strong {
    font-size: 18px;
    color: var(--dark-green);
    display: block;
    margin-bottom: 10px;
}

.method-content .step p {
    font-size: 14px;
    color: var(--dark-green);
    line-height: 1.6;
    margin-bottom: 10px;
}

.method-content .step img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s ease; */
}

/* .method-content .step img:hover {
    transform: scale(1.05);
} */

@media (max-width: 768px) {
    .method-content {
        width: 90%;
    }

    .method-content.step {
        padding: 10px;
    }

    .method-content.step strong {
        font-size: 16px;
    }

    .method-content.step p {
        font-size: 13px;
    }
}

.video-card {
  position: relative;
  width: 300px;
  height: 533px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #000;
  margin: 20px auto;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-card .controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.video-card .controls button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin: 0 5px;
}

.video-card .controls input[type="range"] {
  flex: 1;
  margin: 0 10px;
}

.volume-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.volume-container .volume-bar {
  display: none;
  position: absolute;
  top: 70px;
  width: 100px;
  transform: rotate(-90deg);
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  border-radius: 5px;
}

.volume-container:hover .volume-bar {
  display: block;
}

.volume-container button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.back-page a {
  color: var(--dark-green);
}


/* popup modal */


.modal-content .title {
  font-size: 2.5rem;
  font-weight: bold;
}

.modal-content .features {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Lato", serif !important;

}

.modal-content .price {
  font-size: 1.5rem;
  color: var(--medium-green);
  font-weight: bold;
}

.modal-content .btn-danger {
  background: var(--dark-green);
  border: none;
  transition: all 0.3s ease-in-out;
}

.modal-content .btn-danger:hover {
  background: var(--medium-green);
  color: var(--off-white);
  transform: scale(1.05);
}

.modal-content .login-link {
  color: var(--medium-green);
  text-decoration: underline;
}
.modal-content .modal-img {
  height: 85vh;
}
.modal-content .logo img {
  width: 70%;
}

@media (max-width: 768px) {
  .modal-content .modal-img {
    display: none;
  }
}


/* offcanvas style */

.offcanvas {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
}
.offcanvas.show {
  right: 0;
}
.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offcanvas-body {
  padding: 1rem;
}


/* features recipe style */
.features-section {
  padding: 50px 15px;
  background-color: var(--pale-green);
}

.features-section h2 {
  text-align: center;
  font-family: 'Perfectly Nineties', sans-serif;
  margin-bottom: 40px;
  color: var(--dark-green);
  font-weight: bold;
}

.feature-card {
  border: none;
  background: linear-gradient(145deg, var(--off-white), var(--light-green));
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1), -10px -10px 30px var(--light-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15), -15px -15px 40px var(--off-white);
}

.feature-icon {
  font-size: 3rem;
  color: var(--medium-green);
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Perfectly Nineties', sans-serif;
  color: var(--dark-green);
}

.feature-description {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: var(--dark-green);
  margin-top: 10px;
}


/* planner style */


.meal-planner {
  padding: 3rem 0rem;
}

.planner-title {
  color: var(--dark-green);
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-card {
  display: flex;
  align-items: center;
  gap: 5px;
  /* background-color: var(--pale-green); */
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
  flex: 1 0 0;
  cursor: pointer;
}

.plan-card img {
  width: 110px;
  height: 100%;
  object-fit: cover;
}


.plan-details p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--medium-green);
}

.new-plan-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--medium-green);
  border-radius: 10px;
  text-align: center;
  color: var(--medium-green);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  height: 73px;
  width: 200px;
  transition: background-color 0.3s;
}

.new-plan-card:hover {
  background-color: var(--light-green);
}

.new-plan-card i {
  font-size: 24px;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .planner-container {
      flex-wrap: wrap;
      justify-content: center;
  }

  .plan-card, .new-plan-card {
      margin-bottom: 15px;
  }
}

.recipe-notes strong {
  /* font-family: "Lato", serif !important; */
  font-size: 18px;
  color: var(--dark-green);
}



.recipe-notes ul li {
  padding: 5px 0px;
  font-size: 14px;
  color: var(--dark-green);
  font-family: "Lato", serif !important;

}
.meal-desc {
  font-family: "Lato", serif !important;
  line-height: 20px;
}







.ingredients-section {
  padding: 50px 0;
  color: var(--dark-green);
}
.ingredients-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
}
.ingredients-section p {
  color: var(--medium-green);
  font-size: 16px;
  margin-bottom: 30px;
}
.ingredients-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ingredients-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 45%;
}
.ingredients-list li {
  font-size: 16px;
  padding: 5px 0;
  border-bottom: 1px solid var(--pale-green);
  font-family: "Lato", serif !important;

}