/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #ffffff;
    --color-secondary: #f8f8f8;
    --color-accent: #EC7B23;
    --color-accent2: #499C47;
    --color-text: #333333;
    --color-text-light: #ffffff;
    --color-text-muted: #777777;
    --color-bg-dark: #1a1a1a;
    --color-dark: #222222;
    --color-bg-light: #f5f5f5;
    --color-bg-hero: rgba(0, 0, 0, 0.3);
    --color-border: #e5e5e5;

    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Playfair Display", serif;
    --font-script: "Dancing Script", cursive;
    --font-accent: 'Caveat', cursive;
    --font-lato: "Lato", Sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 3rem;
    --font-size-4xl: 4rem;


    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
    --border-radius: 4px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#wecaterto-services,
#conatct-info-section,
#service-include {
    scroll-margin-top: 100px !important;
    /* Adjust to your fixed header height */
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

/* Top Bar */
.topbar {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
    z-index: 100;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xs);
}

.topbar-left {
    position: relative;
    z-index: 5;
}

.topbar-left i {
    margin-right: var(--spacing-xs);
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Optional spacing between icon and link */
    z-index: 10;
    /* Bring above if anything is covering */
    position: relative;
}

.phone a {
    color: inherit;
    /* Ensures the link is visible */
    text-decoration: none;
    pointer-events: auto;
    /* Ensures it’s clickable */
}

.topbar-center {
    display: flex;
    gap: var(--spacing-lg);
    font-size: var(--font-size-xs);
}

.topbar-link {
    position: relative;
}

.topbar-link:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -10px;
}

.topbar-right {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    font-size: var(--font-size-sm);
    transition: opacity var(--transition-fast);
}

.social-icon:hover {
    opacity: 0.8;
}

/* Navigation Bar */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 18px 0px 30px 0px;
    transition: all var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-company {
    font-size: 40px;
    color: var(--color-primary);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
}

/* Optional: Add spacing if you use text with the logo */
.logo img {
    max-height: 65px;
    /* Adjust height as needed */
    width: auto;
    display: block;
    object-fit: contain;
    z-index: 100;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.logo span {
    font-size: var(--font-size-lg);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    /* Adjust as needed */

}

.company-name {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    color: #fff;
}

@media (max-width:768px) {
    .company-name {
        display: none;
    }
}

/* === Right: Nav + Button === */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-2xl);
    margin: 0;
}

.nav-item {
    position: relative;
}

/* Chevron animation */
.nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
    margin-left: 6px;
    font-size: 12px;
}

.nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-link {
    /* color: var(--color-text); */
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;

    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link i {
    font-size: 10px;
}

.btn-reservation {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-reservation:hover {
    /* background-color: var(--color-accent); */
    color: var(--color-primary);
    border: 2px solid var(--color-accent2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.mobile-toggle.active i {
    transform: rotate(90deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primary);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
}

/* Blog Dropdown */
.blog-dropdown {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    width: 220px;
}

.blog-dropdown a {
    padding: var(--spacing-sm) 0;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.blog-dropdown a:hover {
    color: var(--color-accent);
}

.price::before {
    content: '₹';
    margin-right: 3px;
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 600;
}

/* Modern Dropdown Styles */
.menu-dropdown {
    width: 800px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* consistent X */
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    z-index: 999;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-item:hover .menu-dropdown {
    transform: translateX(-50%) translateY(0);
    /* match X */
    opacity: 1;
    visibility: visible;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
}

.menu-category {
    padding: 10px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.image-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item:hover .hover-overlay {
    opacity: 1;
}

.menu-item span {
    font-weight: 500;
    font-size: 14px;
    color: #444;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(3px);
}

.service-icon {
    width: 30px;
    height: 30px;
    fill: #e74c3c;
}

.service-item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.menu-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-card {
    display: flex;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    width: 50%;
    min-height: 100px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content {
    width: 55%;
    padding: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.card-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.menu-card:hover h3 {
    color: var(--color-accent);
}

/* Pages Dropdown */
.pages-dropdown {
    width: 800px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: var(--spacing-lg);
}

.nav-item:hover .pages-dropdown {
    transform: translateX(-50%) translateY(0);
}

.pages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.pages-section {
    margin-bottom: var(--spacing-lg);
}

.pages-section h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
}

.pages-links {
    display: flex;
    gap: var(--spacing-xl);
}

.pages-column {
    flex: 1;
}

.pages-column a {
    display: block;
    padding: var(--spacing-xs) 0;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.pages-column a:hover {
    color: var(--color-accent);
}

.pages-column h4 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.pages-column p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.pages-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.pages-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pages-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.btn-light {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-text);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 500;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url("../images/hero/banner5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-primary);
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    /* padding: var(--spacing-3xl) var(--spacing-xl); */
    padding-top: 5rem;
}

.welcome-text {
    font-family: var(--font-script);
    font-size: var(--font-size-2xl);
    color: var(--color-accent);
    margin-bottom: -19px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.year-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.year {
    font-size: var(--font-size-lg);
    font-weight: 600;
    /* color: var(--color-accent); */
    color: #fff;
    font-family: var(--font-secondary);
}

/* Content Section */
.content {
    padding: var(--spacing-2xl) 0;
}

.content h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Sticky Header Styles */
#header.sticky {
    background-color: transparent;
}

#header.sticky .topbar {
    transform: translateY(-100%);
    height: 0;
    overflow: hidden;
}

#header.sticky .navbar {
    background-color: var(--color-primary);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-md);
}

#header.sticky .logo a,
#header.sticky .nav-link {
    color: var(--color-dark);
}

#header.sticky .logo a,
#header.sticky .nav-link:hover {
    color: var(--color-accent);
}

#header.sticky .btn-reservation {
    border-color: var(--color-bg-dark);
    color: var(--color-bg-dark);
}

#header.sticky .btn-reservation:hover {
    background-color: var(--color-primary);
    color: var(--color-text);
    border: 2px solid var(--color-accent2);
}

#header.sticky .mobile-toggle {
    color: var(--color-dark);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: flex-end;
        /* width: 100%; */
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-primary);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-link {
        color: var(--color-text);
        padding: var(--spacing-md) 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }

    .dropdown-menu.show {
        display: block;
        max-height: 2000px;
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .menu-dropdown {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--color-border);
    }

    .nav-item:hover .menu-dropdown {
        transform: none;
    }

    .menu-grid,
    .menu-grid2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .pages-dropdown {
        width: 100%;
        left: 0;
        transform: none;
    }

    .nav-item:hover .pages-dropdown {
        transform: none;
    }

    .pages-content {
        grid-template-columns: 1fr;
    }

    .pages-links {
        flex-direction: column;
    }

    .pages-images {
        grid-template-columns: 1fr;
    }

    .dropdown-toggle.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --font-size-4xl: 3rem;
    }

    .menu-dropdown,
    .pages-dropdown {
        width: 600px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar-left {
        display: none;
    }

    .topbar-left i {
        font-size: 18px;
    }

    .social-icon {
        font-size: 18px;
        transition: opacity var(--transition-fast);
    }

    .topbar .container {
        justify-content: space-around;
    }

    /* .navbar {
        padding: 20px 0;
    } */

    .navbar .container {
        flex-wrap: wrap;
    }

    .logo {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .menu-card {
        flex-direction: column;
    }

    .card-image {
        width: 100%;
        height: 120px;
    }

    .card-content {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .topbar-center {
        display: none;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
    }

    .welcome-text {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 110px;
    }

    .topbar-right {
        /* width: 100%; */
        justify-content: space-around;
    }

    .logo h1 {
        font-size: var(--font-size-lg);
    }

    .logo span {
        font-size: 10px;
    }

    .btn-reservation {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-xs);
        display: none;
    }

    .topbar-left {
        gap: 50px;
    }

    .topbar-right {
        gap: 70px;
    }
}

@media (max-width: 475px) {

    .hero-content {
        padding-top: 30px;
    }

    .welcome-text {

        font-size: 40px;

    }

    .hero-subtitle {
        font-size: var(--font-size-xl);

    }
}

@media (max-width: 420px) {
    .topbar-left {
        gap: 40px;
    }

    .topbar-right {
        gap: 40px;
    }
}

@media (max-width: 420px) {
    .topbar-left {
        gap: 30px;
    }

    .topbar-right {
        gap: 30px;
    }
}

[data-aos] {
    visibility: hidden;
}

[data-aos].aos-animate {
    visibility: visible;
}

/* -----------------------------------
We Cater To Section Styles
--------------------------------------- */


/* 
---------------------------
Menu home page section
--------------------------- */

/* Menu Section Styles */
.menu-home-section {
    position: relative;
    overflow: hidden;
}

/* Menu Header */
.menu-section-header {
    position: relative;
    height: 400px;
    background-image: url('../images/others//menusback.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.menu-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.menu-section-header-content {
    position: relative;
    z-index: 1;
    color: var(--color-primary);
}

.subtitle {
    font-family: var(--font-script);
    font-size: var(--font-size-2xl);
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-xs);

}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu Categories */
.menu-section-categories {
    background-color: var(--color-bg-light);
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}


/* Menu Grid */
.menu-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.menu-section-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.menu-section-item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-section-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.menu-section-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.menu-section-item-image img {
    width: 100%;
    /* height: auto; */
    display: block;
    transition: transform 0.4s ease;
}

.menu-section-item:hover .menu-section-item-image img {
    transform: scale(1.1);
}

/* Black overlay background */
.menu-section-item-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    opacity: 0;
    z-index: 2;
    /* ensure it appears above the image */
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
}

