
body {
    background: linear-gradient(to top, #ffffff, #ffffff);
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow-x: hidden; /* Add this line */
}

::selection{
    color:rgb(255, 255, 255);
    background-color: #ff9900;
}

/* Navbar styling */
.navbar {
    background: #000000;
    /* padding: 1rem 2rem; */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}
.container-fluid{
 width: 1350px;
}

.navbar-brand img {
    width: 120px;
}
.navbar-expand-lg .navbar-collapse {

    justify-content: flex-end;
}
.navbar-nav .nav-link {
    color: #ff9900;
    margin-right: 20px;
    font-size: 16px;
    position: relative;
    transition: 500ms ease-in-out; /* Smooth transition */
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}


/* Hero Section */
.hero-logo {
    width: 130px;
    margin-bottom: 20px;
    position: relative; /* Required for 'top' to work */
    animation: floatingAnimation 3s infinite ease-in-out;
}

@keyframes floatingAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); } /* Smooth movement */
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

.btn-sm,.mt-3 {
    font-size: 16px;
    font-weight: 600;
    background-color: #ff9900;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    transition: transform 900ms;
}
.btn-detail {
    font-size: 14px;
    background-color: #ff9900;
    color: #ffffff;
    margin-top: 12px;
    font-size: 15px;
    border-radius: 25px;
    padding: 12px 27px;
    border: none;
}
/* Chat Box */
.container {
    max-width: 800px;
    margin-top: 3em;
    margin-bottom: 4em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-container {
    max-width: 1200px;
    margin-top: 4em;
    /* margin-bottom: 8em; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 7px 2px #ffcc0057;
    padding: 15px;
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-box:hover {
    box-shadow: 0px 0px 14px 3px #ffcf0f63;
}

.chat-box input {
    border: none;
    background: transparent;
    color: rgb(0, 0, 0);
    flex: 1;
    outline: none;
    font-size: 16px;
}

.chat-box input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.chat-box button {
    background: #ff9900;
    color:white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    cursor: pointer;
}

.chat-box button:hover , .mt-3:hover {
    background: #000000;
    color: #ffffff;
}

.result-box {
        background: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #000000;
        text-align: left;
        padding: 58px;
        width: 100%;
        margin-bottom: 80px;
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        font-size: 1.1rem;
}

.result-box h3 {
    font-size: 3.75rem;
}

.result-box p {
    margin: 0;
    font-size: 1.1rem;
}

.result-box ul {
    padding-left: 0px;
    display: grid;
    margin-top: 36px !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    justify-items: stretch;
    list-style-type: none;
    margin: 0;
}

.fw-bold{
    text-align: left;
}

.me-3 {
    margin-right: 1rem !important;
}

.result-box b, .result-box strong{
    font-size: 18px;
    font-weight: 500;
}

.result-box img {
    margin-bottom: 12px;
    object-fit: cover;
    width: 174px;
    border-radius: 39px;
    border-radius: 21px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 46%);
}

/* Detail Box */

.recipe-container {
    /* max-width: 700px; */
    margin: auto;
    background: #ffffff;
    /* margin: 250px 0px 100px 0px; */
    margin-bottom: 80px;
    padding: 49px 95px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recipe-header {
    display: flex;
    text-align: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #000000;
    flex-direction: row;
    align-items: center;
}
.recipe-header h2 {
    text-align: left;
    font-size: 30px;
}

.recipe-header p{
    text-align: left;
    font-size: 20px;
}

.recipe-content {
    padding-top: 34px;
    display: flex;
    gap: 16px;
    color: #000000;
    align-items: stretch;
    justify-content: center;
}

.recipe-image img {
    width: 371px;
    height: 240px;
    border-radius: 10px;
    object-fit: cover;
}

.recipe-info {
    max-width: 37%;
    flex: 1;
    text-align: left;
    border-right: 1px dotted #ff9900;
}

.recipe-directions {
    flex: 1;
    max-width: 63%;
    text-align: left;

}

.recipe-info ul {
    padding-left: 10px;
    list-style: none;
    justify-items: left;
}

.recipe-directions ul {
    padding-left: 20px;
    justify-items: left;
}

.recipe-info h3, .recipe-directions h3 {
    margin-bottom: 10px;
    color: #ff9900;
    justify-self: left;
}

.recipe-directions li {
    margin-bottom: 10px;
    color: #000000;
    justify-items: left;
}

.recipe-directions p{
    text-align: left;
}

/* Footer Styling */
.footer {
    background-color: #141414;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}


.footer .footer-links {
    margin-top: 10px;
}

.footer .footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.footer .footer-links a:hover {
    color: #ff9900;
}
form.payment {
    margin-top: 20px;
}
/* Section Title Styling */
.section-title {
    font-size: 1.6rem; /* Smaller font size for the heading */
    font-weight: 700 ;
    margin-bottom: 15px;
    color: #ff9900;
}

/* Section Description Styling */
.section-description {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Image Styling */
img.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Meal Type and Dietary Requirements Section */
#meal-dietary {
    background-color: #ff990021;
    padding: 40px 20px;
    border-style: solid;
    display: flex;
    border-width: 1px;
    border-color: #ff9900;
    border-radius: 10px;
    box-shadow: 0px 0px 14px 0px #ffcc003b;
    margin-top: 10px;
    /* margin-bottom: 60px; */
    width: 100%;
    color: white;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
::placeholder {
    color: #b59100;
    opacity: 1; /* Firefox */
  }


/* Styling the radio labels */
/* .section-title {
    font-weight: 600;
    margin-bottom: 1rem;
} */

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-check, .form-radio {
    position: relative;
    margin: 0;
    padding: 0;
}

.form-check-input {
    display: none;
}

.form-check-label {
    padding: 0.5rem 0;
    cursor: pointer;
    font-weight: 400;
    color: #000000;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    margin-right: 1.5rem;
}

.form-check-input:checked + .form-check-label {
    color: #FF9300;
    transform: translateY(-2px);
}

.form-check-input:checked + .form-check-label::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color:#FF9300;
    border-radius: 2px;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.form-check-label:hover {
    color: #FF9300;
    transform: translateY(-2px);
}

.form-check-label::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #FF9300;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.form-check-label:hover::before {
    transform: scaleX(0.5);
    opacity: 0.5;
}
/* Container for both sections */
.section-container {
    width: 1350px;
    margin: 0 auto;
}

/* General Section Styling */
.section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: center;
}

/* Section 1: Content Left, Image Right */
#section-1 {
    flex-direction: row;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #ff99005e;
    padding: 40px;
    margin-bottom: 97px;
    display: none;
}

/* Section 2: Image Left, Content Right */
#section-2 {
    flex-direction: row-reverse;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #ff99005e;
    padding: 40px;
    margin-bottom: 117px;
    display: none;
}

/* Content Styling */
.section-content {
    width: 50%;
    padding: 20px;
}

.section-content h2 {
    font-size: 2rem;
    justify-self: left;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff9900;
}

.section-content p {
    font-size: 0.9rem;
    color: rgb(0, 0, 0);
    text-align: justify;
    opacity: 0.9;
    line-height: 1.6;
}

/* Image Styling */
.section-image {
    width: 50%;
    padding: 20px;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative; /* Required for 'top' to work */
    animation: floatingAnimation 3s infinite ease-in-out;
}
.navbar-toggler {
    border: none;
    background-color: #FF9300;
    outline: none;
}

.radio-group{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap:20px;
}

#meal-type{
    grid-template-columns: repeat(4, 1fr);
}

