* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box; /* Add this for better layout control */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    z-index: 100000;
}

.header-link {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Ensures the text color is inherited from #companyName or header */
    display: flex; /* Apply flexbox to the link itself to manage logo/name layout */
    align-items: center; /* Vertically align items within the link */
    gap: 20px; /* Keep the gap between logo and company name */
}

#head {
    background-color: #ED9455;
    padding: 15px 5%; /* Add some padding to the header */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align items */
    gap: 20px; /* Space between logo and company name */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

#logo {
    width: 5lh; /* Set a specific width for the logo */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves like a block element within flex */
}



#companyName {
    font-size: 2.5em; /* Adjusted font size for better visual balance */
    color: #fff; /* Changed to white for better contrast with orange background */
    margin: 0; /* Remove default margins */
    flex-grow: 1; /* Allow company name to take available space */
    white-space: nowrap; /* Prevent company name from wrapping initially */
    overflow: hidden; /* Hide overflow if it's too long */
    text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}

#navbar {
    background-color: #FFBB70;
    padding: 8px 8%; /* Adjust padding for the navbar */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); Optional: add a subtle shadow */
    border-radius: 15px;
    min-width: 50
    
}

/* --- Hamburger Menu Button Styles (NEW) --- */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative; /* For z-index to be effective */
    z-index: 1001; /* Ensure it's above other content when active */
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white; /* Color of the bars */
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* Animation for the hamburger to close (X) icon when active */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0; /* Middle bar disappears */
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); /* Top bar rotates and moves */
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); /* Bottom bar rotates and moves */
}


nav#navbar ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
        }

        nav#navbar ul li button {
            background-color: transparent;
            border: none;
            color: rgb(0, 0, 0);
            text-align: center;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            padding: 10px 0;
            position: relative; /* Added for ::after pseudo-element */
            transition: color 0.3s ease;
        }

        nav#navbar ul li button::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-color: #ED9455;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        nav#navbar ul li button:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        nav#navbar ul li button:hover {
            color: #f0f0f0;
        }

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox for horizontal menu */
    justify-content: flex-start; /* Align items to the start */
    align-items: center;
    flex-wrap: wrap; /* Allow menu items to wrap on smaller screens */
    gap: 15px; /* Space between menu items */
}