/* Show overlay on hover */
.menu-section-item:hover .menu-section-item-details {
    opacity: 1;
}

/* White inner content box */
.menu-detail-box {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;

    padding: 20px;
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 3px;
}

.menu-section-item-details h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.menu-section-item-details p {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.menu-section-item-details .price {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-accent);
}

/* View Full Menu Button */
.view-menu-container {
    text-align: center;

}

.btn-view-menu {
    margin-top: var(--spacing-md);
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}


.btn-view-menu:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-section-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .menu-header {
        height: 300px;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .category-tabs {
        gap: var(--spacing-sm);
    }

    .category-tab {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 576px) {
    .menu-section-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-header {
        height: 250px;
    }

    .subtitle {
        font-size: var(--font-size-xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 425px) {
    .menu-section-item-details h3 {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .menu-section-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .menu-section-item-details h3 {
        font-size: 17px;
    }
}

.home-contact {
    position: relative;
    background-image: url('../images/others/contactback3.jpg');
    /* use your image path */
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.home-contact-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    /* dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-logo {
    text-align: center;
    /* margin-bottom: 20px; */
}

.hero-logo img {
    max-width: 280px;
    /* Adjust as needed */
    height: auto;
    display: inline-block;
}

.home-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.crowned-word {
    position: relative;
    display: inline-block;
}

.crown-icon {
    position: absolute;
    top: 13px;
    left: 118px;
    font-size: 30px;
    color: var(--color-accent);
}

.home-contact-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.home-contact-btn:hover {
    background: var(--color-primary);
    color: #000;
}

.home-contact-phone {
    font-size: var(--font-size-lg);
    margin: 0;
}

.about-section {
    padding: 40px 20px;
    text-align: center;
    background: var(--color-primary);
    font-family: var(--font-primary);
}

.main-about-subtitle {
    font-family: var(--font-script);
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
    margin-bottom: 0;
}

.about-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #000;
    margin: 0px 0 20px;
}

.bold {
    font-weight: 600;
}

.about-divider {
    margin: 3px 0;
}

.about-icon {
    font-size: 20px;
    color: #bbb;
}

.about-description {
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    font-size: var(--font-size-md);
    line-height: 1.7;
}

.about-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    margin-top: 40px;
    color: #000;
}

@media (max-width:375px) {
    .about-description {
        text-align: justify;
    }

    /* .container{
        padding: 1rem;
    } */
}

/* 
-----------------------
main course home section styles

------------------------ */
/* Main Course Section Styles */
.main-course {
    padding: 40px 0px;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.main-course-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
}

/* Decorative Elements */
.main-course-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    z-index: 1;
}

.main-course-decoration-top-left {
    top: -20px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M11 5H5v6h6V5zm2 0v6h6V5h-6zm0 8H5v6h8v-6zm2 0v6h6v-6h-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-course-decoration-top-right {
    top: -20px;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-course-decoration-bottom-left {
    bottom: -20px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-course-decoration-bottom-right {
    bottom: -20px;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Menu Card */
.main-course-card {
    position: relative;
    z-index: 2;

    border-radius: 12px;

    padding: var(--spacing-2xl) var(--spacing-xl);


    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.main-course-card::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

/* Menu Header */
.main-course-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.main-course-subtitle {
    font-family: var(--font-script);
    font-size: var(--font-size-xl);
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.main-course-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.main-course-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.main-course-divider-line {
    height: 1px;
    width: 80px;
    background-color: var(--color-accent);
}

.main-course-divider-icon {
    margin: 0 var(--spacing-md);
    color: var(--color-accent);
    font-size: var(--font-size-md);
}

/* Menu Categories */
.main-course-categories {
    margin-bottom: var(--spacing-xl);
}

.main-course-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.main-course-tab {
    background: none;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.main-course-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

.main-course-tab:hover::after,
.main-course-tab.active::after {
    width: 80%;
}

.main-course-tab.active {
    color: var(--color-accent);
    font-weight: 600;
}

/* Menu Content */
.main-course-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2xl);

}

.main-course-column {
    flex: 1;
    min-width: 300px;
}

.main-course-section {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.main-course-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-accent);
    position: relative;
}

.main-course-section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
}

.main-course-badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 3px var(--spacing-sm);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-course-badge-accent {
    background-color: #e74c3c;
}

.main-course-badge-special {
    background-color: #8e44ad;
}

.main-course-badge-healthy {
    background-color: #27ae60;
}

.main-course-item {
    margin-bottom: var(--spacing-md);
    position: relative;
    transition: transform var(--transition-normal);
}

.main-course-item:hover {
    transform: translateX(5px);
}

.main-course-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-sm) 0;
}

.main-course-item-info {
    flex: 1;
    padding-right: var(--spacing-md);
}

.main-course-item-name {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 600;
}

.main-course-item-ingredients {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.main-course-item-price {
    /* font-family: var(--font-secondary); */
    font-size: var(--font-size-md);
    color: var(--color-accent);
    font-weight: 700;
    white-space: nowrap;
}

.main-course-item-dots {
    position: relative;
    height: 1px;
    background-image: repeating-linear-gradient(to right, var(--color-border) 0, var(--color-border) 3px, transparent 3px, transparent 6px);
    margin: 5px 0 var(--spacing-sm);
}

/* Menu Footer */
.main-course-footer {
    text-align: center;
    position: relative;
    padding-top: var(--spacing-lg);
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.main-course-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-course-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s;
    z-index: -1;
}

.main-course-button:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.main-course-button:hover::before {
    left: 100%;
}

.main-course-stamp {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
}

.main-course-stamp::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}

.main-course-stamp span {
    font-family: var(--font-script);
    font-size: var(--font-size-sm);
    color: var(--color-accent);
}

/* Animation for menu items */
.main-course-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delay for menu items */
.main-course-item:nth-child(1) {
    animation-delay: 0.1s;
}

.main-course-item:nth-child(2) {
    animation-delay: 0.2s;
}

.main-course-item:nth-child(3) {
    animation-delay: 0.3s;
}

.main-course-item:nth-child(4) {
    animation-delay: 0.4s;
}

.main-course-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Hover effect for menu items */
.main-course-item {
    position: relative;
    overflow: hidden;
}

.main-course-item::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s;
}

.main-course-item:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-course-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .main-course-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-course-title {
        font-size: var(--font-size-2xl);
    }

    .main-course-subtitle {
        font-size: var(--font-size-lg);
    }

    .main-course-tabs {
        gap: var(--spacing-sm);
    }

    .main-course-tab {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-sm);
    }

    .main-course-card {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .main-course-decoration {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .main-course-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .main-course-badge {
        margin-top: var(--spacing-xs);
    }

    .main-course-divider-line {
        width: 50px;
    }

    .main-course-card::before {
        display: none;
    }

    .main-course-stamp {
        display: none;
    }

    .main-course-container {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 375px) {
    .main-course-container {
        padding: 2px;
    }

}

/* We Cater To Section Styles */
.we-cater {
    position: relative;
    padding: 40px 0px 0px 0px;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.we-cater-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 40px; */

}

.we-cater-right {
    position: relative;
    padding: 0px 20px;
}

.we-cater-right-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 375px);
    gap: 15px;
    height: 450px;
    /* max-width: 500px; */
    margin: 0 auto;
}

