/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --outline: 2px solid #000;
    --box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    --green: #28a745;
    --btn-size: 90px;
}
body {
    font-family: Arial, sans-serif;
}

.dropdown-content {
    display: none;
}
/* Contact Header */

.contact-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f1f1f1;
    flex-wrap: wrap; /* Allows items to wrap to the next line on small screens */
}

.contact-header a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    flex: 1; /* Allow links to grow equally */
    text-align: center; /* Center align text for better aesthetics */
}

.contact-header a:hover {
    text-decoration: underline;
}

@font-face {
    font-family: 'YourFont';
    src: url('yourfont.woff2') format('woff2');
    font-display: swap;
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-header {
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center align items */
    }

    .contact-header a {
        padding: 8px 0; /* Adjust padding for smaller screens */
        width: 100%; /* Make links full-width */
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 5px; /* Reduce padding for very small screens */
    }

    .contact-header a {
        font-size: 14px; /* Reduce font size for readability */
    }
}

/* Navbar */

.navbar-custom {
    background-color: #fff;
    padding: 20px;
}
.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  background: transparent;
}

.logo-image {
    width: 200px; /* Adjust to desired size */
    height: 150px;  /* Keeps the aspect ratio intact */
    max-width: 200%; /* Ensures responsiveness */
}


.logo-info {
    margin-left: 20px;
}

/* Flexbox container for the logo and social media */
.header-section {
    padding: 20px;
    background-color: #f8f8f8; /* Optional background for the section */
}

.logo-and-social {
    display: flex;
    align-items: center; /* Align logo and social icons vertically */
    justify-content: space-between; /* Space between logo and social buttons */
}

/* Logo styling */
.logo-image {
    max-width: 150px; /* Adjust as needed */
}
/* Social buttons styling */
.social-buttons {
    display: flex;
    gap: 150px; /* Adds space between social media buttons */
}

.social-buttons a {
    display: inline-block;
}

.social-buttons img {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    border-radius: 50%; /* Optional to make them circular */
}


