@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    padding: 0;
    margin: 0;
}

.homePage {
    /* margin-top: 50px; */
}

.banner-section {
    width: 100%;
    min-height: 80vh;
    /* background-image: url("/assets/home_banner_bg.png"); */
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding: 80px 0 20px 0;
}

.banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 1rem 0rem 1rem;
}

.banner-row {
    display: flex;
    gap: 2rem;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    padding: 2rem 0;
}

.banner-heading {
    font-weight: 600;
    font-size: 56px;
    color: #1f3f6d;
    line-height: 4.4rem;
    margin: 0;
}

.hero-feature {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature__item {
    display: grid;
    grid-template-columns: 45px auto;
    align-items: center;
    gap: 16px;
}

.hero-feature__item svg {
    height: 42px;
    width: 42px;
}

.hero-feature__item p {
    font-size: 18px;
    font-weight: 600;
    color: #2c4b72;
    margin: 0;
}

.hero-delivery-text {
    font-size: 16px;
    margin-top: 30px;
    color: #6b7280;
}

.banner-cta-button {
    margin-top: 30px;
    padding: 1rem 1.8rem;
    background-color: #1f3f6d;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.banner-cta-button:hover {
    background-color: #163053;
}

.banner-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 50%; */
}

.banner-image {
    max-width: 600px;
    width: 100%;
    height: 100%;
    display: block;
}