.we-cater-img-block {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* Unique positioning for overlapping effect */
.we-cater-img-block:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transform: rotate(-2deg);
    z-index: 3;
}

.we-cater-img-block:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    transform: rotate(1deg) translateY(-10px);
    z-index: 2;
    /* height: 420px; */
}

.we-cater-img-block:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    transform: rotate(2deg) translateX(20px);
    z-index: 1;
}

.we-cater-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    border-radius: 25px;
}

.we-cater-img-block:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.we-cater-img-block:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.we-cater-img-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            transparent 100%);
    color: #fff;
    padding: 20px 15px 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 0 0 25px 25px;
    /* transform: translateY(100%); */
    transition: transform 0.4s ease;
}

.we-cater-img-block:hover .we-cater-img-text {
    transform: translateY(0);
}

/* Food Icons */
/* .we-cater-img-block::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
} */

/* .we-cater-img-block:nth-child(1)::before {
    content: '🏭';
}

.we-cater-img-block:nth-child(2)::before {
    content: '💒';
}

.we-cater-img-block:nth-child(3)::before {
    content: '🎉';
} */

.we-cater-img-block:hover::before {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
/* .we-cater-right::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.we-cater-right::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .we-cater-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .we-cater-right-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 180px);
        height: auto;
        gap: 20px;
        /* max-width: 400px; */
    }

    .we-cater-img-block:nth-child(1),
    .we-cater-img-block:nth-child(2),
    .we-cater-img-block:nth-child(3) {
        grid-column: 1;
        transform: none;
        height: 180px;
    }

    .we-cater-img-block:nth-child(1) {
        grid-row: 1;
    }

    .we-cater-img-block:nth-child(2) {
        grid-row: 2;
    }

    .we-cater-img-block:nth-child(3) {
        grid-row: 3;
    }
}