/* About us page section */
/* About Section */
.about-us-section {
    background-color: #fff;
}

.container-about {
    max-width: 1350px;
    padding: 80px 0px;
}
.text-muted{
    text-align: left;
}
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    animation: floatingAnimation 3s infinite ease-in-out;
}

.icon-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: url('top-view-table-full-food.webp') center/cover no-repeat;
    padding: 40px 0;
    width: 100%;
}

.breadcrumb {
    background: #ff9900;
    padding: 10px 20px;
    /* width:174px; */
    border-radius: 5px;
}

.breadcrumb a{
    color:#ffffff;
    text-decoration: none;
}

.breadcrumb-item.active{
    color: #ffffff;
}

.py-5 {
    width: 100%;
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}


/* Sections */
/* .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
} */

.section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}


/* About US CTA section */
.cta-section {
    /* background: url('top-view-table-full-food.jpg') center/cover no-repeat; */
    /* height: 52vh; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-circle i {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.btn-warning {
    border-radius: 5px;
}

.container-mission{
    width: 100%;
    padding: 80px 0px;
    display: flex;
    flex-direction: row-reverse;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: #ff990000 !important;
}
.mission-values-section py-5 bg-light{
    background-color: #ff99001a !important;
}
.row {
    display: flex;
    flex-direction: row;
    max-width: 1350px;
}
.btn-warning {
    border-radius: 34px;
    background-color: #ff9900;
    padding: 11px 25px;
    float: left;
}
.mt-3:hover {
    background: #ffc107;
    color: #ffffff;
    transform: translateY(-5px);
}
.text-success{
    justify-self: left;
    --bs-text-opacity: 1;
    color: #ff9900 !important;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: white ;
}


.blog-container {
    max-width: 1350px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-header img {
    width: 100%;
    border-radius: 10px;
}

.category-badge {
    background: #f8a5c2;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}

.blog-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #343a40;
}

.blog-content blockquote {
    background: #e8f5e9;
    padding: 15px;
    border-left: 5px solid #4caf50;
    font-style: italic;
    font-size: 18px;
    margin: 20px 0;
    color: #333;
}

.blog-image-section img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.related-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.related-images img {
    width: 50%;
    border-radius: 10px;
}

.col-md-6 {
    padding-right: 46px;
 }  
/* Grid Layout */
.container-blog {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width:1350px;
    margin-top: 4em;
    margin-bottom: 4em;
    margin-left: 10px;
    margin-right: 10px;
}

/* Blog Section */
.blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.post {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.post img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-posts ul {
    list-style: none;
    padding: 0;
}

.col-lg-4 h3 {
    text-align: left;
}
.recent-posts li {
    display: flex;
    text-align: start;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.recent-posts img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.sidebar h3{
    text-align: left;
}

/* Featured Recipes */
.featured-card {
    background: #222;  /* Dark background fixed */
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.featured-card img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.6;
    margin-bottom: 20px;
}

/* Popular Tags */
.tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags .tag-list span {
    background: lightgray;
    padding: 5px 10px;
    border-radius: 4px;
}


/* General Reset */

.container-singleblogpage {
    max-width: 1200px;
    margin-top: 4em !important;
    margin-bottom: 4em !important;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: -1px -1px 11px rgba(0, 0, 0, 0.1);
}
.col-lg-8{
    text-align: start;
}
/* Blog Post Styling */
.blog-post img {
    width: 100%;
    border-radius: 8px;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Sidebar */
.recent-posts img {
    object-fit: cover;
}

.featured-recipes .featured-item {
    background: #333;
    color: white;
   
}
#singleblogpage{
    display: flex;
    flex-direction: row;
}
.mt-4 h1{
    font-size: 30px;
}
.border-success {
    --bs-border-opacity: 1;
    border-color: #ff9900 !important;
}

a.post-link {
    color:#000000;
    text-decoration: none;
}

a.post-link:hover {
    color:#b48700;
    text-decoration: none;
}

.cooking-pot img{
    width: 100%;
}
  
#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ff99003d; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* Hide initially */
}
/* Entrance animations */
[data-aos] { opacity: 1 !important; visibility: visible !important; }

.result-header{
    display: flex;
    justify-content: space-between;
}
.btn-search-again {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #ff9900, #ffc371);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px; /* Adds space between the button and the search results */
  }
  
  .search-icon {
    background-color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .search-icon svg {
    width: 18px;
    height: 18px;
    fill: #ff5f6d;
    transition: transform 0.3s ease;
  }
  
  .btn-search-again:hover {
    box-shadow: 0 6px 20px rgba(255, 95, 109, 0.4);
    transform: translateY(-3px);
  }
  
  .btn-search-again:hover .search-icon {
    transform: rotate(90deg);
  }
  
  .btn-search-again::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
  }
  
  .btn-search-again:hover::before {
    left: 100%;
  }

/* Custom Container */
.custom-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 80px 15px; /* Add some padding for better spacing */
}

/* Why Choose Section */
.why-choose-section {
    background-color: #ffffff;
}

.why-choose-section .section-title {
    font-size: 42px;
    font-weight: bold;
    padding-bottom: 15px;
    color: #000000;
}

.feature-card {
    border-radius: 10px;
    padding: 20px;  
}

.feature-card .icon {
    font-size: 50px; /* Icon size */
    color: #ff9900; /* Icon color */
}

.feature-card h5 {
    font-size: 22px;
    font-weight: bold;
    color: black;
}

.feature-card p {
    font-size: 16px;
    color: #555555;
    font-weight: 500;
}

/* Full-width wrapper for background */
.full-width-wrapper {
    background-color: #f9f9f9; /* Background color for the section */
    width: 100%; /* Full width */
    padding: 50px 0; /* Vertical padding */
}



/* How It Works Section Styling */
.how-it-works-section .section-title {
    font-size: 42px;
    padding-bottom: 40px;
    font-weight: bold;
    color: #000000;
}

/* Step Card Styling */
.step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align card content to the left */
    padding: 20px; /* Add some padding for better spacing */
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #ff9900;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    border-radius: 50%;
    text-align: center; /* Center the number inside the icon */
    margin-bottom: 15px; /* Add some space below the icon */
}