nav ul li button {
    background-color: #FFBB70;
    border: 1px solid #FFBB70; /* Keep border color consistent */
    color: rgb(0, 0, 0);
    text-align: center;
    display: inline-flex;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 15px; /* Adjusted padding for buttons */
    border-radius: 15px;
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

nav ul li button:hover {
    background-color: #ED9455;
    border-color: #fff; /* White border on hover */
}



main {
    /* padding: 20px; */
}

.welcome-section {
   
    margin-bottom: 20px;
    border-radius: 5px;
}

.welcome-section h1 {
    color: #333;
    font-size: 3em;
    margin-bottom: 10px;
}

.welcome-section p {
    color: #666;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}


/* About Us Section Styling */
.about-us-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background for the section */
    font-family: Arial, sans-serif;
    overflow: hidden; /* To handle any overflowing elements */
}

.about-us-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

/* Left Card - Image and Branding */
.about-us-image-card {
    flex: 1;
    min-width: 350px; /* Minimum width for the card */
    background-color:rgb(239, 211, 174); /* Light green background */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* Include padding in width/height */
}

.about-us-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-us-label {
    background-color: #fff;
    color:rgb(245, 176, 50);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    margin-right: 10px;
}

.onion-icon {
    width: 40px;
    height: 40px;
}

.about-us-image-card h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-us-image-card .quality-text {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.product-bowls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-bowls img {
    width: 120px; /* Size of the bowls */
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.spices img {
    width: 120px; /* Size of the bowls */
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



/* Right Card - Content */
.about-us-content-card {
    flex: 2;
    min-width: 400px; /* Minimum width for the content card */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box; /* Include padding in width/height */
}

.about-us-content-header {
    margin-bottom: 20px;
}

.about-us-label.green-label {
    background-color:rgb(239, 211, 174); /* Lighter green for content header */
    color:rgb(2, 2, 2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.about-us-content-card h1 {
    font-size: 2.8em;
    color: #333;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background-color:rgb(238, 165, 17);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-us-content-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-us-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.read-more-btn {
    background-color: rgb(239, 211, 174); /* Light grey background */
    color: black; /* Dark text for contrast */
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}


/* Responsive Adjustments */
@media (max-width: 900px) {
    .about-us-container {
        flex-direction: column;
        border-radius: 0; /* No rounded corners if stacked */
        box-shadow: none; /* No shadow if stacked */
    }

    .about-us-image-card,
    .about-us-content-card {
        min-width: unset; /* Remove min-width on small screens */
        width: 100%;
        padding: 40px 20px; /* Adjust padding */
    }

    .about-us-content-card h1 {
        font-size: 2.2em; /* Adjust font size for smaller screens */
    }

}

@media (max-width: 600px) {
    .about-us-section {
        padding: 30px 10px;
    }

    .about-us-image-card {
        padding: 30px 15px;
    }

    .about-us-content-card {
        padding: 30px 15px;
    }

    .about-us-image-card h2 {
        font-size: 1.8em;
    }

    .about-us-content-card h1 {
        font-size: 1.8em;
    }

    .product-bowls img {
        width: 80px;
        height: 80px;
    }

    .spices img {
        max-width: 250px;
    }

    .read-more-btn {
        padding: 12px 20px;
        font-size:0.9em;
    }

    .about-us-actions {
        flex-direction: column; /* Stack buttons vertically on very small screens */
        gap: 10px;
    }
}

/* --- Slideshow Specific Styles --- */
.swiper-container {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    padding-bottom: 50px; /* Space for pagination */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 5px;
    box-sizing: border-box;
    height: auto;
}

.slide-image {
    width: 100%;
    max-width: 300px;
    height: 225px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.slide-description {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.slide-button {
    background-color: #FFA500;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.slide-button:hover {
    background-color: #E69500;
}

/* Swiper navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: #FFA500 !important;
}

/* Swiper pagination dots */
.swiper-pagination-bullet-active {
    background-color: #FFA500 !important;
}

/* Responsive adjustments for header and general layout */
@media (max-width: 768px) {
    #head {
        flex-direction: column; /* Stack logo and company name */
        align-items: center; /* Center them when stacked */
        text-align: center;
        padding: 10px 5%; /* Adjust padding */
    }
    .header-link {
        flex-direction: column; /* Stack logo and company name on smaller screens */
        align-items: center;
        text-align: center;
        gap: 10px; /* Adjust gap for stacked layout */
    }
    #logo {
        width: 50px; /* Smaller logo on small screens */
        margin-bottom: 10px; /* Add space below logo */
    }
    #companyName {
        font-size: 2em; /* Smaller company name on small screens */
        white-space: normal; /* Allow company name to wrap */
    }
    #navbar {
        padding: 10px 2%; /* Adjust padding for navbar */
    }
    nav ul {
        flex-direction: column; /* Stack navigation items */
        gap: 8px; /* Smaller gap */
    }
    nav ul li button {
        width: 80%; /* Make buttons wider */
        max-width: 250px; /* Limit max width */
    }
    .welcome-section h1 {
        font-size: 2.5em;
    }
    .welcome-section p {
        font-size: 1em;
    }
    .swiper-slide {
        padding: 15px;
    }
    .slide-title {
        font-size: 1.5em;
    }
    .slide-description {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #companyName {
        font-size: 1.8em; /* Even smaller on very small screens */
    }
    nav ul li button {
        font-size: 14px;
        padding: 8px 12px;
    }
    .welcome-section h1 {
        font-size: 2em;
    }
    .welcome-section p {
        font-size: 0.9em;
    }
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}


 .footer-dark {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 14px;
  color: #aaa;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ED9455;
}

.footer-social {
  text-align: center;
  margin: 30px 0;
}

.footer-social a {
  color: #ccc;
  margin: 0 10px;
  font-size: 18px;
  display: inline-block;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ED9455;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}
.popup-content p {
    margin: 0;
    font-size: 1.1em;
}
.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
}

/* Adjusting #head for better alignment on larger screens */
#head {
    background-color: #ED9455;
    padding: 15px 5%;
    display: flex;
    /* Changed from gap to space-between to push navbar to the right */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Ensure companyName and logo are still aligned */
.header-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    /* Added to prevent the link from taking full width and pushing navbar down */
    flex-shrink: 0;
}


/* Hamburger Menu Button Styles (Already good, just ensure display: block inside media query) */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* Animation for the hamburger to close (X) icon when active */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Default navbar styles (for large screens) */
nav#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal on large screens */
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

nav#navbar {
    background-color: #FFBB70;
    padding: 8px 8%;
    border-radius: 15px;
    /* Ensure it grows to take available space */
    flex-grow: 1;
    /* Align navbar to the right on larger screens, but allow it to wrap */
    display: flex;
    justify-content: flex-end;
    min-width: 50%; /* Adjusted for better flex behavior */
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #head {
        flex-direction: row; /* Keep logo and hamburger on the same row */
        justify-content: space-between; /* Space out logo and hamburger */
        align-items: center;
        padding: 10px 5%;
    }

    .header-link {
        flex-direction: row; /* Keep logo and name in a row */
        align-items: center;
        gap: 10px;
    }

    #logo {
        width: 50px; /* Adjust logo size for smaller screens */
        margin-bottom: 0; /* Remove extra margin */
    }

    #companyName {
        font-size: 1.8em; /* Adjusted for smaller screens */
        white-space: nowrap; /* Prevent wrapping initially, allow ellipsis */
        overflow: hidden;
        text-overflow: ellipsis;
        flex-grow: 0; /* Don't let it grow too much, focus on fitting */
    }

    /* Show the hamburger menu */
    .hamburger-menu {
        display: block;
    }

    /* Hide the navbar by default on small screens */
    #navbar {
        display: none !important;
        flex-direction: column; /* Stack menu items */
        position: absolute; /* Position it absolutely below the header */
        top: 80px; /* Adjust based on your header's height */
        left: 0;
        width: 100%;
        background-color: #FFBB70; /* Same as navbar background */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0 0 15px 15px; /* Round only bottom corners */
        padding: 15px 0; /* Add vertical padding */
        z-index: 1000;
        min-width: unset; /* Remove min-width for mobile */
    }

    /* When active, display the navbar */
    #navbar.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out forwards; /* Simple slide down animation */
    }

    /* Animation for the navbar to slide down */
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }


    nav#navbar ul {
        flex-direction: column; /* Stack navigation items */
        gap: 8px; /* Smaller gap */
        align-items: center; /* Center items in the column */
        width: 100%; /* Take full width of parent */
    }
    nav#navbar ul li {
        width: 100%; /* Make list items take full width */
        text-align: center; /* Center the text inside list item */
    }

    nav#navbar ul li button {
        width: 90%; /* Make buttons wider */
        max-width: 300px; /* Limit max width */
        padding: 12px 0; /* Increase padding for better touch targets */
        font-size: 1.2em; /* Larger font size for readability */
    }
}

@media (max-width: 480px) {
    #companyName {
        font-size: 1.5em; /* Even smaller on very small screens */
    }
    /* No additional changes needed for navbar unless you want further specific adjustments */
}