@media (max-width: 480px) {
    /* .we-cater-right-grid {
        max-width: 280px;
    } */

    .we-cater-img-text {
        font-size: 14px;
        padding: 15px 10px 10px;
    }

    .we-cater-img-block::before {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.we-cater-img-block {
    animation: fadeInUp 0.6s ease forwards;
}

.we-cater-img-block:nth-child(1) {
    animation-delay: 0.1s;
}

.we-cater-img-block:nth-child(2) {
    animation-delay: 0.2s;
}

.we-cater-img-block:nth-child(3) {
    animation-delay: 0.3s;
}

.we-cater-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Background Elements */
.we-cater-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.we-cater-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

/* Section Content */
.we-cater-content {
    position: relative;
    z-index: 2;
}

/* Section Header */
.we-cater-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.we-cater-subtitle {
    font-family: var(--font-script);
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.we-cater-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.we-cater-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.we-cater-divider-line {
    height: 1px;
    width: 80px;
    background-color: var(--color-accent);
}

.we-cater-divider-icon {
    margin: 0 var(--spacing-md);
    color: var(--color-accent);
    font-size: var(--font-size-md);
}

.we-cater-divider2 {
    display: flex;
    align-items: center;
}

.we-cater-divider-line2 {
    height: 1px;
    width: 80px;
    background-color: var(--color-accent);
}

.we-cater-divider-icon2 {
    margin: 0 var(--spacing-md);
    color: var(--color-accent);
    font-size: var(--font-size-md);
}

.we-cater-divider3 {
    display: flex;
    align-items: center;
}

.we-cater-divider-line3 {
    height: 1px;
    width: 38px;
    background-color: var(--color-accent);
}

.we-cater-divider-icon3 {
    margin: 0 var(--spacing-md);
    color: var(--color-accent);
    font-size: var(--font-size-md);
}

/* Introduction Text */
.we-cater-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

.we-cater-intro-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.we-cater-quality {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.we-cater-quality-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    color: var(--color-text);
}

.we-cater-quality-badge i {
    color: var(--color-accent);
    font-size: var(--font-size-sm);
}

.we-cater-quality-badge span {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Services Grid */
.we-cater-services {
    margin-bottom: var(--spacing-2xl);
}

/* Service Cards */
.we-cater-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 400px;
}

.we-cater-card {
    position: relative;
    color: #fff;
    /* border-radius: 12px; */
    overflow: hidden;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    background-color: transparent;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.we-cater-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.3s ease;
}

.we-cater-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: 1;
}

.we-cater-card:hover {
    transform: translateY(-10px);
}

.we-cater-card>* {
    position: relative;
    z-index: 2;
}

.industrial-card::before {
    background-image: url('../images/others/industriaqlcatering.jpg');
}

.wedding-card::before {
    background-image: url('../images/others/icatering.jpg');
}

.event-card::before {
    background-image: url('../images/others/eventcatering.jpg');
}

.we-cater-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 1px dashed var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 5;
}

.we-cater-card-icon i {
    font-size: var(--font-size-xl);
    color: var(--color-accent);
}

.we-cater-card-content {
    flex: 1;
    position: relative;
    z-index: 10;
}

.we-cater-card-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.we-cater-card-text {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.we-cater-card-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-accent);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: gap var(--transition-normal);
}

.we-cater-card-link:hover {
    gap: var(--spacing-sm);
}

.we-cater-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37' opacity='0.05'%3E%3Cpath d='M11 5H5v6h6V5zm2 0v6h6V5h-6zm0 8H5v6h8v-6zm2 0v6h6v-6h-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
}

/* Services Included */
.we-cater-included {

    border-radius: 12px;
    padding: var(0px --spacing-xl);

}

.we-cater-included-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.we-cater-included-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.we-cater-included-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.we-cater-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.we-cater-included-item {
    /* background-color: rgba(212, 175, 55, 0.05); */
    border-radius: 8px;
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px dashed var(--color-accent);
    transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.we-cater-included-item:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 175, 55, 0.1);
}

.we-cater-included-icon {
    font-size: var(--font-size-xl);
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.we-cater-included-content h4 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.we-cater-included-content p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Cuisine Types */
.we-cater-cuisines {
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.we-cater-cuisines-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-text);

    position: relative;
    display: inline-block;
}



.we-cater-cuisines-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.we-cater-cuisine-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.we-cater-cuisine-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    padding: 3px;
}

.we-cater-cuisine-icon.gold {
    position: relative;

    /* Gold border */

    /* Optional for rounded look */
    overflow: visible;
}

/* Star in the top-right corner */
.we-cater-cuisine-icon.gold::after {
    content: "★";
    position: absolute;
    top: -2px;
    right: -4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-accent);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.we-cater-cuisine-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    transition: transform var(--transition-normal);
}

.we-cater-cuisine-item:hover .we-cater-cuisine-icon img {
    transform: scale(1.1);
}

.we-cater-cuisine-item span {
    font-weight: 500;
    color: var(--color-text);
}