/* Optional: Style individual buttons if needed */
.facebook img { background-color: #3b5998; }
.whatsapp img { background-color: #25D366; }
.linkedin img { background-color: #0077b5; }
.instagram img { background-color: #C13584; }
.logo img { 
    background-color:white;
    
}
.youtube img { background-color: #FF0000; }

.logo-and-social2{
    height: 900px;
}
/* Responsive styling */
@media screen and (max-width: 768px) {
    .social-buttons {
        gap: 25px; /* Reduce gap for smaller screens */
        justify-content: center;
    }

    .social-buttons img {
        width: 45px; /* Reduce icon size for smaller screens */
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .social-buttons {
        gap: 20px; /* Further reduce gap for very small screens */
        flex-wrap: wrap; /* Ensure buttons wrap if they overflow */
        justify-content: center;
    }

    .social-buttons img {
        width: 30px; /* Smaller icon size for mobile */
        height: 30px;
    }
}
 /* counter */

  

.body-positivity {
    font-size: 16px;
    color: #333;
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.veggie-image img {
    max-width: 50px; /* Adjust the size of your vegetable bowl image */
    height: 100px;
    border-radius: 8px; /* Optional: Add rounded corners */
}

/* Contact Header Styles */
.contact-header {
    background-color: #343a40;
    padding: 10px 20px;
    text-align: center;
}

.contact-header a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}
.contact-header a:hover {
    text-decoration: underline;
}

/* Logo Section */
.logo-section {
    position: relative;
    width: 100%;
    height: 50vh; /* Full viewport height */
    background-image: url('icons/Barley-Salad-Bowl-1108x1536.jpg'); /* Background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Text color */
    text-align: center;
}

.logo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the content */
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px; /* Rounded corners */
}

.logo-content h1 {
    font-size: 3rem; /* Adjust font size as needed */
    margin-bottom: 10px;
}

.logo-content p {
    font-size: 1.5rem; /* Adjust font size as needed */
    line-height: 1.6;
}


/* CSS Styling blog section*/
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog-card {
    width: 30%;
    margin: 15px 0;
    border: 1px solid #ccc;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.blog-card img {
    width: 100%;
    height: auto;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
    margin: 5% auto;
    padding: 20px;
    background-color: #fff;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
}
.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    cursor: pointer;
}
/* Additional styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
h2 {
    margin-top: 0;
}
@media (max-width: 768px) {
    .blog-card {
        width: 100%; /* Full width for mobile screens */
    }
}


/* Introduction Section */
.introduction {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    flex-wrap: wrap;
}

.intro-img {
    max-width: 50%;
    height: auto;
    margin-right: 20px;
}

.intro-text {
    max-width: 50%;
}

.intro-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Success Stories Section */
.Successstories {
    padding: 2rem;
    text-align: center;
}

.Successstories .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Increased min size */
    gap: 25px; /* Increased gap for spacing */
    padding: 1.5rem;
}

.Successstories .box img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.Successstories .box {
    padding: 2.5rem; /* Increased padding for larger content */
    background: #fff;
    border-radius: 0.5rem;
    text-align: center;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.Successstories .box:hover {
    box-shadow: 1px 1px 10px 4px var(--green);
}

/* Responsive Design */ 
@media (max-width: 768px) {
    .intro-img, .intro-text {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    .navbar-nav {
        display: none; /* Hide navbar links initially */
        flex-direction: column; /* Stack links vertically */
        background-color: #fff; /* Optionally, give it a background */
        width: 100%; /* Ensure it takes up the whole screen */
    }


    .introduction {
        flex-direction: column;
    }

    .navbar-nav .nav-item {
        margin: 0;
        text-align: center;
    }

    .navbar-brand img {
        max-height: 50px;
    }
}
.chatbot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .chatbot-link img {
    width: 32px;
    height: 32px;
    margin-left: 5px;
    transition: transform 0.2s ease;
  }

  .chatbot-link:hover {
    opacity: 0.9;
    transform: scale(1.03);
  }

  /* 📱 On mobile — stack neatly and shrink a bit */
  @media (max-width: 768px) {
    .chatbot-link {
      font-size: 16px;
      gap: 6px;
    }

    .chatbot-link img {
      width: 24px;
      height: 24px;
      margin-left: 4px;
    }
  }

@media (max-width: 480px) {
    .contact-header a {
        display: block;
        margin: 10px 0;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .mobile-menu-toggle {
        display: block; /* Display hamburger icon */
        cursor: pointer;
        padding: 10px;
        background-color: #007bff;
        color: white;
    }
    
    .navbar-nav.active {
        display: flex; /* Show navbar links when menu is active */
    }

    .Successstories .wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for smaller screens */
        gap: 20px;
    }

    .Successstories .box {
        padding: 2rem; /* Adjusted padding for smaller screens */
    }
}

/* Achievement Section */
.Achievements {
    padding: 2rem;
    text-align: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.achievement-item {
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: .5rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item img {
    width: 200%;
    height: auto;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.achievement-item:hover {
    transform: scale(1.05);
    box-shadow: 1px 1px 15px 5px var(--green);
}

/* Main Title Section */
.main-title-section-wrapper {
    position: relative;
    padding: 40px 0;
    text-align: center;
}

.main-title-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('f.avif'); /* Add your background image URL here */
    background-position: left center;
    background-size: cover; /* Use cover to ensure the image covers the entire container */
    background-repeat: repeat; /* Repeat the image if it doesn't cover the whole container */
    background-attachment: scroll; /* Scroll with the page */
    z-index: -1; /* Ensure the background stays behind other content */
}

/* Social Media Buttons */
.social-btns {
    height: var(--btn-size);
    margin: 20px auto;
    font-size: 0;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #fff;
    width: var(--btn-size);
    height: var(--btn-size);
    line-height: var(--btn-size);
    margin: 0 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    transition: all .35s;
    cursor: pointer;
}

.btn img {
    width: 50%; /* Adjust size as needed */
    height: 50%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.facebook {
    background-color: #3B5998;
}

.whatsapp {
    background-color: #25D366;
}

.linkedin {
    background-color: #0077B5;
}
.instagram {
    background-color: #d89dcb;
}
.youtube {
    background-color: #93233d;
}

/* Style for the dropdown */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-btn {
    padding: 10px;
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive text */
h1, h2, h3, p {
    margin: 20px 0;
    padding: 0 10px;
}

/* Background section responsive */
.background-section {
    background-size: cover;
    background-position: center;
    padding: 30px 15px;
    color: white;
    text-align: center;
}

/* Content section */
.content-section {
    padding: 20px 15px;
}

/* Make lists look good on small screens */
ul {
    padding: 0;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Responsive container */
.container {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
}

/* Sign-up box responsiveness */
.signup-box {
    background: #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.signup-box h3 {
    font-size: 1.5rem;
}

.signup-box p {
    font-size: 1rem;
}

/* Button responsiveness */
.signup-box a.signup-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Mobile first approach */
@media (max-width: 768px) {
    .background-section {
        padding: 20px 10px;
        font-size: 0.9rem;
    }

    .content-section {
        padding: 20px 10px;
    }

    .signup-box h3 {
        font-size: 1.3rem;
    }

    .signup-box p {
        font-size: 0.9rem;
    }

    .signup-box a.signup-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .background-section {
        font-size: 0.8rem;
    }

    .signup-box h3 {
        font-size: 1.2rem;
    }

    .signup-box a.signup-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

/* Footer Styling */
footer {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 30px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff9800; /* Highlight color */
}

.footer-copyright {
    margin-top: 15px;
    font-size: 14px;
}

footer p {
    margin: 5px 0;
}

/* Footer Styling */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.site-footer .footer_inner_wrapper {
    padding: 30px;
}

.site-footer h3.widget-title {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.site-footer .textwidget {
    color: #bfbfbf;
    line-height: 1.8;
}

.site-footer a {
    color: #f1c40f;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footerlogo img {
    max-width: 200px;
}

.kwayy-social-links-wrapper {
    margin-top: 10px;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons li a:hover {
    color: #f1c40f;
}

.footer-whatsapp a {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-whatsapp a i {
    margin-right: 10px;
}

.footer-timing {
    font-size: 16px;
}

.footer-timing i {
    color: #f1c40f;
    margin-right: 8px;
}

.footer-timing span {
    font-weight: bold;
    color: #bfbfbf;
}

.bottom-footer-text {
    background-color: #222;
    padding: 20px 0;
}

.bottom-footer-inner {
    text-align: center;
    color: #bfbfbf;
}

.bottom-footer-inner .footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 15px;
}

.footer-nav-menu li {
    display: inline-block;
}

.footer-nav-menu li a {
    color: #bfbfbf;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-nav-menu li a:hover {
    color: #fff;
}

.tm-footer2-left {
    text-align: left;
}

.tm-footer2-right {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .tm-footer2-left,
    .tm-footer2-right {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap; /* Ensures social icons don't overflow */
    }

    /* Make columns stack vertically on small screens */
    .footer_inner_wrapper .row {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust column padding and width for smaller screens */
    .footer_inner_wrapper .col-xs-12, 
    .footer_inner_wrapper .col-sm-4 {
        flex-basis: 100%;
        padding: 15px 10px;
        max-width: 100%; /* Ensures columns fit within screen width */
    }
}

@media screen and (max-width: 480px) {
    /* Further adjustments for very small screens */
    .footerlogo img {
        max-width: 150px; /* Reduce logo size on smaller screens */
    }

    .social-icons li a {
        font-size: 20px; /* Adjust icon size for small screens */
    }

    .site-footer h3.widget-title {
        font-size: 1.25rem; /* Reduce font size for titles */
    }

    .footer-whatsapp a {
        font-size: 16px;
    }

    .footer-timing {
        font-size: 14px;
    }
}

/* //changes recent*/
.text-overlay {
  max-width: 800px;
}

.text-overlay h1 {
  font-size: 4rem;
  margin: 0 0 8px 0;
}

.text-overlay p {
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 600px) {
  .logo-section {
    padding: 12px 0;
  }
  .logo-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-overlay {
    max-width: 100%;
  }
  .text-overlay h1 {
    font-size: 1.2rem;
  }
  .text-overlay p {
    font-size: 0.95rem;
  }
  .logo-content .navbar-brand {
    min-width: 400px;
    min-height: 400px;
  }
}