.home_how_its_work_container {
    background-image: url("/assets/home_banner_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0rem 1rem;
}

.features-heading {
    text-align: center;
    color: #1f3f6d;
    margin-bottom: 3rem;
    font-size: 40px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
    background-color: #1f3f6d;
    border-radius: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem 4rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

.feature-title {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-description {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.diet-section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.diet-heading {
    text-align: center;
    color: #1f3f6d;
    margin-bottom: 3rem;
    font-size: 40px;
    font-weight: 500;
}

.diet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.diet-item {
    margin-bottom: 1.5rem;
}

.diet-card {
    height: 100%;
    background-color: #1f3f6d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.diet-card:hover {
    transform: translateY(-5px);
}

.diet-card-image {
    width: 100%;
    /* height: auto; */
    aspect-ratio: 10 / 9;
    object-fit: cover;
    display: block;
}

.diet-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;

    padding: 1.5rem;
    background-color: #1f3f6d;
}

.diet-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #fff;
}

.diet-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.5rem;
}

.diet-card-button {
    width: fit-content;
    background-color: #fff;
    color: #1f3f6d;
    border: none;
    padding: 0.55rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

/* .diet-card-button:hover {
  background-color: #163053;
} */

.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.how-it-works-heading {
    text-align: center;
    color: #1f3f6d;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 40px;
}

.how-it-works-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.how-it-works-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.pricing-section {
    width: 100%;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.pricing-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.pricing-illustration {
    flex: 6;
}

.pricing-details {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 45px;
    height: 28px;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f3f6d;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-feature {
    padding: 0.5rem 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    gap: 15px;
    font-size: 15px;
}

.pricing-feature > span > img {
    width: 15px;
    min-width: 15px;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #1f3f6d;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.pricing-cta:hover {
    background-color: #163053;
}

.pricing-cta-arrow {
    font-size: 15px;
    margin-left: 0.5rem;
    display: flex;
    justify-content: right;
    width: 100%;
}

.delivery-section {
    width: 100%;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.delivery-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.delivery-image-wrapper {
    flex: 3;
}

.delivery-image {
    width: 90%;
    height: auto;
    display: block;
}

.delivery-info {
    flex: 2;
}

.delivery-heading {
    color: #1f3f6d;
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.delivery-subheading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.delivery-schedule {
    margin-top: 0.5rem;
    margin-bottom: 2.4rem;
}

.delivery-schedule-item {
    font-size: 0.9rem;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.delivery-schedule-item:last-child {
    margin-bottom: 0;
}

.delivery-cta {
    margin-top: 1.8rem;
    background-color: #1f3f6d;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.delivery-cta:hover {
    background-color: #152c69;
    transform: translateY(-2px);
}

.about-section {
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.about-info {
    flex: 1;
}

.about-heading {
    color: #1f3f6d;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    width: 90%;
}

.about-cta {
    margin-top: 0.5rem;
    background-color: #1f3f6d;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background-color: #163053;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 80%;
    height: auto;
    display: block;
}

.testimonials-section {
    padding: 3rem 0;
    width: 100%;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-title {
    text-align: center;
    color: #1f3f6d;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #eff6ff;
    border-radius: 15px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    margin: 0;
}

.testimonial-stars {
    color: #ffac33;
    font-size: 22px;
}

.testimonial-text {
    margin: 0;
    line-height: 1.6;
}

.faq-section {
    background: #1f3f6d;
    color: #fff;
    padding: 3.5rem 0;
}

.faq-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 50px;
}

.faq-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.faq-image-container {
    display: flex;
    justify-content: left;
    align-items: center;
}

.faq-image {
    width: 80%;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-button {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 2rem;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    transition: linear 1s ease-in-out;
}

.faq-view-all {
    margin-top: 1rem;
    text-align: left;
}

.view-all-button {
    background-color: white;
    color: #1e3a8a;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.view-all-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}
.gift-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    text-align: center;
}

.gift-title {
    color: #1f3f6d;
    font-size: 34px;
    font-weight: 500;
    line-height: 40px;
}

.gift-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    margin: 1.5rem auto 2rem;
    max-width: 800px;
}

.gift-button {
    background-color: #1f3f6d;
    color: white;
    padding: 0.75rem 3.5rem;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    font-size: large;
    font-weight: 600;
}

.gift-button:hover {
    background-color: #152c69;
    transform: translateY(-2px);
}
.newsletter-section {
    background-color: #2b4570;
    padding: 4rem 1rem;
    text-align: center;
}

.newsletter-title {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    outline: none;
}

.newsletter-button {
    background-color: #2b4570;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: #1a2f4c;
}
.ordering-process ol {
    margin: 0;
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.ordering-process li {
    margin-bottom: 0.5rem;
}

.ordering-process strong {
    font-weight: bold;
}
/* Media Queries for Responsiveness */
@media screen and (max-width: 991px) {
    .banner-row {
        flex-direction: column;
    }

    .hero-feature {
        margin: 30px auto 0 auto;
    }
    .hero-feature__item {
        text-align: left;
    }

    .banner-content {
        text-align: center;
        width: 100%;
    }

    .banner-image {
        max-width: 600px;
    }

    .banner-cta-button {
        margin: 30px auto 0 auto;
    }
}

@media screen and (max-width: 575px) {
    .hero-feature__item p {
        font-size: 14px;
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .hero-feature__item p {
        font-size: 16px;
    }

    .banner-section {
        padding: 20px 0 0 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1239px) {
    .banner-section {
        padding: 50px 0 0 0;
    }
}

@media screen and (max-width: 768px) {
    .homePage {
        margin-top: 50px;
    }

    .banner-section {
        height: auto;
        padding: 20px 0 0 0;
    }
    .banner-container {
        padding: 1rem 1rem;
    }

    .banner-heading {
        font-size: 2rem;
        line-height: 2.7rem;
    }

    .banner-cta-button {
        margin-top: 20px;
        align-self: center;
    }
    .banner-image-wrapper {
        margin-top: -30px;
    }
    .diet-heading {
        margin-bottom: 2.8rem;
        font-size: 2rem;
    }
    .faq-button {
        font-size: 18px;
        font-weight: 500;
    }
    .faq-answer {
        margin-top: 1rem;
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        margin-bottom: 1rem;
    }

    .features-heading {
        margin-bottom: 2.3rem;
        font-size: 2rem;
    }
    .testimonials-title {
        margin-bottom: 2.3rem;
        font-size: 2rem;
    }
    .faq-title {
        margin-bottom: 2.3rem;
        font-size: 2rem;
    }
    .gift-title {
        font-size: 25px;
        line-height: 35px;
    }
    .gift-section {
        padding: 2rem 1rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media screen and (max-width: 575px) {
    .diet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diet-item {
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 576px) and (max-width: 1024px) {
    .diet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .how-it-works-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .how-it-works-image-container {
        width: 100%;
    }

    .how-it-works-heading {
        margin-bottom: 1rem;
        font-size: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .pricing-content {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-illustration {
        width: 100%;
    }

    .pricing-details {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem;
        width: 100%;
    }

    .pricing-amount {
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 992px) {
    .delivery-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .delivery-image-wrapper {
        width: 100%;
    }

    .delivery-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .delivery-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .delivery-info {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .delivery-heading {
        font-size: 1.75rem;
    }

    .delivery-subheading {
        font-size: 0.9375rem;
    }

    .delivery-schedule-item {
        font-size: 0.8125rem;
    }
}
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-info {
        width: 100%;
        order: 1;
    }

    .about-image-wrapper {
        width: 100%;
        order: 2;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
    }

    .about-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .about-container {
        padding: 2rem 1rem;
    }

    .about-heading {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 0.9375rem;
    }
}
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 992px) {
    .faq-content {
        grid-template-columns: 1fr;
    }

    .faq-image {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 2rem auto;
    }
}
@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 1rem;
    }

    .newsletter-input {
        /* width: 100%; */
        text-align: center;
    }

    .newsletter-button {
        width: 100%;
        background-color: #1a2f4c;
    }
}