/* Testimonial */
.we-cater-testimonial {

    border-radius: 12px;


    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.we-cater-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.we-cater-testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.we-cater-testimonial-quote {
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: var(--spacing-md);
}

.we-cater-testimonial-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.we-cater-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.we-cater-testimonial-name {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.we-cater-testimonial-position {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* CTA */
.we-cater-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.we-cater-button {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.we-cater-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s;
    z-index: -1;
}

.we-cater-button:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.we-cater-button:hover::before {
    left: 100%;
}

.we-cater-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--color-text);
    font-weight: 500;
}

.we-cater-contact i {
    color: var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .we-cater-service-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .we-cater-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .we-cater-service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .we-cater-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .we-cater-cuisines-grid {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .we-cater-title {
        font-size: var(--font-size-2xl);
    }

    .we-cater-subtitle {
        font-size: var(--font-size-md);
    }

    .we-cater-service-cards {
        grid-template-columns: 1fr;
    }

    .we-cater-included-grid {
        grid-template-columns: 1fr;
    }

    .we-cater-testimonial-text {
        font-size: var(--font-size-md);
    }

    .we-cater-quality {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    .we-cater-cuisines-grid {
        gap: var(--spacing-md);
    }

    .we-cater-cuisine-icon {
        width: 80px;
        height: 80px;
    }

    .we-cater-divider-line {
        width: 50px;
    }

    .we-cater-button {
        padding: var(--spacing-sm) var(--spacing-xl);
        font-size: var(--font-size-sm);
    }
}

.custom-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-logo {
    width: 200px;
}

.footer-column h3,
.footer-column h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-family: var(--font-secondary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column p {
    font-family: var(--font-primary);
}

.footer-column ul li {
    margin: 5px 0;
    font-family: var(--font-primary);
}

.footer-column ul li a {

    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-primary);
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column ul li::before {
    content: "\f061";
    /* Font Awesome: fa-long-arrow-alt-right */
    /* Font Awesome chevron-right icon */
    font-family: "Font Awesome 6 Free";
    /* Font Awesome font family */
    font-weight: 900;
    color: #fff;
    margin-right: 8px;
}

.footer-socials i {
    margin-right: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-socials i:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    color: #aaa;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    font-family: var(--font-primary);
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.branch {
    padding-top: 10px;
}

.contact-item i {
    color: #ff6f3d;
    /* Mild highlight */
    margin-top: 3px;
    font-size: 16px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* servie incluide section design */
.service-include-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 40px 20px;
    background-color: #fff;
    flex-wrap: wrap;
}

.service-include-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    border-radius: 5px;
    max-width: 344px;
    height: 400px;
    flex: 1;
    text-align: left;
    margin-right: -30px;
    margin-top: 50px;
}

.service-include-card2 {

    margin-left: -80px !important;
    max-width: 400px;
}

@media (max-width:768px) {
    .service-include-card {
        margin-right: 0px;
    }

    .service-include-card2 {
        margin-left: 0px !important;
    }
}

.service-include-card2 h2 {
    text-align: center;
    font-family: var(--font-script);
    color: var(--color-accent);
    margin-bottom: 0 !important;
}

.service-include-card2 p {
    text-align: center;

}

.about-icon .decor-iamge {
    width: 50px !important;
    height: 42px !important;
    object-fit: contain;
    display: block;
    /* Ensure it's block-level for margin auto to work */
    margin: 0 auto;
    /* This centers the image horizontally */
}

.small-title {
    color: var(--color-bg-dark) !important;
}

.quote-text-svg {
    /* font-style: italic; */
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.quote-svg {
    flex-shrink: 0;
}

.about-know-more {
    text-align: center !important;
}

.service-include-subtitle {

    font-family: var(--font-script);
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    display: block;
    padding-left: 80px;
}

.service-include-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-include-highlight {
    font-family: var(--font-accent);
    color: var(--color-accent);
    font-size: 22px;
    display: block;
}

.service-include-subheading {
    font-size: 20px;

    margin-bottom: 10px;
    color: var(--color-text);
    font-family: var(--font-secondary);

    font-weight: 600;
}

.service-include-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-include-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-include-list li i {
    color: #ff6f3d;
    /* mild food-themed color */
    margin-right: 10px;
    font-size: 16px;
}

.service-include-btn {
    display: inline-block;
    margin-top: 20px;
    color: #d19c5b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-include-knowmore {
    justify-content: left;
    text-align: left;
}

.service-include-btn:hover {
    border-color: #d19c5b;
}

.service-include-gallery {
    display: flex;
    /* gap: 20px; */
    flex: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.service-include-gallery img {
    width: 300px;
    height: 480px;
    object-fit: cover;
    /* border-radius: 10px; */
}

.service-include-gallery2 {
    gap: 20px;
}

.service-include-gallery2 img {
    width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

.jayam {
    font-size: 15px;
}

.footer-column li:hover,
.footer-column li a:hover {
    color: var(--color-accent);
    cursor: pointer;
}

.footer-column ul li a:hover {
    color: var(--color-accent);
    cursor: pointer;
}

.top-image-container {
    display: inline-block;
    /* background-color: rgba(255, 255, 255, 0.8); */
    /* semi-transparent white */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* optional shadow */
}

.top-hero-image {
    max-width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 1.9));
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.pan-loader {
    position: relative;
    text-align: center;
}

.cooking-scene {
    position: relative;
    width: 200px;
    height: 150px;
    margin: 0 auto;
}

/* Pan Styling */
.pan {
    position: relative;
    width: 120px;
    height: 60px;
    margin: 0 auto;
    top: 40px;
}

.pan-bottom {
    width: 120px;
    height: 60px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    box-shadow:
        inset -8px -8px 15px rgba(0, 0, 0, 0.8),
        inset 8px 8px 15px rgba(255, 255, 255, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.5);
    animation: pan-shake 2s infinite ease-in-out;
}

.pan-rim {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 126px;
    height: 66px;
    border: 3px solid #444;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
}

/* Handle */
.handle {
    position: absolute;
    right: -41px;
    top: 65px;
    width: 80px;
    height: 12px;
    background: linear-gradient(145deg, #4a4a4a, #2a2a2a);
    border-radius: 6px;
    transform: rotate(5deg);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.handle-grip {
    position: absolute;
    right: 5px;
    top: -2px;
    width: 20px;
    height: 16px;
    background: linear-gradient(145deg, #8B4513, #654321);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Flame Effect */
.flame {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: radial-gradient(ellipse at center bottom,
            #ff6b35 0%,
            #ff8c42 30%,
            #ffd23f 60%,
            transparent 80%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.5s infinite alternate ease-in-out;
    opacity: 0.8;
}

.flame-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: radial-gradient(ellipse at center bottom,
            #ff4757 0%,
            #ff6b35 50%,
            transparent 80%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.3s infinite alternate ease-in-out;
}

/* Oil Bubbles */
.oil-bubble {
    position: absolute;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: bubble-pop 1.5s infinite ease-in-out;
}

.bubble1 {
    width: 8px;
    height: 8px;
    top: 25px;
    left: 30px;
    animation-delay: 0s;
}

.bubble2 {
    width: 6px;
    height: 6px;
    top: 35px;
    left: 70px;
    animation-delay: 0.3s;
}

.bubble3 {
    width: 10px;
    height: 10px;
    top: 30px;
    left: 50px;
    animation-delay: 0.6s;
}

.bubble4 {
    width: 7px;
    height: 7px;
    top: 28px;
    left: 85px;
    animation-delay: 0.9s;
}

/* Food Particles */
.food-particle {
    position: absolute;
    background: #8B4513;
    border-radius: 50%;
    animation: particle-bounce 2s infinite ease-in-out;
}

.particle1 {
    width: 4px;
    height: 4px;
    top: 20px;
    left: 40px;
    animation-delay: 0.2s;
}

.particle2 {
    width: 5px;
    height: 5px;
    top: 25px;
    left: 75px;
    animation-delay: 0.7s;
}

.particle3 {
    width: 3px;
    height: 3px;
    top: 32px;
    left: 60px;
    animation-delay: 1.2s;
}

/* Steam */
.steam-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
}

.steam {
    position: absolute;
    width: 6px;
    height: 25px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    animation: steam-rise 2s infinite ease-out;
}

.steam1 {
    left: 45px;
    animation-delay: 0s;
}

.steam2 {
    left: 55px;
    animation-delay: 0.4s;
}

.steam3 {
    left: 65px;
    animation-delay: 0.8s;
}

.steam4 {
    left: 35px;
    animation-delay: 1.2s;
}

.steam5 {
    left: 75px;
    animation-delay: 1.6s;
}

/* Animations */
@keyframes pan-shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-1px) rotate(-0.5deg);
    }

    75% {
        transform: translateX(1px) rotate(0.5deg);
    }
}

@keyframes flame-flicker {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-50%) scaleY(1.2) scaleX(0.9);
        opacity: 0.9;
    }
}

@keyframes bubble-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes particle-bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-8px) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes steam-rise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1) rotate(0deg);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scaleX(2) rotate(10deg);
    }
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Text and Progress Bar */
.loader-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: text-glow 2s infinite ease-in-out alternate;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd23f, #ff6b35);
    border-radius: 2px;
    animation: progress-fill 6s linear forwards;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

@keyframes text-glow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .cooking-scene {
        width: 150px;
        height: 120px;
    }

    .pan-bottom {
        width: 90px;
        height: 45px;
    }

    .pan-rim {
        width: 96px;
        height: 51px;
    }

    .handle {
        width: 60px;
        right: -18px;
    }

    .loader-text {
        font-size: 16px;
    }

    .progress-bar {
        width: 150px;
    }

    .flame {
        position: absolute;
        bottom: 0px;
        left: 40%;

    }
}


.breadcrumb-banner {
    background-image: url('../images/about/aboutbannerjbd.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-banner .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay for better text visibility */
    height: 100%;
    width: 100%;
    color: #fff;
}

.brudcrump-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Important for vertical centering */
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    /* Optional overlay */
    padding-top: 100px;
}

.brudcrump-content p {
    font-family: var(--font-script);
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
}

.brudcrump-section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-banner span {

    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    /* margin-bottom: 5px; */
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;

}

@media (max-width:768px) {
    .breadcrumb-banner span {


        font-size: var(--font-size-md);
    }

    .brudcrump-section-title {
        font-size: var(--font-size-xl);
    }
}

.breadcrumb-nav {
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #ccc;
}



.about-jbd-section {
    background: #fdfdfd;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    border-radius: 16px;

}

.about-jbd-title {
    text-align: center;
    margin-bottom: 30px;
}

.greeting-line {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.greeting-icon {
    margin-left: 10px;
    flex-shrink: 0;
}

.about-jbd-title h2 {

    font-family: var(--font-script);
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-xs);
}


.about-subtitle {

    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
}


.about-jbd-content p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}