.step-card h5 {
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    color: #000000;
    padding: 14px 0px;
}

.step-card p {
    font-size: 18px;
    text-align: left;
    color: #555555;
}

/* CTA Section Styling */
.cta-section {
    background-color: #ff9900; /* Orange background */
    color: #ffffff; /* White text color */
}

.cta-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    padding: 24px 0px;
}

.cta-button {
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    color:#ff9900;
    border-radius: 10px; /* Rounded button */
    text-transform: capitalize;
}


/* Responsive Styling */
@media (max-width: 768px) {
    @media (max-width: 768px) {
        .container {
            margin-top: 2em;
            margin-bottom: 0;
            width: 100%; /* Add this line */
            padding: 0 15px; /* Add this line */
            box-sizing: border-box; /* Add this line */
        }
    
        .hero-title {
            font-size: 2.5rem; /* Reduce font size */
        }
    
        .chat-box {
            width: 100%; /* Make chat box full width */
        }
        .form-check-label{
            font-size: 12px;
        }
    
        .chat-box button {
            padding: 4px 9px;
        }
    
        .chat-box input {
            font-size: 14px; /* Increase font size for better readability */
        }
    
        .section-container {
            width: 100%;
            padding: 20px;
        }
    
        .section-content h2 {
            font-size: 1.8rem;
            text-align: left;
        }
    
        #section-1, #section-2 {
            flex-direction: column;
            padding: 20px;
            margin-bottom: 2em;
        }
    
        .section {
            flex-direction: column;
            text-align: center;
        }
    
        .section-content, .section-image {
            width: 100%;
            padding: 15px;
        }

        #meal-type{
            grid-template-columns: repeat(2, 1fr);
        }
    
        .result-box {
            width: 100%;
            box-sizing: border-box;
        }
    
        .result-box h3 {
            font-size: 1.5rem;
        }
    
        .result-box b, .result-box strong {
            font-size: 12px;
            line-height: 1.4;
        }
    
        .result-box ul {
            grid-template-columns: repeat(2, 1fr);
            padding-left: 12px;
            padding-right: 12px;
            gap: 13px;
        }
        .result-box li{
            padding-top: 20px;
        }
        .result-header {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
        .recipe-container {
            /* padding: 20px; */
            margin-bottom: 40px;
        }
    
        .recipe-image img {
            width: 100%;
            height: auto;
        }
    
        .recipe-header {
            flex-direction: column;
        }
    
        .recipe-header h2 {
            font-size: 20px;
        }
    
        .recipe-header p {
            font-size: 16px;
        }
    
        .recipe-info, .recipe-directions {
            max-width: 100%;
        }
    
        .recipe-content {
            flex-direction: column;
        }
    
        .recipe-info {
            border-right: none;
        }
    
        .container-about, .container-mission {
            padding: 40px 15px;
        }
    
        .row {
            flex-direction: column-reverse;
            max-width: 100%;
        }
    
        .col-md-6 {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }
    
        .container-blog, .container-singleblogpage {
            grid-template-columns: 1fr;
            margin: 2em 10px;
        }
    
        .btn-search-again {
            font-size: 14px;
        }
    
        .custom-container {
            padding: 30px 15px;
        }
    
        .why-choose-section .section-title,
        .how-it-works-section .section-title {
            font-size: 28px;
        }
    }
    
    /* Add this at the end of your CSS file */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

}