/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Bootstrap 5.3.2 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Font Awesome 6.5.0 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');


/* 1. GLOBAL VARIABLES & RESET */
:root {
    --primary-color: #6c5070;
    --secondary-color: #df6a6a;
    --accent-color: #e8f3e8;
    /* Lighter accent for backgrounds */
    --bg-light: #fdfdfd;
    --text-dark: #2d3436;
    --text-grey: #636e72;
    --card-shadow: 0 15px 35px rgba(108, 80, 112, 0.08);
    --hover-shadow: 0 20px 40px rgba(108, 80, 112, 0.15);
}

/* utility classes */
.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-secondary-color {
    background-color: var(--secondary-color) !important;
}

.bg-accent-color {
    background-color: var(--accent-color) !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* 2. NAVBAR - Modernized */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    padding: 0 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.active-menu::after {
    width: 25px;
}

.nav-link:hover,
.active-menu {
    color: var(--primary-color) !important;
}

/* 4. HERO SECTION - Modernized */
.hero-section {
    background: linear-gradient(135deg, rgba(108, 80, 112, 0.95), rgba(45, 34, 46, 0.85)), url('https://images.unsplash.com/photo-1551232864-3f0890e580d9?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-slogan {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* 5. GENERIC CONTENT BOXES */
.content-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--card-shadow);
}

/* 6. FEATURE CARDS */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: none;
    text-align: center;
    height: 100%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    /* Changed to secondary for pop */
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* 8. SECTIONS & LISTS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 50px;
}