/* Base Container */
.aboutpage-wecaterto-container {

    margin: 0 auto;
    background-color: #F4F3E7;
}

/* Hero Section with DPR Awareness */
.aboutpage-wecaterto-hero {
    position: relative;
    background: url('../images/others/eventcatering.jpg') center center/cover no-repeat;
    color: #fff5f0;
    z-index: 1;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

/* DPR-specific background enhancements */
html[data-dpr="2"] .aboutpage-wecaterto-hero {
    background-image: url('../images/others/eventcatering.jpg');
}

html[data-dpr="3"] .aboutpage-wecaterto-hero {
    background-image: url('../images/others/eventcatering.jpg');
}

.aboutpage-wecaterto-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Hero Content Grid */
.aboutpage-wecaterto-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    margin: 0 auto;
    width: 100%;
}

/* Brand Styles with DPR Scaling */
.aboutpage-wecaterto-brand {
    margin-bottom: 30px;
}

.aboutpage-wecaterto-brand-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Responsive font scaling */
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    font-family: var(--font-secondary);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

html[data-dpr="2"] .aboutpage-wecaterto-brand-name,
html[data-dpr="3"] .aboutpage-wecaterto-brand-name {
    letter-spacing: 4.5px;
}

.aboutpage-wecaterto-brand-tagline {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.9;
    display: block;
    font-family: var(--font-secondary);
}

/* Text Content */
.aboutpage-wecaterto-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.aboutpage-wecaterto-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    max-width: 90%;
}

/* Video Wrapper with DPR Optimization */
.aboutpage-wecaterto-hero-video-wrapper {
    position: relative;
    width: 113%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

html[data-dpr="2"] .aboutpage-wecaterto-hero-video-wrapper,
html[data-dpr="3"] .aboutpage-wecaterto-hero-video-wrapper {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.aboutpage-wecaterto-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Laptop-specific Responsive Fixes (1280px-1440px) */
@media (min-width: 1280px) and (max-width: 1440px) {
    .aboutpage-wecaterto-hero-content {
        gap: 40px;
    }

    .aboutpage-wecaterto-hero-video-wrapper {
        width: 100%;
        height: 400px;
    }

    html[data-dpr="1"] & {
        .aboutpage-wecaterto-hero-title {
            font-size: 2.5rem;
        }

        .aboutpage-wecaterto-hero-subtitle {
            font-size: 1.1rem;
        }
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .aboutpage-wecaterto-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .aboutpage-wecaterto-hero-subtitle {
        max-width: 100%;
    }

    .aboutpage-wecaterto-hero-video-wrapper {
        width: 100%;
        height: 400px;
        order: -1;
    }

    .aboutpage-wecaterto-brand {
        margin-bottom: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aboutpage-wecaterto-hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .aboutpage-wecaterto-hero-video-wrapper {
        height: 300px;
    }

    html[data-dpr="2"] &,
    html[data-dpr="3"] & {
        .aboutpage-wecaterto-hero-video-wrapper {
            height: 320px;
        }
    }
}

/* Overview Section */
.aboutpage-wecaterto-overview {
    padding: 40px 20px;
    background: white;
}

.aboutpage-wecaterto-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.aboutpage-wecaterto-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 20px;

}

@media (max-width:425px) {
    .aboutpage-wecaterto-image-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* 2 columns */
        gap: 20px;
    }
}


.grid-image-item img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.grid-image-item img:hover {
    transform: scale(1.03);
}

.aboutpage-wecaterto-overview-title {

    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
}

@media (max-width:768px) {
    .aboutpage-wecaterto-overview-title {


        font-size: var(--font-size-xl);
    }

}

.aboutpage-wecaterto-overview-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.aboutpage-wecaterto-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    border-radius: 16px;

}

.aboutpage-wecaterto-cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;

    border-radius: 12px;
    /* border-left: 4px solid #667eea; */
    border: 1px solid #ddd;
}

.aboutpage-wecaterto-cert-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.aboutpage-wecaterto-cert-item span {
    font-weight: 500;
    color: #2d3748;
}

.aboutpage-wecaterto-overview-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Main Services Section */
.aboutpage-wecaterto-main {
    position: relative;
    background: url('../images/others/eventcatering.jpg') center center / cover no-repeat fixed;
    background-attachment: fixed;
    padding: 40px 0px;
    color: #fff5f0;
    z-index: 1;
    overflow: hidden;
}

