      :root {
            --dark-green: #142900;
            --light-green: #d7ffa4;
            --medium-green: #2c3e1a;
            --pale-green: #e7ffc8;
            --off-white: #fbfff6;
        }

        @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;
        }

        body, html {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: 'Lato', sans-serif;
            overflow-x: hidden;
            background-color: var(--off-white);
            color: var(--dark-green);
        }

        .hero-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            /* opacity: 0.7; */
        }

        .hero-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color:rgb(18 35 1 / 39%);
            z-index: 2;
            mix-blend-mode: multiply;
        }

        /* White shadow at bottom */
        .hero-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(251, 255, 246, 0.8) 0%, rgba(251, 255, 246, 0) 100%);
            z-index: 4;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            width: 100%;
            padding: 2rem;
            text-align: center;
        }

        .hero-title {
            font-family: 'Perfectly Nineties', sans-serif;
            font-weight: 600;
            font-size: 6rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .hero-subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            font-weight: 500;
            color: #fff;
        }

        .btn-hero {
            background-color: var(--light-green);
            color: var(--dark-green);
            font-family: 'Perfectly Nineties', sans-serif;
            font-weight: 600;
            padding: 10px 30px;
            border-radius: 4px;
            font-size: 20px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-hero:hover {
            background-color: var(--medium-green);
            transform: translateY(-3px);
            color: #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 35px !important;
                margin-top: 2rem;
                margin-bottom: 0.8rem !important;
            }
            
            .hero-subtitle {
                font-size: 14px !important; 
                font-weight: 500 !important;
            margin-bottom: 1rem;

            }
            
            .hero-content {
                padding: 1.5rem;
                margin-top: -2.5rem;
            }
            .hero-container {
            position: relative;
            height: 30vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-container::after {
            height: 40px;
        }

        .hero-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            /* opacity: 0.7; */
        }
        

        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-hero {
                padding: 0.4rem 2rem;
                font-size: 1rem;
            }
        }

        /* strength kitchen */

         .strength-section {
      padding: 60px 20px;
      background-color: var(--white);
    }

    .strength-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    
     .fa-arrow-right {
      font-size: 22px;
    }

    .highlight-box {
      background-color: var(--pale-green);
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

    .highlight-box h2 {
      
      font-family: 'Perfectly Nineties', sans-serif;
      font-size: 56px;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 25px;
    }

    .highlight-box h2 em {
      font-style: italic;
      font-weight: 500;
    }

    .highlight-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .highlight-box ul li {
      font-family: 'Lato', sans-serif;
      /* position: relative; */
      font-size: 29px;
      margin: 10px 0;
      padding-left: 25px;
    }

    /* .highlight-box ul li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--dark-green);
      font-weight: bold;
    } */

    .strength-description {
      font-size: 35px;
      font-family: 'Perfectly Nineties', sans-serif !important;
      margin-bottom: 30px;
      font-weight: 600;
      color: var(--dark-green);
    }

    .strength-price {
      font-weight: 600;
      color: var(--dark-green);
    }

    .btn-signup {
      background-color: var(--dark-green);
      color: var(--white);
      padding: 12px 30px !important;
      font-size: 20px !important;
      border: none;
      border-radius: 5px;
      font-weight: 600 !important;
      transition: 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .btn-signup:hover {
      background-color: #2c3e1a;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .highlight-box h2 {
        font-size: 1.75rem;
      }
      .highlight-box ul li {
        font-size: 1rem;
      }
       .fa-arrow-right {
      font-size: 14px;
      margin-right: 0.3rem;
    }
    }

    @media (max-width: 576px) {
      .highlight-box {
        padding: 30px 20px;
      }
      .highlight-box h2 {
        font-size: 1.5rem;
      }
          .fa-arrow-right {
      font-size: 14px;
      margin-right: 0.3rem;
    }
      .strength-description {
        font-size: 20px;
        font-weight: 600;
      }
      .btn-signup {
        font-size: 14px;
        font-weight: 600;
        padding: 13px 35px;
      }
    }

    /* explore recipes style starts */

    .explore-section .recipe-header {
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--dark-green);
            text-align: center;
      font-family: 'Perfectly Nineties', sans-serif !important;

        }

        .explore-section .tabs-container {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }

        .explore-section .category-tabs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: none;
        }

        .explore-section .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .explore-section .category-tab {
      font-family: 'Perfectly Nineties', sans-serif !important;

            padding: 8px 20px;
            border-radius: 40px;
            background: white;
            color: var(--dark-green);
            font-size: 20px !important;
            font-weight: 600 !important;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid var(--light-green);
            transition: all 0.2s;
        }

        .explore-section .category-tab.active {
            background: #142900;
            color: white;
            border-color: #142900;
        }

        .explore-section .recipe-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .explore-section .recipe-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.2s;
            position: relative;
        }

        .explore-section .recipe-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .explore-section .recipe-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .explore-section .recipe-name {
            padding: 15px;
            font-size: 20px;
            text-align: center;
            font-weight: 500;
        }

        .explore-section .recipe-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: white;
        }

        .explore-section .badge-paid {
            background-color:rgba(20, 41, 0, 0.76);
            border-radius: 30px;
            padding: 4px 25px;
        }

        .explore-section .badge-free {
            background-color:rgba(216, 255, 164, 0.79);
            border-radius: 30px;
            padding: 4px 25px;
            color: var(--dark-green);
        }

        .explore-section .view-all {
            text-align: center;
            margin-top: 20px;
        }

        .explore-section .view-all a {
            color: #142900;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .explore-section .view-all a:hover {
            text-decoration: underline;
        }

        .explore-section .view-all a i {
            margin-left: 5px;
            transition: transform 0.2s;
        }

        .explore-section .view-all a:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 992px) {
            .explore-section .recipe-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .explore-section .recipe-grid {
                grid-template-columns: repeat(2, 1fr);
            }
             .explore-section .recipe-name {
              font-size: 18px;
              font-weight: 600;
             }
            
            .explore-section .recipe-header {
                font-size: 28px;
                font-weight: 600;
                margin-top: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .explore-section .recipe-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .explore-section .recipe-header {
                font-size: 28px;
            }
            
            .explore-section .recipe-image {
                height: 120px;
            }
        }
    /* explore recipes style ends */


    /* features section starts */
    
    .feature-section {
      padding: 60px 20px;
    }

    .feature-section .features-title {
      text-align: center;
      font-family: 'Perfectly Nineties', sans-serif;
      font-size: 56px;
      font-weight: 600;
      margin-bottom: 50px;
    }

    .feature-section .feature-box {
      /* background-color: #fff; */
      border-radius: 12px;
      /* box-shadow: var(--card-shadow); */
      overflow: hidden;
      /* transition: transform 0.3s ease; */
    }



    .feature-section .feature-img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .feature-section .feature-content {
      margin-top: 20px;
    }

    .feature-section .feature-content h5 {
      font-size: 32px;
      font-family: 'Perfectly Nineties', sans-serif;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .feature-section .feature-content p {
      font-size: 20px;
      margin-bottom: 0;
      font-weight: 400;
      color: #1C1F25;
      line-height: 1.5;
    }

    @media (max-width: 767.98px) {
      .feature-section .feature-img {
        height: 200px;
      }
    }

    @media (max-width: 575.98px) {
      .feature-section .features-title {
        font-size: 28px;
        font-weight: 600;
      }

      .feature-section .feature-img {
        height: 180px;
      }

      .feature-section .feature-content h5 {
        font-size: 20px !important ;
        font-weight: 600 !important;
      }

      .feature-section .feature-content p {
        font-size: 16px;
        font-weight: 400;
      }
    }
    /* feature section ends */

    /* pricing style starts */

    .pricings-section {
      text-align: center;
      background-color: #142900;
    }

    .pricings-section h1 {
      font-family: 'Perfectly Nineties', serif;
      font-size: 56px;
      color: var(--off-white);
      margin-bottom: 10px;
    }

    .pricings-section p {
      font-size: 24px;
      font-weight: 400;
      color: var(--pale-green);
      margin-bottom: 40px;
    }

    .price-plans {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .plan-box {
      background-color: var(--off-white);
      color: var(--dark-green);
      border-radius: 16px;
      max-width: 483px;
      padding: 30px 25px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .plan-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .most-popular {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--light-green);
      color: var(--dark-green);
      padding: 6px 16px;
      border-radius: 14px;
      font-size: 0.9rem;
      font-weight: bold;
      font-family: 'Lato', sans-serif;
    }

    .plan-box h2 {
      font-family: 'Perfectly Nineties', serif;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
    .little-price {
        color: #2C3E1A;
        font-size: 16px;
        font-weight: 600;
      font-family: 'Lato', sans-serif;

    }

    .price {
      font-size: 2.2rem;
      font-weight: bold;
      /* margin: 10px 0; */
    }

    .subtext {
      font-family: 'Lato', sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: #1C1F25;
      margin-bottom: 25px;
    }

    .features {
      text-align: left;
      margin-bottom: 25px;
      font-size: 0.95rem;
    }

    .features li {
      font-family: 'Lato', sans-serif;
      font-size: 18px;
      list-style: none;
      margin-bottom: 12px;
      position: relative;
      padding-left: 24px;
      color: var(--dark-green);
    }

    .features li::before {
      content: '✓';
      color: var(--medium-green);
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    .choose-btn {
      background-color: var(--medium-green);
      color: var(--off-white);
      border: none;
      padding: 10px 30px;
      border-radius: 4px;
      font-size: 20px;
      cursor: pointer;
      font-weight: 600 !important;
      transition: background-color 0.3s ease;
    }

    .choose-btn:hover {
      background-color: #3b5a24;
    }

    @media (max-width: 768px) {
      .price-plans {
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }
      .pricings-section h1  {
        font-size: 28px !important;
        font-weight: 600 !important;
      }
      .pricings-section p {
        font-size: 14px;
        font-weight: 400;
      }
      .plan-box h2 {
        font-size: 25.83px;
        font-weight: 600;
      }
      .subtext {
        font-size: 16px !important;
      }
      .price {
        font-size: 45.2px;
        font-weight: 600;
      }
      .features li {
        font-size: 14px;
        font-weight: 400;
      }
        .pricings-section p {
    
      margin-bottom: 20px;
    }
    }

    /* pricing style ends */

    /* about section style */

    .about-section {
      padding: 60px 20px;
    }

    .about-title {
            font-family: 'Perfectly Nineties', sans-serif;
    
      font-size: 56px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .about-text {
      font-family: 'Lato', sans-serif;
      font-size: 20px !important;
      font-weight: 400;
      color: #333;
      margin-bottom: 25px;
    }

    .btn-get-started {
            font-family: 'Perfectly Nineties', sans-serif;
      background-color: var(--dark-green);
      color: var(--white);
      font-size: 20px;
      font-weight: 600;
      padding: 10px 30px;
      border: none;
      border-radius: 4px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
      transition: 0.3s ease;
    }

    .btn-get-started:hover {
      background-color: var(--medium-green);
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
    }

    .about-img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 767.98px) {
      .about-title {
        font-size: 28px;
        font-weight: 600;
        text-align: center;
      }
      .about-text {
        text-align: center;
        font-size: 16px;
        font-weight: 400;
      }
      .btn-get-started {
        display: block;
        margin: 0 auto;
      }
      .about-img {
        margin-top: 30px;
      }
    }

    /* review style */

      .review-section {
      padding: 20px 20px;
      background-color: #fff;
    }

    .review-wrapper {
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: space-between;
      align-items: center;
    }

    .review-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .review-box {
      background: #fff;
      /* border-radius: 999px; */
      /* padding: 10px 25px; */
      display: flex;
      align-items: center;
      /* border: 1px solid var(--dark-green); */
      /* box-shadow: 0 8px 20px var(--light-shadow); */
      /* max-width: 340px; */
    }
     .review-box img {
      width: 100%;
     }
     .first-box {
      margin-right: 50px;
     }
     .third-box {
      margin-left: 50px;
     }

    .review-text {
            font-family: 'Lato', sans-serif;

      font-size: 0.88rem;
      line-height: 1.4;
      font-size: 14px;
    }

    .review-name {
            font-family: 'Lato', sans-serif;

      font-weight: 600;
      margin-bottom: 2px;
    }

    .review-role {
      font-size: 0.8rem;
      color: #777;
    }

    .review-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-left: 15px;
      flex-shrink: 0;
    }

    .review-center {
      text-align: center;
      padding: 30px 0;
    }

    .review-center h2 {
            font-family: 'Perfectly Nineties', sans-serif;
      
      font-weight: 600;
      font-size: 56px;
      margin-bottom: 10px;
    }

    .stars {
      color: #f7b500;
      font-size: 1.1rem;
    }

    .rating-info {
            font-family: 'Lato', sans-serif;

      font-size: 16px;
      color: #000;
      margin-bottom: 20px;
    }

    .btn-review {
            font-family: 'Perfectly Nineties', sans-serif;
      background-color: var(--dark-green);
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      padding: 10px 30px;
      border: none;
      border-radius: 4px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.1);
      transition: 0.3s ease;
    }

    .btn-review:hover {
      background-color: #2c3e1a;
      transform: translateY(-2px);
    }

    @media (max-width: 991.98px) {
      .review-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .review-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }

      .review-box {
        margin: 10px;
      }

      .review-center {
        padding-top: 40px;
      }
    }

    @media (max-width: 576px) {
      .review-box {
        flex-direction: flex;
        align-items: flex-start;
        border-radius: 50px;
        max-width: 100%;
      }
      .review-wrapper {
        flex-wrap: wrap;
      }
        .first-box {
      margin-right: none;
     }
     .third-box {
      margin-left: none;
     }

      .review-img {
        margin-left: 0;
        margin-top: 10px;
      }

      .review-center h2 {
        font-size: 1.7rem;
      }

      .btn-review {
        font-size: 0.95rem;
      }
    }

    /* testimonials style */

    .testimonial-section {
      max-width: 1300px;
      margin: auto;
      text-align: start;
    }

    .testimonial-section .carousel-wrapper {
      overflow: hidden;
      position: relative;
    }

    .testimonial-section .carousel-track {
      display: flex;
      gap: 20px;
      transition: scroll 0.3s ease-in-out;
      scroll-behavior: smooth;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    .testimonial-section .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .testimonial-section .testimonial-cards {
      background-color: #F2F2F2C2;
      flex: 0 0 auto;
      width: 356px;
      border-radius: 10px;
      padding: 20px;
      /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
      /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    }

    /* .testimonial-cards:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    } */

    .testimonial-section .stars {
      color: var(--medium-green);
      margin-bottom: 12px;
      font-size: 25px;
    }

    .testimonial-section .testimonial-text {
      font-family: 'Lato', sans-serif;
      font-size: 20px !important;
      color: #333;
      font-weight: 500 !important;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .testimonial-section .author {
      font-style: italic;
      font-size: 15px;
      color: #2C3E1A;
      font-weight: 400;
    }

    .testimonial-section .carousel-buttons {
      display: flex;
      justify-content: center;
      margin-top: 25px;
      gap: 15px;
    }

    .testimonial-section .carousel-buttons button {
      background-color: var(--dark-green);
      color: white;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .testimonial-section .carousel-buttons button:hover {
      background-color: #1c3d10;
    }

    @media (max-width: 768px) {
      .testimonial-section .testimonial-cards {
        width: 85%;
      }
      .testimonial-section .testimonial-text {
        font-size: 16px !important;
      }
    }