/* 9. STATS SECTION */
.stats-section {
    background: linear-gradient(to right, #f8faf9, #fff, #f8faf9);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

/* 10. FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Grid Layout Styles (VEG CARD -> Category Card) */
.veg-card {
    transition: all 0.4s ease;
    border: none;
    background: #fff;
    border-radius: 24px;
    height: 100%;
    padding-bottom: 25px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.veg-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
}

.veg-icon {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s ease;
}

.veg-card:hover .veg-icon {
    transform: scale(1.03);
}

.veg-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.inquire-btn-card {
    display: inline-block;
    width: 80%;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.inquire-btn-card:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 80, 112, 0.3);
}

/* Footer Styling */
footer {
    background-color: #2d3436;
    color: #dfe6e9;
}

footer h6 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* --- Add this to your existing style.css file --- */

/* Modern Client/Contact Card Styling */
.client-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle border */
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lifts up and glows */
.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

/* Icon Styling inside the card */
.client-card .icon-wrapper {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    background: var(--primary-color);
    /* Purple background for icon */
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(108, 80, 112, 0.3);
}

/* Map Frame Styling */
.map-frame {
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Add this to your existing style.css file --- */

/* Blog Page Specific Styling */

/* Image Wrapper for Blog Cards */
.blog-img-wrapper {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect on Image */
.client-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Card Title Hover Color */
.client-card:hover .card-title {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Pagination Styling */
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.page-link:focus {
    box-shadow: none;
}

/* --- Add this to your style.css --- */

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    border-radius: 16px;
    /* Rounded corners */
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    margin-top: 15px;
    /* Space between nav and menu */
    min-width: 260px;
    /* Wider menu for longer text */
}

/* Individual Items */
.dropdown-item {
    padding: 10px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:active {
    background-color: var(--primary-color);
    color: white;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
:not(.btn-check)+.btn:active {
    color: var(--primary-color);
    background: white;
    border-color: var(--primary-color);
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Bootstrap 5.3.2 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Font Awesome 6.5.0 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');


/* 1. GLOBAL VARIABLES & RESET */
:root {
    --primary-color: #6c5070;
    --secondary-color: #df6a6a;
    --accent-color: #e8f3e8;
    /* Lighter accent for backgrounds */
    --bg-light: #fdfdfd;
    --text-dark: #2d3436;
    --text-grey: #636e72;
    --card-shadow: 0 15px 35px rgba(108, 80, 112, 0.08);
    --hover-shadow: 0 20px 40px rgba(108, 80, 112, 0.15);
}

/* utility classes */
.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-secondary-color {
    background-color: var(--secondary-color) !important;
}

.bg-accent-color {
    background-color: var(--accent-color) !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* 2. NAVBAR - Modernized */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    padding: 0 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.active-menu::after {
    width: 25px;
}

.nav-link:hover,
.active-menu {
    color: var(--primary-color) !important;
}

/* 4. HERO SECTION - Modernized */
.hero-section {
    background: linear-gradient(135deg, rgba(108, 80, 112, 0.95), rgba(45, 34, 46, 0.85)), url('https://images.unsplash.com/photo-1551232864-3f0890e580d9?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-slogan {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* 5. GENERIC CONTENT BOXES */
.content-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--card-shadow);
}

/* 6. FEATURE CARDS */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: none;
    text-align: center;
    height: 100%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    /* Changed to secondary for pop */
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* 8. SECTIONS & LISTS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 50px;
}

/* 9. STATS SECTION */
.stats-section {
    background: linear-gradient(to right, #f8faf9, #fff, #f8faf9);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

/* 10. FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Grid Layout Styles (VEG CARD -> Category Card) */
.veg-card {
    transition: all 0.4s ease;
    border: none;
    background: #fff;
    border-radius: 24px;
    height: 100%;
    padding-bottom: 25px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.veg-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
}

.veg-icon {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s ease;
}

.veg-card:hover .veg-icon {
    transform: scale(1.03);
}

.veg-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.inquire-btn-card {
    display: inline-block;
    width: 80%;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.inquire-btn-card:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 80, 112, 0.3);
}

/* Footer Styling */
footer {
    background-color: #2d3436;
    color: #dfe6e9;
}

footer h6 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* --- Add this to your existing style.css file --- */

/* Modern Client/Contact Card Styling */
.client-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle border */
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lifts up and glows */
.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

/* Icon Styling inside the card */
.client-card .icon-wrapper {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    background: var(--primary-color);
    /* Purple background for icon */
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(108, 80, 112, 0.3);
}

/* Map Frame Styling */
.map-frame {
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Add this to your existing style.css file --- */

/* Blog Page Specific Styling */

/* Image Wrapper for Blog Cards */
.blog-img-wrapper {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect on Image */
.client-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Card Title Hover Color */
.client-card:hover .card-title {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Pagination Styling */
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.page-link:focus {
    box-shadow: none;
}

/* --- Add this to your style.css --- */

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    border-radius: 16px;
    /* Rounded corners */
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    margin-top: 15px;
    /* Space between nav and menu */
    min-width: 260px;
    /* Wider menu for longer text */
}

/* Individual Items */
.dropdown-item {
    padding: 10px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:active {
    background-color: var(--primary-color);
    color: white;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
:not(.btn-check)+.btn:active {
    color: var(--primary-color);
    background: white;
    border-color: var(--primary-color);
}

.order-faq-section {
    background-color: #f5f5f5;
}

.accordion-button {
    box-shadow: none !important;
    border-top: 1px solid #ddd;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    border: 0;
}

.accordion-button:not(.collapsed){
    background-color: var(--accent-color);
    box-shadow: none;
    border: 0;
}
/* Responsive */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-toggle::after {
        content: none;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        margin: 15px 0;
    }

    .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px dotted #6c5070;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav {
        border: 1px dotted #6c5070;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 800px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 30px 0;
        border-radius: 0 0 10px 10px;
        margin-bottom: 0;
    }

    .veg-icon {
        height: 160px;
        border-radius: 8px;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 25px !important;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .stats-section {
        margin-top: 0;
        padding: 30px 0;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .veg-name {
        font-size: 1rem;
    }

    .veg-card {
        padding: 0.5rem !important;
        border-radius: 10px;
    }

    .inquire-btn-card {
        width: 100%;
        padding: 10px !important;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .my-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .logo {
        height: 40px !important;
    }
}

/* Responsive */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-toggle::after {
        content: none;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        margin: 15px 0;
    }

    .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px dotted #6c5070;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav {
        border: 1px dotted #6c5070;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 800px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 30px 0;
        border-radius: 0 0 10px 10px;
        margin-bottom: 0;
    }

    .veg-icon {
        height: 160px;
        border-radius: 8px;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 25px !important;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .stats-section {
        margin-top: 0;
        padding: 30px 0;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .veg-name {
        font-size: 1rem;
    }

    .veg-card {
        padding: 0.5rem !important;
        border-radius: 10px;
    }

    .inquire-btn-card {
        width: 100%;
        padding: 10px !important;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .my-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .logo {
        height: 40px !important;
    }
}