.aboutpage-wecaterto-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* 0.5 for 50% black overlay */
    z-index: -1;
}

.aboutpage-wecaterto-section-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.aboutpage-wecaterto-section-title {

    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
}


.aboutpage-wecaterto-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.aboutpage-wecaterto-section-subtitle {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
}

.aboutpage-wecaterto-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.aboutpage-wecaterto-service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.aboutpage-wecaterto-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.aboutpage-wecaterto-service-image {
    position: relative;
    overflow: hidden;
}

.aboutpage-wecaterto-service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aboutpage-wecaterto-service-card:hover .aboutpage-wecaterto-service-img {
    transform: scale(1.05);
}

.aboutpage-wecaterto-service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.aboutpage-wecaterto-service-overlay i {
    font-size: 1.5rem;
    color: #667eea;
}

.aboutpage-wecaterto-service-content {
    padding: 40px 30px;
}

.aboutpage-wecaterto-service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
    font-family: var(--font-secondary);
}

.aboutpage-wecaterto-service-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.aboutpage-wecaterto-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aboutpage-wecaterto-feature-tag {
    background: #edf2f7;
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Additional Services */
.aboutpage-wecaterto-additional {
    padding: 100px 40px;
    background: white;
}

.aboutpage-wecaterto-additional-header {
    text-align: center;
    margin-bottom: 60px;
}

.aboutpage-wecaterto-additional-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

.aboutpage-wecaterto-additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutpage-wecaterto-additional-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.aboutpage-wecaterto-additional-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.aboutpage-wecaterto-additional-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.aboutpage-wecaterto-additional-icon i {
    font-size: 2rem;
    color: white;
}

.aboutpage-wecaterto-additional-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.aboutpage-wecaterto-additional-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Footer Section */
.aboutpage-wecaterto-footer {
    background: #1a202c;
    color: white;
    padding: 80px 40px 40px;
}

.aboutpage-wecaterto-partnership {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 0px;
    padding-bottom: 60px;
    border-bottom: 1px solid #2d3748;
}

.aboutpage-wecaterto-partnership-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.aboutpage-wecaterto-partnership-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0aec0;
}

.aboutpage-wecaterto-partnership-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.aboutpage-wecaterto-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutpage-wecaterto-contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.aboutpage-wecaterto-contact-person h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 5px;
}

.aboutpage-wecaterto-contact-role {
    color: #a0aec0;
    margin-bottom: 25px;
    font-style: italic;
}

.aboutpage-wecaterto-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aboutpage-wecaterto-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aboutpage-wecaterto-contact-item i {
    color: #667eea;
    width: 20px;
}

.aboutpage-wecaterto-locations h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.aboutpage-wecaterto-location-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #2d3748;
    border-radius: 12px;
}

.aboutpage-wecaterto-location-item i {
    color: #667eea;
    margin-top: 5px;
    font-size: 1.1rem;
}

.aboutpage-wecaterto-location-item strong {
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .aboutpage-wecaterto-hero-content,
    .aboutpage-wecaterto-overview-grid,
    .aboutpage-wecaterto-partnership,
    .aboutpage-wecaterto-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aboutpage-wecaterto-services-grid {
        grid-template-columns: 1fr;
    }

    .aboutpage-wecaterto-hero-title {
        font-size: 2.5rem;
    }

    .aboutpage-wecaterto-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .aboutpage-wecaterto-hero,
    .aboutpage-wecaterto-overview,
    .aboutpage-wecaterto-main,
    .aboutpage-wecaterto-additional,
    .aboutpage-wecaterto-footer {
        padding: 60px 20px;
    }

    .aboutpage-wecaterto-brand-name {
        font-size: 3rem;
    }

    .aboutpage-wecaterto-hero-title {
        font-size: 2rem;
    }

    .aboutpage-wecaterto-section-title {
        font-size: 2rem;
    }

    .aboutpage-wecaterto-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aboutpage-wecaterto-additional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aboutpage-wecaterto-service-card {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {

    .aboutpage-wecaterto-hero,
    .aboutpage-wecaterto-overview,
    .aboutpage-wecaterto-main,
    .aboutpage-wecaterto-additional,
    .aboutpage-wecaterto-footer {
        padding: 40px 15px;
    }

    .aboutpage-wecaterto-service-content {
        padding: 30px 20px;
    }

    .aboutpage-wecaterto-brand-name {
        font-size: 2.5rem;
    }

    .aboutpage-wecaterto-hero-title {
        font-size: 1.8rem;
    }
}

.service-portfolio-exact {
    display: flex;
    gap: 40px;
    padding: 40px 30px;
    /* max-width: 1170px;
    margin: 0 auto; */
    justify-content: center;
    background-color: #e4f3e4;
    /* border-radius: 20px; */
    flex-wrap: wrap;
    align-items: flex-start;
}

@media (max-width:768px) {

    .canteen-image,
    .cafeteria-image {
        display: none;
    }

}

.service-portfolio-exact {
    position: relative;

    /* give space for the image */
}

.bottom-left-image {
    position: absolute;
    top: 0px;
    left: 27px;
    width: 120px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-20deg);
}

.bottom-left-image2 {
    position: absolute;
    bottom: 50px;
    left: 27px;
    width: 120px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-20deg);
}

.portfolio-left {
    flex: 1;
    max-width: 300px;
}

.portfolio-left .highlight {
    font-weight: 600;
    color: #2c7a4f;
    font-size: 1.5rem;
    font-family: var(--font-accent);
    display: block;
    margin-bottom: 10px;
}

.portfolio-left .title {
    font-size: 2.2rem;
    color: #1d3c2d;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    line-height: 1.2;
}

