/* General Theme Styles */
    body {
        background-color: #FFFFFF;
        color: #1A1A1A;
        font-family: 'Times New Roman', serif;
        font-size: 1.1rem;
        line-height: 1.8;
        letter-spacing: 0.02rem;
        margin: 0;
        padding: 0;
    }

    h1, h2, h3 {
        color: #1A1A1A;
        font-family: 'Georgia', serif;
        font-size: 2.8rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateX(-20px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }

    header, .slider_section, .about, .vegetable, .clients, .contact, .footer {
        animation: fadeIn 1s ease-in-out;
    }

    .carousel-item {
        animation: slideIn 0.5s ease-in-out;
    }

    /* Header and Main Menu */
    .header-top {
        background-color: #E0F2E9;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: padding 0.3s ease;
    }

    .header-top.shrink {
        padding: 0.5rem 0;
    }

    .menu-area {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .main-menu ul.menu-area-main {
        background-color: #E0F2E9;
        display: flex;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        list-style: none;
        transition: all 0.3s ease;
    }

    .main-menu ul.menu-area-main li {
        position: relative;
    }

    .main-menu a {
        color: #1A1A1A;
        padding: 0.75rem 1.5rem;
        font-size: 1.3rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 8px;
        display: block;
    }

    .main-menu a:hover {
        background-color: #1A1A1A;
        color: #FFFFFF;
        transform: scale(1.05);
    }

    .main-menu ul.menu-area-main li:hover > a {
        background-color: #1A1A1A;
        color: #FFFFFF;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: none;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #1A1A1A;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    /* Responsive Main Menu */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        .main-menu ul.menu-area-main {
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #E0F2E9;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .main-menu.open ul.menu-area-main {
            max-height: 400px;
        }

        .main-menu a {
            padding: 1rem;
            font-size: 1.2rem;
            text-align: center;
            width: 100%;
        }

        .menu-area {
            justify-content: space-between;
        }
    }

    @media (min-width: 769px) {
        .main-menu ul.menu-area-main {
            max-height: none;
        }

        .main-menu.open ul.menu-area-main {
            max-height: none;
        }
    }

    /* Slider Section */
    .slider_section {
        background-color: #FFFFFF;
        padding: 3rem 0;
    }

    .carousel-caption {
        color: #1A1A1A;
    }

    .text-bg span {
        color: #1A1A1A;
        font-weight: bold;
        font-size: 1.3rem;
    }

    .text-bg h1 {
        color: #1A1A1A;
        font-size: 3.2rem;
    }

    .text-bg p {
        background-color: #E0F2E9;
        color: #1A1A1A;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 10px 5px 5px rgba(0, 100, 0, 0.1);
        font-size: 1.2rem;
    }

    .text-bg a {
        background-color: #1A1A1A;
        color: #FFFFFF;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        margin: 0.5rem;
        display: inline-block;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .text-bg a:hover {
        background: linear-gradient(45deg, #1A1A1A, #333333);
        transform: scale(1.05);
    }

    .Vegetable_fom {
        border: 1px solid #1A1A1A;
        border-radius: 8px;
        color: #1A1A1A;
        padding: 0.75rem;
        font-size: 1.1rem;
        transition: border-color 0.3s ease;
    }

    .Vegetable_fom:hover, .Vegetable_fom:focus {
        border-color: #1A1A1A;
    }

    .Vegetable_fom::placeholder {
        color: #2A2A2A;
    }

    .Search_btn {
        background-color: #1A1A1A;
        color: #FFFFFF;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .Search_btn:hover {
        background: linear-gradient(45deg, #1A1A1A, #333333);
        transform: scale(1.05);
    }

    /* About Us Section (Tweaked) */
    .about {
        background: linear-gradient(to bottom, #FFFFFF 0%, #F8F9FA 100%); /* Subtle gradient */
        padding: 6rem 0; /* Grand padding */
        position: relative;
        overflow: hidden;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        border-top: 4px solid #1A1A1A; /* Classic top border */
        border-bottom: 4px solid #1A1A1A; /* Classic bottom border */
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 3rem;
    }

    .about-box {
        text-align: center; /* Centered for elegance */
    }

    .about-box h2 {
        color: #1A1A1A;
        font-size: 3.2rem; /* Larger for grandeur */
        font-weight: 700;
        margin-bottom: 2rem;
        text-transform: uppercase; /* Classic touch */
        letter-spacing: 0.1rem;
        position: relative;
    }

    .about-box h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: #1A1A1A; /* Elegant underline */
    }

    .about-box p {
        color: #1A1A1A;
        font-size: 1.5rem; /* Larger for readability */
        line-height: 1.7;
        margin-bottom: 2rem;
        text-align: justify;
        padding: 0 1rem;
    }

    .about-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        font-size: 1.4rem;
        color: #1A1A1A;
        line-height: 1.6;
        text-align: justify;
        padding: 0 1rem;
    }

    .about-details.expanded {
        max-height: 500px; /* Adjust based on content */
        padding-bottom: 1.5rem;
    }

    .about-box a.read-more {
        display: inline-block;
        color: #1A1A1A;
        font-size: 1.3rem;
        font-weight: 600;
        text-decoration: none;
        padding: 0.8rem 2rem;
        border: 2px solid #1A1A1A;
        border-radius: 10px;
        background: linear-gradient(to right, transparent 50%, #1A1A1A 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 0.3s ease;
    }

    .about-box a.read-more:hover {
        background-position: left bottom;
        color: #FFFFFF;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .about-box_img {
        padding: 0;
        text-align: center;
        position: relative;
    }

    .about-box_img img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        border: 3px solid #1A1A1A; /* Classic frame */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .about-box_img:hover img {
        transform: scale(1.05);
    }

    /* Responsive About Us */
    @media (max-width: 768px) {
        .about {
            padding: 4rem 0;
        }

        .about-container {
            padding: 2rem;
        }

        .about-box h2 {
            font-size: 2.5rem;
        }

        .about-box p, .about-details {
            font-size: 1.3rem;
        }

        .about-box a.read-more {
            font-size: 1.2rem;
            padding: 0.7rem 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .about .row {
            flex-direction: column;
        }

        .about-box {
            margin-bottom: 2rem;
        }

        .about-box p, .about-details {
            text-align: center;
            padding: 0;
        }

        .about-box_img {
            margin-top: 2rem;
        }
    }

    /* Other Business Section */
    .vegetable {
        background-color: #E0F2E9;
        padding: 4rem 0;
    }

    .titlepage h2 {
        color: #1A1A1A;
        font-size: 3rem;
        font-weight: bold;
        border-bottom: 3px solid #1A1A1A;
        display: inline-block;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .llow {
        color: #1A1A1A;
    }

    .vegetable_shop {
        padding: 3rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.95);
        transition: transform 0.3s ease;
    }

    .vegetable_shop:hover {
        transform: translateY(-5px);
    }

    .vegetable_shop h3 {
        color: #1A1A1A;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .vegetable_shop p {
        color: #1A1A1A;
        font-size: 1.3rem;
    }

    .vegetable_img {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .vegetable_img:hover {
        transform: scale(1.05);
    }

    .vegetable_img figure {
        margin: 0;
    }

    .vegetable_img img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .vegetable_img:hover img {
        transform: scale(1.1);
    }

    /* Responsive Other Business */
    @media (max-width: 768px) {
        .vegetable_shop {
            padding: 2rem;
        }

        .vegetable_shop h3 {
            font-size: 1.8rem;
        }

        .vegetable_shop p {
            font-size: 1.1rem;
        }

        .titlepage h2 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .vegetable .row {
            flex-direction: column;
            text-align: center;
        }

        .vegetable_shop {
            margin-bottom: 2rem;
        }

        .vegetable_img {
            margin: 0 auto 2rem;
        }
    }

    /* Testimonial Section */
    .clients {
        background-color: #FFFFFF;
        padding: 4rem 0;
        text-align: center;
    }

    .clients .titlepage h2 {
        color: #1A1A1A;
        font-size: 3rem;
        font-weight: bold;
        border-bottom: 3px solid #1A1A1A;
        display: inline-block;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
    }

    .clients_red {
        background-color: rgba(224, 242, 233, 0.8);
        padding: 3rem 0;
        border-top: 1px solid rgba(26, 26, 26, 0.2);
        border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    }

    .testomonial_section {
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
        background-color: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        animation: fadeIn 0.8s ease-in-out;
    }

    .testimonial_cont {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testomonial_img {
        margin-right: 2rem;
    }

    .testomonial_img figure {
        margin: 0;
    }

    .testomonial_img img {
        border-radius: 10px;
    }

    .cross_inner {
        text-align: left;
        padding: 1rem;
    }

    .cross_inner h3 {
        color: #1A1A1A;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cross_inner .ornage_color {
        color: #1A1A1A;
        font-size: 1.4rem;
        font-style: italic;
    }

    .cross_inner p {
        color: #1A1A1A;
        font-size: 1.3rem;
        line-height: 1.6;
        margin-top: 1rem;
    }

    /* Contact Section */
    .contact {
        background-color: #FFFFFF;
        padding: 4rem 0;
    }

    .contact_bg {
        padding: 2.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .contactus, .textarea {
        border: 1px solid #1A1A1A;
        border-radius: 8px;
        color: #1A1A1A;
        padding: 0.75rem;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        transition: border-color 0.3s ease;
    }

    .contactus:hover, .contactus:focus, .textarea:hover, .textarea:focus {
        border-color: #1A1A1A;
    }

    .contactus::placeholder, .textarea::placeholder {
        color: #2A2A2A;
    }

    .send {
        background-color: #1A1A1A;
        color: #FFFFFF;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 2rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .send:hover {
        background: linear-gradient(45deg, #1A1A1A, #333333);
        transform: scale(1.05);
    }

    /* Footer */
    .footer {
        background-color: #E0F2E9;
        padding: 4rem 0;
    }

    .address-section {
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.3);
        text-align: left;
        border: 1px solid rgba(26, 26, 26, 0.1);
    }

    .address-section h3 {
        color: #1A1A1A;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #1A1A1A;
        padding-bottom: 0.5rem;
    }

    .address-section .loca {
        list-style: none;
        padding: 0;
    }

    .address-section .loca li {
        color: #1A1A1A;
        font-size: 1.2rem;
        line-height: 2;
        margin-bottom: 1rem;
    }

    .address-section .loca a {
        color: #1A1A1A;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

    .address-section .loca a:hover {
        color: #FFFFFF;
        background-color: #1A1A1A;
        padding: 0.3rem 0.8rem;
        border-radius: 6px;
        transform: scale(1.05);
    }

    .business-links-section {
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.3);
        text-align: left;
        border: 1px solid rgba(26, 26, 26, 0.1);
    }

    .business-links-section h3 {
        color: #1A1A1A;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #1A1A1A;
        padding-bottom: 0.5rem;
    }

    .business-links-section .Menu_footer {
        list-style: none;
        padding: 0;
    }

    .business-links-section .Menu_footer li {
        color: #1A1A1A;
        font-size: 1.2rem;
        line-height: 2;
        margin-bottom: 1rem;
    }

    .business-links-section .Menu_footer a {
        color: #1A1A1A;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .business-links-section .Menu_footer a:hover {
        color: #FFFFFF;
        background-color: #1A1A1A;
        padding: 0.3rem 0.8rem;
        border-radius: 6px;
        transform: scale(1.05);
    }

    .newsletter-section {
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.3);
    }

    .newsletter-section h3 {
        color: #1A1A1A;
        font-size: 2rem;
    }

    .newslatter {
        border: 1px solid #1A1A1A;
        border-radius: 8px;
        color: #1A1A1A;
        padding: 0.75rem;
        font-size: 1.1rem;
        transition: border-color 0.3s ease;
    }

    .newslatter:hover, .newslatter:focus {
        border-color: #1A1A1A;
    }

    .newslatter::placeholder {
        color: #2A2A2A;
    }

    .submit {
        background-color: #1A1A1A;
        color: #FFFFFF;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 2rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .submit:hover {
        background: linear-gradient(45deg, #1A1A1A, #333333);
        transform: scale(1.05);
    }

    .copyright p a {
        color: #1A1A1A;
        transition: all 0.3s ease;
    }

    .copyright p a:hover {
        color: #FFFFFF;
        background-color: #1A1A1A;
        padding: 0.25rem 0.75rem;
        border-radius: 8px;
        transform: scale(1.05);
    }

    /* Tooltip Styling */
    .tooltip {
        position: absolute;
        background-color: #1A1A1A;
        color: #FFFFFF;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        font-size: 0.9rem;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .copy-text:hover .tooltip {
        opacity: 1;
    }