.portfolio-left p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.portfolio-gallery {
    flex: 2;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.center-image {
    flex: 2;
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.right-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-images img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {


    .portfolio-gallery {
        flex-direction: column;
    }

    .right-images {
        flex-direction: row;
    }

    .right-images img {
        height: auto;
    }
}

@media (max-width: 425px) {
    .service-portfolio-exact {
        flex-direction: column;
    }


}



.contact-page {
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
}

.contact-info-section {
    max-width: 1000px;
    margin: auto;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.contact-column {
    flex: 1 1 30%;
    min-width: 280px;
}

.contact-info-section h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.contact-info-section p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

/* Section 2: Image Grid + Form */
.contact-main-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

/* Image Grid */
.contact-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
    gap: 10px;
    flex: 1 1 50%;
    min-width: 300px;
}

.contact-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Form */
.contact-form-box {
    background: #fff;
    padding: 30px;
    flex: 1 1 300px;
    min-width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.form-header .get {
    font-size: 16px;
    color: #aaa;
    font-style: italic;
}

.form-header .in-touch {
    font-size: 26px;
    font-weight: 700;
    margin: 5px 0 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: none;
    font-family: var(--font-primary);
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #555;
}

.nav-link.active {
    color: var(--color-accent);
    /* highlight color */
    font-weight: bold;
    border-bottom: 2px solid var(--color-accent);
    /* optional underline */
}

/* Your existing CSS styles remain the same */
/* Your existing CSS styles remain the same */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    transform-origin: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 63px;
    right: 0;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    border: 1px solid #eee;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.pulse-ring {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Accessibility focus styles */
.whatsapp-float:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 24px;
    }

    .pulse-ring {
        width: 70px;
        height: 70px;
    }
}


/* Default state - hidden on all devices */
.mobile-contact-menu {
    display: none !important;
}

/* Show only on mobile devices (768px and below) */
@media (max-width: 768px) {
    .mobile-contact-menu {
        display: block !important;
    }
}

.client-logo-slider {
    padding: 2rem 0;
}

.client-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin: 0 10px;
    border: 1px solid #ddd;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(142, 35, 35, 0.15);
}

.client-slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
}

.client-logo-slider {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    background: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 99;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-accent);
    color: white;
}

.swiper-button-prev {
    left: 0;
    /* Adjust as needed */
}

.swiper-button-next {
    right: 0;
    /* Adjust as needed */
}

@media (max-width: 992px) {
    .client-slide {
        height: 110px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .client-slide {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .client-slide {
        height: 90px;
        padding: 10px;
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Optional: keep the toggle icon from being clickable on desktop */
    .nav-item.dropdown>.dropdown-toggle::after {
        display: inline-block;
    }
}


/* Main Container */
.vm-img-container {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}


/* Main Image Styling */
.vm-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover effect for main image */
.vm-img-container:hover .vm-main-img {
    transform: scale(1.05);
}

/* Small Image Wrapper (for white background) */
.small-img-wrapper {
    width: 45%;
    height: 220px;
    padding: 10px;
    background: white;
    border-radius: 20px 0 0 20px;
    /* Top-left and bottom-left only */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    top: 90px;
    right: 0;
    border: 2px solid var(--color-accent);
    /* All sides first */
    border-right: none;
    /* Remove right border */
}

/* Small Image Styling */
.vm-small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    /* Slightly smaller than wrapper */
}

.small-img-wrapper2 {
    width: 45%;
    height: 220px;
    padding: 10px;
    background: white;
    border-radius: 0 20px 20px 0;
    /* Top-left and bottom-left only */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    top: 90px;
    left: 0;
    border: 2px solid var(--color-accent);
    /* All sides first */
    border-left: none;
    /* Remove right border */
}

/* Small Image Styling */
.vm-small-img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    /* Slightly smaller than wrapper */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vm-img-container {
        height: 300px;
    }

    .small-img-wrapper {
        width: 50%;
        height: 180px;
        right: 0;
        top: 30px;
        padding: 10px;
    }
    .small-img-wrapper2{
         width: 50%;
        height: 180px;
        left: 0;
        top: 30px;
        padding: 10px;
    }
}



.vm-subtitle {

    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 3px;
}


.vm-title {
    font-family: var(--font-script);
    margin-bottom: 20px !important;
    margin-top: 10px !important;
}

.vm-feature-icon {
    color: #e67e22;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 20px;
}

.vm-features li {
    margin-bottom: 15px;
    position: relative;
}

.vm-features strong {
    color: #2c3e50;
    font-weight: 600;
}

.vm-features li:before {
    content: none;
    /* Remove default icon if previously set */
}

  /* Leadership Section Styles */
    .leadership-section {
        background-color: #f9f9f7;
    }
    
    .section-header {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .divider {
        width: 80px;
        height: 3px;
        background-color: #e67e22;
    }
    
    .leader-profile {
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        padding: 40px;
    }
    
    .leader-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .leader-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: #e67e22;
    }
    
    .leader-name {
        font-size: 1.8rem;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .leader-title {
        color: #e67e22;
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 15px;
    }
    
    .experience-tag {
        display: inline-block;
        background: #fef6e6;
        color: #e67e22;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .leader-bio {
        margin-bottom: 30px;
    }
    
    .leader-bio p {
       margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.7;
        color: #333;
    }
    
    .leader-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 40px 0;
    }
    
    .highlight-card {
        text-align: center;
        padding: 25px 20px;
        background: #fef6e6;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }
    
    .highlight-icon {
        font-size: 2rem;
        color: #e67e22;
        margin-bottom: 15px;
    }
    
    .highlight-card h4 {
        color: #2c3e50;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .highlight-card p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .leader-quote {
        background: #f5f5f5;
        padding: 25px;
        border-radius: 8px;
        position: relative;
        margin-top: 40px;
    }
    
    .quote-icon {
        color: rgba(230, 126, 34, 0.2);
        font-size: 3rem;
        position: absolute;
        top: 15px;
        left: 20px;
    }
    
    .leader-quote p {
        position: relative;
        z-index: 1;
        font-style: italic;
        color: #444;
        margin-bottom: 0;
        padding-left: 30px;
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .leader-profile {
            padding: 30px 20px;
        }
        
        .leader-name {
            font-size: 1.5rem;
        }
        
        .leader-highlights {
            grid-template-columns: 1fr;
        }
    }
    /* Container */
.dropdown-custom {
  position: relative;
}

/* Hide dropdown by default */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 149px;
    background-color: white;
    padding: 8px;
    margin: 0;
    list-style: none;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 5px;
}

/* Show on hover */
.dropdown-custom:hover .dropdown-menu-custom {
  display: block;
}
/* By default, hide mobile-only items */
.mobile-only {
  display: none;
}

/* On mobile, show them */
@media (max-width: 992px) {
  .mobile-only {
    display: block;
  }

 /* Hide the chevron icon and dropdown menu on mobile */
@media (max-width: 992px) {
  .dropdown-custom .dropdown-menu-custom {
    display: none !important;
  }

  .dropdown-custom .nav-link i {
    display: none !important;
  }
}





/* Dropdown items */
.dropdown-menu-custom .dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu-custom .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #000;
   border-radius: 5px;
}
.vm-content .vision-title{
 
    font-family: var(--font-secondary)!important;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;

}
