:root {
    --bg-color: #fcf8f2;
    --text-color: #333;
    --primary-red: #e60000;
    --primary-maroon: #800000;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
    --accent-gold: #c5a059;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: #4a4a4a;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* Advanced Global Styling */
::selection {
    background-color: var(--primary-maroon);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #800000;
}

.container {
    /* max-width: 1100px; */
    margin: 5px auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--primary-red);
}

ul {
    list-style: none;
}

/* Header */
header {
    padding: 15px 0;
    background-color: var(--bg-color);
    border-bottom: none;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.left-nav {
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.left-nav a,
.right-actions .nav-link {
    font-weight: 900;
    margin-right: 25px;
    font-size: 22px;
    color: #2c2c2c;
    text-transform: uppercase;
}

.nav-dropdown {
    position: relative;
}

.menu-link {
    color: #2c2c2c !important;
}

.services-link {
    color: #2c2c2c !important;
}

.symbol-toggle {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    top: -2px;
}

.symbol-toggle::before,
.symbol-toggle::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Horizontal bar */
.symbol-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical bar */
.symbol-toggle::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Hover effect on Menu Dropdown */
.nav-dropdown:hover .symbol-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.nav-dropdown:hover .symbol-toggle::before {
    /* Keep horizontal bar visible as a minus */
    background-color: var(--primary-red);
}

.plus {
    margin-left: 5px;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 280px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    top: 100%;
    left: -20px;
    padding: 10px 0;
    /* border-top: 2px solid var(--primary-red); */
}

.dropdown-content a {
    color: #000 !important;
    padding: 12px 25px !important;
    text-decoration: none;
    display: block !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    margin-right: 0 !important;
    text-transform: none !important;
    transition: all 0.2s ease;
}

/* Designing the selected option */
.dropdown-content a.selected {
    color: var(--primary-red) !important;
    position: relative;
    background-color: #fafafa;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--primary-red) !important;
}

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

.right-actions {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 140px;
    background-color: var(--bg-color);
    border-radius: 0 0 125px 125px;
    z-index: -1;
}

.logo img {
    height: 140px;
    width: auto;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.logo-inner {
    text-align: center;
    color: #4a3b32;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-inner i {
    font-size: 24px;
    color: #d64a4a;
    /* Logo icon color */
    margin-bottom: 5px;
}

.logo-inner span {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-inner small {
    font-size: 10px;
    display: block;
    letter-spacing: 2px;
    color: #d4a373;
}

.btn-quote {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.3s;
}

.btn-quote:hover {
    background-color: #cc0000;
}

/* Mobile Header Controls (Hidden on Desktop) */
.mobile-menu-btn,
.mobile-whatsapp-btn {
    display: none;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
        background-color: var(--bg-color);
        /* Ensure background matches */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        /* Subtle shadow for separation */
    }

    header .header-container {
        justify-content: space-between;
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
        flex-direction: row;
    }

    .left-nav,
    .right-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        /* Increased to prevent overlap */
    }

    /* Simple Black Hamburger Menu */
    .mobile-menu-btn {
        background-color: transparent;
        color: #000;
        width: 45px;
        height: 45px;
        border-radius: 0;
        font-size: 32px;
        cursor: pointer;
        box-shadow: none;
        justify-content: flex-start;
    }

    /* Green WhatsApp Button (3D Style) */
    .mobile-whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #5FFC7B 0%, #25D366 100%);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        font-size: 26px;
        box-shadow: 0 4px 0px #0e8546;
        transition: transform 0.1s;
        z-index: 1000;
    }

    .mobile-whatsapp-btn:active {
        box-shadow: 0 2px 0px #0e8546;
        transform: translateY(2px);
    }

    /* Logo Adjustments for Mobile */
    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        height: auto;
    }

    .logo::before {
        display: none;
    }

    .logo img {
        height: 100px;
        /* Increased from 40px to match screenshot prominence */
        margin-top: 0;
        width: auto;
    }
}

/* Sidebar Menu Styles */
.mobile-view-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fcf8f2;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-view-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #8B4513;
    /* Brown underline */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    /* Or variable if defined */
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: #003366;
    margin: 0;
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

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

.sidebar-links li {
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #FFC107;
    /* Yellow separator */
    padding-bottom: 5px;
}

.sidebar-links li:last-child {
    border-bottom: 1px solid #FFC107;
    /* Consistent with screenshot design */
}

.sidebar-links a {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #003366;
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10px 0 30px;
    position: relative;
}

.hero-image-placeholder {
    position: relative;
    /* Anchor for side menu */
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.95), rgba(100, 0, 0, 0.9)), url('img/bg.jpg') no-repeat center center/cover;
    background-blend-mode: multiply;
    color: white;
    margin: 40px 10px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotateLight 20s linear infinite;
    pointer-events: none;
}

.cta-title {
    font-family: var(--heading-font);
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-text {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: #fcf8f2;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.btn-cta {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta.solid {
    background-color: #fff;
    color: #800000;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta.solid:hover {
    background-color: #f3edddeb;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta.outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Responsive adjustment for buttons */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn-cta {
        width: 100%;
        /* Full width on mobile */
        max-width: 300px;
    }
}

/* Feature Section */
.feature-section {
    padding: 60px 0;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 50% 0 50% 0;
    /* Organic shape border */
    border: 5px solid #800000;
    box-shadow: 10px 10px 0px rgba(139, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--primary-maroon);
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-content .sub-h3 {
    font-size: 24px;
    color: var(--primary-red);
    display: block;
    margin-top: 5px;
}

.feature-content p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* Contact Strip */
.contact-strip {
    padding: 40px 0;
    text-align: center;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 36px;
    color: var(--primary-maroon);
    margin-bottom: 40px;
    text-align: center;
}

.contact-new-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-new-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 12px;
}

.contact-new-item:hover {
    transform: translateY(-5px);
    background: #f9f9f9;
}

.icon-circle-outline {
    width: 70px;
    height: 70px;
    border: 2px dashed var(--primary-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-maroon);
    font-size: 28px;
    transition: all 0.4s ease;
    background: #fff;
}

.contact-new-item:hover .icon-circle-outline {
    background: var(--primary-maroon);
    color: #fff;
    border-style: solid;
    transform: rotate(10deg);
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.v-divider {
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, #ccc, transparent);
    margin: 0 20px;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    text-align: center;
    /* Changed from justify to center */
}

.menu-display {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    padding-top: 40px;
}

.menu-group {
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.menu-group h3 {
    font-family: var(--heading-font);
    color: var(--primary-maroon);
    margin-top: 30px;
    /* Increased margin for better spacing */
    font-size: 28px;
    /* Slightly larger font */
    font-weight: 700;
}

.cards-fan {
    position: relative;
    height: 220px;
    width: 200px;
    margin: 0 auto;
}

.card {
    position: absolute;
    width: 160px;
    /* Slightly wider cards */
    left: 50%;
    margin-left: -80px;
    /* Center cards horizontally in the fan container */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Snappy bounce effect */
    transform-origin: bottom center;
}

.c1 {
    transform: rotate(0deg);
    z-index: 1;
}

.c2 {
    transform: rotate(0deg);
    z-index: 3;
}

.c3 {
    transform: rotate(0deg);
    z-index: 1;
}

/* Hover effect: Smoothly fan out (Open nicely) */
.menu-group:hover .c1 {
    transform: rotate(-20deg) translateX(-45px);
}

.menu-group:hover .c2 {
    transform: translateY(-10px);
    /* Lift the center card slightly */
}

.menu-group:hover .c3 {
    transform: rotate(20deg) translateX(45px);
}

/* =========================================
   Footer Original Design
   ========================================= */
footer {
    background-color: #f3edddeb;
    padding: 60px 0 20px;
    border-top: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-heading {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--body-font);
}

.address-text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: var(--body-font);
}

.map-placeholder img {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-placeholder img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-social-links {
    display: none;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
}

.fs-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fs-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.fs-icon.facebook { background-color: #1877F2; }
.fs-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.fs-icon.youtube { background-color: #FF0000; }
.fs-icon.whatsapp { background-color: #25D366; }

@media (max-width: 768px) {
    .footer-social-links {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}

.footer-logo {
    text-align: center;
}

.logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
}

.footer-logo-img {
    height: 225px;
    width: auto;
    margin-bottom: 10px;
    margin-top: 26px;
}

.copyright-bar {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }

    .menu-display {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   New Design Additions (Services, About, Features)
   ========================================= */

/* FSSAI Section */
.fssai-section {
    padding: 30px 0;
    background-color: #f3edddeb;
    text-align: center;
}

.fssai-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.fssai-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, #fdf4e0 0%, #e8d5a3 60%, #c9a76d 100%);
    border: 4px solid #c9a76d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.fssai-logo-circle img {
    width: 108%;
    height: 71%;
    object-fit: cover;
    background-color: #fff;
    display: block;
}

.fssai-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.fssai-label {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    color: #800000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fssai-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .fssai-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .fssai-info {
        align-items: center;
    }

    .fssai-number {
        font-size: 18px;
    }
}

/* FSSAI Modal Popup */
.fssai-logo-circle {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fssai-logo-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fssai-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px 30px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fssaiModalIn 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes fssaiModalIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fssai-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    transition: color 0.2s;
}

.fssai-modal-close:hover {
    color: #800000;
}

.fssai-modal-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #c9a76d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.fssai-modal-logo img {
    width: 108%;
    height: 71%;
    object-fit: cover;
    display: block;
}

.fssai-modal-title {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 900;
    color: #800000;
    margin-bottom: 5px;
}

.fssai-modal-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.fssai-modal-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.fssai-modal-detail:last-of-type {
    border-bottom: none;
}

.fssai-modal-label {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fssai-modal-value {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.fssai-modal-note {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    text-align: center;
    background-color: #f3edddeb;
    /* Matching the beige tone */
    position: relative;
    overflow: hidden;
}

.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background-color: rgba(128, 0, 0, 0.35);
    /* Bolder semi-transparent maroon */
    border-radius: 50%;
    animation: bubbleUp 10s infinite ease-in;
    box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.1);
}

.bubble:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    left: 40%;
    width: 15px;
    height: 15px;
    animation-duration: 7s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    left: 55%;
    width: 25px;
    height: 25px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    left: 70%;
    width: 18px;
    height: 18px;
    animation-duration: 9s;
    animation-delay: 5s;
}

.bubble:nth-child(6) {
    left: 85%;
    width: 35px;
    height: 35px;
    animation-duration: 14s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    left: 15%;
    width: 22px;
    height: 22px;
    animation-duration: 11s;
    animation-delay: 6s;
}

.bubble:nth-child(8) {
    left: 65%;
    width: 12px;
    height: 12px;
    animation-duration: 6s;
    animation-delay: 2s;
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-800px) rotate(360deg);
        opacity: 0;
    }
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
    /* Bring grid above bubbles */
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.service-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #fcebc5 0%, #d4b57e 100%);
    /* Imitating parchment/gold texture */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #c9a76d;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-color: #800000;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

/* Badge style inside the circle */
.service-icon .badge {
    background-color: #800000;
    /* Maroon */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #eebb66;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    text-align: center;
    min-width: 80px;
}

.service-item h4 {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.2;
}


/* About Us Section New */
.about-new-section {
    position: relative;
    padding: 42px 0;
    overflow: hidden;
    background: url('img/bg.jpg') no-repeat center center/cover;
    /* Background image added */
}

.about-new-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    background: #fff;
    border: 8px solid #800000;
    /* Maroon border */
    border-radius: 0 100px 0 100px;
    /* Check shape */
    border-radius: 100px 0 100px 0;
    /* Standard leaf */
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    background-color: white;
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 90px 0 90px 0;
}

.greeting-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #003366;
    /* Blue banner */
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #fff;
    min-width: 200px;
}

.greeting-overlay span {
    font-family: 'Bangla', sans-serif;
    /* Placeholder for Bengali font */
    font-size: 16px;
    font-weight: 700;
}


.about-text-content {
    flex: 1.2;
}

.about-text-content h2 {
    font-family: var(--heading-font);
    font-size: 52px;
    color: var(--primary-maroon);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-text-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-text-content b {
    font-weight: normal;
    /* Remove bold wrap from entire text */
}

.about-text-content p {
    font-family: var(--body-font);
    font-size: 15px;
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.about-text-content .motto {
    font-weight: 700;
    font-style: italic;
    color: var(--primary-maroon);
    margin-top: 35px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-left: 5px solid var(--accent-gold);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    text-align: left;
}

/* Feature Icons Strip */
.feature-icons-strip {
    background-color: #fcf8f2;
    padding: 50px 0;
}

.feature-icons-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon-item i {
    font-size: 50px;
    color: #800000;
    /* Maroon */
    /* Outline-style specific */
    -webkit-text-stroke: 1px #800000;
    color: transparent;
    /* For outline look if solid icon */
    color: #800000;
}

.feature-icon-item h4 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Response Fixes */
@media (max-width: 768px) {
    .about-new-container {
        flex-direction: column;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
        padding: 0 8px;
        /* Exactly 4px space as requested */
        width: 100%;
    }

    .about-image-frame {
        max-width: 100%;
        margin: 0 auto;
    }

    .feature-icons-strip .container {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   New Menu Section Styles
   ========================================= */

.new-menu-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    ;
    /* Updated background */
}

/* Feature Icons Row */
.menu-icons-row {
    display: flex;
    justify-content: center;
    gap: 250px;
    margin-bottom: 50px;
    text-align: center;
    flex-wrap: wrap;
    /* Safety for smaller screens */
}

.menu-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.menu-icon-item .icon-wrap {
    /* font-size: 50px; removed as we are using images */
    /* color: #800000; removed */
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon-item .icon-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.menu-icon-item h4 {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 20px;
    color: #1a1a1a;
}

/* Section Title */
.menu-title {
    margin-bottom: 60px;
    font-size: 64px;
    /* Matching the Hero styling for big titles or 48px */
    color: #000;
    text-align: center;
    font-weight: 900;
}

/* Menu Rows */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.menu-image-col {
    flex: 0 0 auto;
    width: 300px;
    /* Adjust as needed */
    display: flex;
    justify-content: center;
}

.menu-text-col {
    flex: 1;
    max-width: 600px;
}

.menu-cards-fan {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 0 auto;
}

.m-card {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #fff;
}

.m-card.c1 {
    z-index: 2;
    transform: rotate(-5deg) translateY(0);
}

.m-card.c2 {
    z-index: 1;
    transform: rotate(5deg) translateX(20px) scale(0.95);
    opacity: 0.8;
}

.menu-row:hover .m-card.c1 {
    transform: rotate(-10deg) translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.menu-row:hover .m-card.c2 {
    transform: rotate(10deg) translateX(40px) scale(0.98);
    opacity: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.right-tilt .m-card.c1 {
    transform: rotate(5deg);
}

.right-tilt .m-card.c2 {
    transform: rotate(-5deg) translateX(-20px) scale(0.95);
}

.menu-row.reverse:hover .right-tilt .m-card.c1 {
    transform: rotate(10deg) translateY(-15px) scale(1.05);
}

.menu-row.reverse:hover .right-tilt .m-card.c2 {
    transform: rotate(-10deg) translateX(-40px) scale(0.98);
}

/* Add custom styles for the button */
.btn-info {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-maroon);
    color: #fff;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-info:hover {
    background-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.3);
}

.menu-text-col h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-wrap-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    /* Gap between icons and text */
    margin-bottom: 20px;
}

.header-wrap-right h3 {
    margin-bottom: 0;
}

.menu-text-col p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.menu-row.reverse .menu-text-col {
    text-align: right;
}

/* Veg/Non-Veg Icons */
.veg-icons {
    display: inline-flex;
    gap: 5px;
    font-size: 24px;
    vertical-align: middle;
}

.icon-veg {
    color: #008000;
    /* Green */
    background: #fff;
    border-radius: 2px;
}

.icon-nonveg {
    color: #800000;
    /* Red/Maroon */
    background: #fff;
    border-radius: 2px;
}

/* Buttons */
.btn-info {
    display: inline-block;
    background-color: #800000;
    color: #fff;
    padding: 12px 25px;
    font-family: var(--body-font);
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
    text-transform: capitalize;
}

.btn-info:hover {
    background-color: #5a0000;
}

.btn-wrap-right {
    display: flex;
    justify-content: flex-end;
}

/* Menu Cards Fan Effect */
.menu-cards-fan {
    position: relative;
    width: 220px;
    height: 300px;
    perspective: 1000px;
}

.m-card {
    position: absolute;
    width: 100%;
    height: auto;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 1px solid #ccc;
    /* Generic border */
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    transform-origin: bottom center;
}

/* Left Tilt Stacking */
.left-tilt .c1 {
    transform: rotate(-15deg) translate(-20px, 10px);
    z-index: 1;
}

.left-tilt .c2 {
    transform: rotate(-5deg) translate(0, 0);
    z-index: 2;
}

/* Hover Effects for Left Tilt (Fold Open) */
.menu-cards-fan.left-tilt:hover .c1 {
    transform: rotate(-35deg) translate(-60px, -10px);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
}

.menu-cards-fan.left-tilt:hover .c2 {
    transform: rotate(10deg) translate(40px, -15px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Right Tilt Stacking */
.right-tilt .c1 {
    transform: rotate(15deg) translate(20px, 10px);
    z-index: 1;
}

.right-tilt .c2 {
    transform: rotate(5deg) translate(0, 0);
    z-index: 2;
}

/* Hover Effects for Right Tilt (Fold Open) */
.menu-cards-fan.right-tilt:hover .c1 {
    transform: rotate(35deg) translate(60px, -10px);
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.4);
}

.menu-cards-fan.right-tilt:hover .c2 {
    transform: rotate(-10deg) translate(-40px, -15px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}


/* Responsive Adjustments for Menu */
@media (max-width: 992px) {
    .menu-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-title {
        margin-bottom: 30px;
        font-size: 36px;
    }

    .menu-icons-row {
        flex-direction: column;
        gap: 20px;
    }

    .menu-row,
    .menu-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .menu-row .menu-image-col,
    .menu-row.reverse .menu-image-col {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
        margin-bottom: 20px;
    }

    .menu-row .menu-text-col,
    .menu-row.reverse .menu-text-col {
        order: 2;
        text-align: center;
        /* Default center for button and heading */
        width: 100%;
        padding: 0 15px;
        /* Add some padding for text */
    }

    .menu-row.reverse .menu-text-col {
        text-align: center;
    }

    .header-wrap-right {
        justify-content: center;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .menu-text-col h3 {
        display: block;
        text-align: center;
        margin-bottom: 5px;
        font-size: 24px;
    }

    .menu-text-col h3 .veg-icons {
        display: block;
        /* moves icons to a new line */
        margin-top: 5px;
    }

    .menu-cards-fan {
        max-width: 100%;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    /* Force center the absolute cards within the container */
    .menu-cards-fan .m-card {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    /* Reset/Center the tilted cards on mobile */
    .left-tilt .c1,
    .right-tilt .c1 {
        transform: rotate(-5deg);
    }

    .left-tilt .c2,
    .right-tilt .c2 {
        transform: rotate(5deg);
    }

    .menu-text-col p {
        text-align: justify;
        /* Justify the paragraph text as requested */
        text-justify: inter-word;
    }

    .btn-wrap-right {
        justify-content: center;
    }
}

/* =========================================
   Why Choose Us & Certifications Styles
   ========================================= */

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0 40px;
    background-color: #f3edddeb;
    /* Beige matching reviews */
}

.why-choose-us .section-title {
    margin-bottom: 20px;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    margin-top: 50px;
    align-items: stretch;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    /* font-size: 36px; removed */
    /* color: #800000; removed */
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    /* Ensure centering */
    align-items: center;
    justify-content: center;
}

.why-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.why-text h4 {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Certifications */
.certifications-section {
    padding: 0 0 80px;
    /* Remove top padding to merge with above */

    padding: 0 0 80px;
    /* Remove top padding to merge with above */
    background-color: #f3edddeb;
    /* Beige matching reviews */
    text-align: center;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Matching other beige sections */
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cert-box {
    width: 280px;
    height: 380px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0d8c0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.cert-item h4 {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 22px;
    color: #333;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid-2 {
        gap: 40px;
    }
}

/* =========================================
   Reviews & Gallery Styles
   ========================================= */

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Beige matching footer/services */
    text-align: center;
}

.reviews-section .section-title {
    margin-bottom: 10px;
    color: #000;
}

.reviews-subtitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.reviews-subtitle-wrap .line {
    height: 2px;
    width: 100px;
    background-color: #333;
}

.reviews-subtitle-wrap .subtitle {
    font-size: 24px;
    font-family: var(--body-font);
    color: #333;
}

.reviews-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px;
    position: relative;
    scroll-behavior: smooth;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.nav-arrow {
    background-color: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    flex: 0 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reviewer-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    /* Star yellow */
    font-size: 12px;
}

.review-text {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    flex: 1;
}

.google-review-link {
    font-size: 12px;
    font-weight: 700;
    color: #d64a4a;
    /* Redish link */
    text-align: center;
    margin-top: auto;
    display: block;
}

/* Google Reviews Section - Advanced Premium Design */
.google-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fcf8f2 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 400px;
    font-family: 'Georgia', serif;
    color: rgba(212, 175, 55, 0.05); /* Gold watermark quote */
    line-height: 1;
    z-index: 0;
    transform: rotate(-10deg);
}

.google-reviews-slider {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 30px 40px 60px;
    max-width: 100%;
    margin: 0 auto;
    scroll-behavior: smooth;
    position: relative;
    z-index: 2;
}

.google-reviews-slider::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.05), inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.google-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #e60000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.google-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 0, 0, 0.1), inset 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.google-review-card:hover::before {
    transform: scaleX(1);
}

.gr-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.gr-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-family: var(--heading-font);
    font-weight: 900;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.gr-info {
    flex: 1;
}

.gr-info h4 {
    margin: 0 0 5px 0;
    font-size: 19px;
    color: #1a1a1a;
    font-family: var(--heading-font);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.gr-stars {
    color: #fbbc04;
    font-size: 14px;
    display: flex;
    gap: 3px;
    filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.3));
}

.gr-google-icon {
    position: absolute;
    right: 0;
    top: 0;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gr-google-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.gr-body {
    position: relative;
}

.gr-body::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 60px;
    font-family: 'Georgia', serif;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.gr-body p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-family: var(--body-font);
    font-style: italic;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .google-review-card {
        flex: 0 0 300px;
        padding: 30px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #f3edddeb;
    /* Beige matching the screenshot */
    text-align: center;
}

.gallery-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.gallery-section .section-title {
    color: #000;
    font-size: 64px;
    font-family: var(--heading-font);
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
    text-align: center;
    /* Explicit centering */
}

.gallery-slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 40px 50px;
    max-width: 100%;
    margin: 0 auto;
    scroll-behavior: smooth;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.gallery-item {
    flex: 0 0 300px;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 3px solid #fff;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border-color: var(--accent-gold);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-btn-container {
    margin-top: 50px;
}

.btn-more-pictures {
    background-color: var(--primary-maroon);
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    padding: 16px 50px;
    border-radius: 40px;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-more-pictures:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-container {
        /* User requested side by side even on smaller screens, or maybe just easier wrap? */
        /* Let's allow wrapping but centered */
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-slider {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .gallery-nav-right {
        display: none;
        /* Hide on mobile/wrap layout */
    }
}

@media (max-width: 768px) {
    .features-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cert-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-slider {
        padding: 10px 15px 30px;
        gap: 15px;
        scroll-snap-type: x mandatory;
    }

    .gallery-item {
        flex: 0 0 260px;
        height: 260px;
        scroll-snap-align: center;
    }

    .btn-more-pictures {
        font-size: 20px;
        padding: 10px 40px;
    }

    .gallery-section .section-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
}

/* =========================================
   Blogs, Venues, CTA & Contact Styles
   ========================================= */

/* Blogs Section */
.blogs-section {
    padding: 60px 0;
    background-color: #fcf8f2;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
}

.blog-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #000;
}

.blog-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-content a {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.blog-btn-wrap {
    text-align: center;
}

.btn-more-blogs {
    background-color: #800000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--heading-font);
}

/* Premium Venues Section */
.premium-venues-section {
    padding: 60px 0;
    position: relative;
    background-color: #fcf8f2;
    /* Light beige base */
    overflow: visible;
    /* Allow image to potentially pop if needed */
}

/* The Pink Gradient Horizontal Strip */
.premium-venues-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient matching the screenshot: Reddish-pink to light pink/white */
    background: linear-gradient(90deg, #d85759 0%, #fecfef 50%, #ffffff 100%);
    opacity: 0.9;
    z-index: 0;
}

.venue-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    /* Content above background strip */
}

.venue-content-left {
    flex: 1;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.venue-title {
    font-size: 64px;
    font-family: var(--heading-font);
    color: #800000;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: none;
    white-space: nowrap;
    /* Keep on one line as requested */
}

.venue-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.btn-venue-pics {
    background-color: #800000;
    color: #fff;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 40px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.polaroid-collage {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.polaroid {
    background: #fff;
    padding: 8px 8px 25px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(-8deg);
    transition: transform 0.3s;
}

.polaroid:nth-child(2) {
    transform: rotate(0deg) translateY(-15px);
    margin-top: 0;
    z-index: 2;
}

.polaroid:nth-child(3) {
    transform: rotate(8deg);
}

.polaroid img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.venue-image-right {
    flex: 1;
    text-align: right;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.venue-image-right img {
    max-width: 72%;
    /* Slight overflow for pop */
    height: auto;
    width: 400px;
    /* Remove old mask */
    mask-image: none;
    -webkit-mask-image: none;
    /* 3D Drop Shadow Effect */
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.4));
    margin-right: -10px;
    margin-bottom: -29px;
    /* Pull slightly right */
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    font-family: var(--heading-font);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    padding: 12px 25px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #800000;
    transition: 0.3s;
}

.btn-cta.solid {
    background-color: #800000;
    color: #fff;
}

.btn-cta.outline {
    background-color: transparent;
    color: #800000;
    background-color: #f9f3e9;
    /* Light fill */
}

/* New Contact Section */
.contact-us-new {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Beige */
    border-top: 1px solid #e0d8c0;
}

.contact-new-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.contact-new-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 280px;
}

.icon-circle-outline {
    width: 60px;
    height: 60px;
    border: 2px solid #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #800000;
    background: transparent;
    margin-bottom: 5px;
}

.contact-new-item h4 {
    font-weight: 800;
    font-size: 20px;
    color: #000;
    margin: 0;
    font-family: var(--heading-font);
}

.contact-new-item h4.underline-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-new-item p {
    font-size: 20px;
    color: #000;
    font-weight: 800;
    margin: 0;
}

.v-divider {
    width: 2px;
    height: 80px;
    background-color: #000;
}

/* Social Media Section */
.social-media-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Beige */
    text-align: center;
}

.social-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    font-family: var(--heading-font);
    margin-bottom: 40px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
}

.social-card img {
    width: 100%;
    height: 542px;
    display: block;
    margin-bottom: 15px;
}

.social-label {
    font-size: 18px;
    font-weight: 800;
    color: #800000;
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }

    .venue-container {
        flex-direction: column;
        text-align: center;
    }

    .venue-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .polaroid-collage {
        justify-content: center;
    }

    .contact-new-grid {
        flex-direction: column;
        gap: 30px;
    }

    .v-divider {
        width: 80px;
        height: 2px;
        /* Horizontal on mobile */
    }

    /* Premium Venues Mobile Fixes */
    .venue-content-left {
        padding-right: 0;
        text-align: center;
    }

    .venue-title {
        font-size: clamp(28px, 10vw, 52px);
        /* Responsive font size */
        white-space: nowrap;
        /* Forcing one line */
        text-align: center;
        margin-bottom: 10px;
    }

    .venue-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .polaroid-collage {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .polaroid {
        transform: rotate(0deg) !important;
        /* Straighter on mobile to save space */
        margin: 0 !important;
    }

    .polaroid img {
        width: 140px;
        height: 140px;
    }

    .venue-image-right {
        justify-content: center;
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .venue-image-right img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        filter: none;
        /* Simplify for mobile performance if needed, or keep */
        margin-bottom: 0;
        margin-right: 0;
    }
}

/* =========================================
   Welcome Section Styles
   ========================================= */

.welcome-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.welcome-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-section h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.welcome-section .brand-highlight {
    color: #800000;
    font-weight: 700;
}

.welcome-section p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.motto-box {
    margin-top: 40px;
}

.motto-intro {
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.motto-text {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    font-style: normal;
}

/* =========================================
   Our Packages Section (Menu Page - Text Block)
   ========================================= */
.our-packages-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Matching beige tone */
    text-align: center;
}

.our-packages-content {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--body-font);
    /* Using site body font */
    color: #1a1a1a;
    padding: 0 20px;
}

.our-packages-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.our-packages-content .motto-text {
    margin-top: 30px;
    font-weight: 900;
    font-size: 18px;
    color: #000;
}

/* =========================================
   Offering Packages Section (Menu Images Grid)
   ========================================= */
.offering-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Matching beige tone */
    text-align: center;
}

.offering-subheading {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    margin-top: 10px;
}

.offering-grid {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    /* Adjust based on image aspect ratio */
}

.offering-img-box {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.offering-img-box:hover {
    transform: translateY(-8px);
}

.offering-img-box img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.offering-img-box:hover img {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.offering-item h4 {
    font-family: var(--heading-font);
    font-size: 22px;
    color: #800000;
    /* Maroon */
    margin-top: 15px;
    font-weight: 900;
}

/* Menu 2026 Section */
.menu-2026-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.menu-2026-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.menu-2026-item {
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.menu-2026-title {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 900;
    color: #800000;
    /* Maroon */
    margin-bottom: 30px;
}

.menu-2026-img img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-2026-footer {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 900;
    color: #800000;
    /* Maroon */
    margin-top: 30px;
}

@media (max-width: 768px) {
    .menu-2026-grid {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }
}

/* Quotation Form Section */
.quotation-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    /* Matching beige tone */
    text-align: center;
}

.quotation-container {
    max-width: 800px;
    /* Constrain width for form */
    margin: 0 auto;
}

.quotation-title {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 900;
    color: #660000;
    /* Dark Maroon */
    margin-bottom: 10px;
}

.quotation-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
}

.quotation-form {
    text-align: left;
    /* Labels aligned left */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    /* Or none/shadow as per design? Design looks clean white input */
    border-radius: 2px;
    font-size: 16px;
    font-family: var(--body-font);
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    outline: none;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: #791313;
    /* Deep Maroon */
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 20px;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background-color: #5a0e0e;
}

/* =========================================
   Menu 2026 Section Styles (Migrated from Inline)
   ========================================= */
.menu-2026-section {
    padding: 60px 0;
    background-color: #fcf8f2;
}

.menu-2026-display {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.menu-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-2026-subheading {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 900;
    color: #660000;
    margin-top: 0;
    font-family: var(--heading-font);
}

.menu-single-img {
    margin-bottom: 20px;
}

.menu-2026-img {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.menu-2026-heading {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 900;
    color: #660000;
    font-family: var(--heading-font);
}

/* =========================================
   Global Mobile Responsiveness
   ========================================= */

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    /* Global Layout Adjustments */
    .container {
        padding: 0 20px;
        width: 100%;
    }

    /* Header & Navigation (Legacy Removed to prioritize new header) */
    /* Handled by .mobile-menu-btn and .header-container rules above */

    /* Hero Section */
    .hero h1 {
        font-size: 36px;
    }

    .side-sliding-menu {
        display: none !important;
    }

    /* About Section */
    .about-new-container {
        flex-direction: column;
        padding: 20px 0;
    }

    .about-text-content h2 {
        font-size: 32px;
        text-align: center;
        margin-top: 20px;
    }

    .about-text-content p {
        text-align: left;
    }

    .greeting-overlay {
        min-width: auto;
        width: 90%;
    }

    /* Services Grid */
    .services-grid {
        gap: 20px;
    }

    .service-item {
        width: 45%;
        /* 2 columns on mobile */
    }

    /* Menu Section (General) */
    .menu-display,
    .menu-2026-display {
        gap: 40px;
    }

    .menu-2026-subheading,
    .menu-2026-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .menu-icons-row {
        gap: 30px;
    }

    .menu-row,
    .menu-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .menu-text-col,
    .menu-image-col {
        width: 100%;
        padding: 0;
    }

    .menu-cards-fan {
        margin: 30px auto;
    }

    .header-wrap-right {
        justify-content: center;
    }

    .btn-wrap-right {
        display: flex;
        justify-content: center;
    }

    /* Quotation Form */
    .quotation-container {
        max-width: 100%;
    }

    .quotation-form {
        padding: 0 10px;
    }

    /* Contact Section */
    .contact-new-grid {
        flex-direction: column;
        gap: 40px;
    }

    .v-divider {
        display: none;
    }

    .contact-new-item {
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }

    .contact-new-item:last-child {
        border-bottom: none;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        align-items: center;
    }

    .footer-logo {
        order: -1;
        /* Logo first on mobile */
    }

    /* Utility */
    .section-title {
        font-size: 28px;
    }

    /* Global Layout Adjustments */
    .container {
        flex-direction: column;
    }
}

/* =========================================
   Login Page Styles
   ========================================= */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #eebb66;
    /* Matching the goldish border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.login-box h2 {
    font-family: var(--heading-font);
    color: var(--primary-maroon);
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #4a3b32;
    font-family: var(--body-font);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-maroon);
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-maroon);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-login:hover {
    background-color: #a00000;
    transform: translateY(-2px);
}

.error-msg {
    color: var(--primary-red);
    background-color: #ffe6e6;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 4px solid var(--primary-red);
    text-align: left;
}

/* Cursor Dot Animation */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #007bff;
    /* Brighter blue for visibility */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Hide default cursor only if we want to replace it entirely, 
   but usually it's better to keep it for accessibility unless requested otherwise.
   I'll keep the default cursor for now and just have the dot follow. */

/* Modal Styles (Advanced Modern Design) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 5, 5, 0.85); /* Darker, richer overlay */
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f9f6f0);
    margin: 5% auto;
    padding: 50px 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: modalSlideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideDown {
    from {
        opacity: 0;
        transform: translateY(-80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    color: #999;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.close-modal:hover {
    color: #e60000;
    background: rgba(230, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.modal-header h2 {
    color: #800000;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.modal-header p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

#quoteForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

#quoteForm .form-group {
    margin-bottom: 25px;
    position: relative;
}

#quoteForm label {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 13px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eaeaeb;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--body-font);
    background-color: #fafafa;
    color: #222;
    transition: all 0.3s ease;
}

#quoteForm textarea {
    resize: vertical;
    min-height: 100px;
}

#quoteForm input:hover,
#quoteForm select:hover,
#quoteForm textarea:hover {
    border-color: #d4af37;
    background-color: #fff;
}

#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
    border-color: #800000;
    background-color: #fff;
    outline: none;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.08);
}

#quoteForm select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23800000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 18px top 50%;
    background-size: 12px auto;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e60000, #800000);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.2);
    font-family: var(--heading-font);
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(128, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff1a1a, #a50000);
}

@media (max-width: 600px) {
    #quoteForm .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
        border-radius: 20px;
    }
}

/* Certifications Section - Exact Design Match */
.certifications-section {
    padding: 60px 0;
    background-color: #eeead0;
    /* Exact beige from screenshot */
    text-align: center;
}

.certifications-section .section-title {
    font-family: serif;
    /* Using a clean serif for slab-style look */
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-top: 0;
    margin-bottom: 50px;
    text-transform: none;
}

.certs-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cert-box {
    width: 220px;
    height: 280px;
    background-color: #fff;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
    /* Soft natural shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    /* Sharp corners as per screenshot */
}

.cert-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.cert-item h4 {
    font-family: serif;
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin: 10px 0 0 0;
}

@media (max-width: 900px) {
    .certs-grid {
        gap: 30px;
    }

    .cert-box {
        width: 180px;
        height: 230px;
    }
}

@media (max-width: 650px) {
    .certs-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .cert-box {
        width: 240px;
        height: 310px;
    }
}

/* =========================================
   Lightbox Styles
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 8px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    object-fit: contain;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 60px;
    font-weight: 200;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 10000;
}

.close-lightbox:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 25px 0;
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
}

/* Lightbox triggers should show pointer */
.gallery-item img,
.social-card img,
.review-card img,
.cert-box img {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.gallery-item img:hover,
.social-card img:hover,
.review-card img:hover,
.cert-box img:hover {
    filter: brightness(0.9);
}

/* =========================================
   Floating Social Media Icons (Right Side)
   ========================================= */
.side-sliding-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.side-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.side-menu-item i {
    font-size: 20px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.side-menu-item:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.side-menu-item:hover i {
    transform: scale(1.1);
}

.side-menu-item.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5cb5);
}

.side-menu-item.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.side-menu-item.whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
}

.side-menu-item.gallery {
    background: linear-gradient(135deg, #800000, #4a0000);
}

.side-menu-item.blogs {
    background: linear-gradient(135deg, #003366, #001f3f);
}

/* Staggered entrance or simple fade-in */
.side-sliding-menu {
    animation: sideBarFadeIn 1s ease-in-out;
}

@keyframes sideBarFadeIn {
    from {
        opacity: 0;
        right: -50px;
    }

    to {
        opacity: 1;
        right: 0;
    }
}



.hero-slide-in {
    animation: heroSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes heroSlideIn {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Contact Page Styling */
.contact-page-section {
    padding: 80px 0;
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
    color: #800000;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.quotation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
    color: #666;
}


.quotation-form .form-group {
    margin-bottom: 20px;
}

.quotation-form .form-group.full-width,
.quotation-form .form-actions.full-width {
    grid-column: span 2;
}

.quotation-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.quotation-form .form-group input,
.quotation-form .form-group select,
.quotation-form .form-group textarea {
    width: 100%;
    height: 48px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background-color: #fff;
}

.quotation-form .form-group textarea {
    height: auto;
    min-height: 100px;
}

.quotation-form .form-actions {
    grid-column: span 2;
    text-align: center;
    margin-top: 15px;
}

.btn-submit {

    background: #800000;
    color: #fff;
    padding: 15px 80px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    width: auto;
    display: inline-block;
    transition: background 0.3s;

}

.btn-submit:hover {
    background: #a00000;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

@media (max-width: 992px) {
    .contact-container {
        gap: 40px;
    }

    .contact-form-wrapper h2,
    .contact-map-wrapper h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper h2,
    .contact-map-wrapper h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-form-wrapper p {
        text-align: center;
    }

    .map-container {
        height: 350px;
    }

    .quotation-form {
        grid-template-columns: 1fr;
    }

    .quotation-form .form-group.full-width,
    .quotation-form .form-actions.full-width {
        grid-column: span 1;
    }

    .divider {
        display: none;
    }

    .contact-item {
        margin-bottom: 30px;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }
}

/* --- MOBILE & PERFORMANCE UPDATES --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .services-grid,
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .blogs-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
    }

    .btn-submit {
        width: auto !important;
        min-width: 250px !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 18px !important;
        border-radius: 50px !important;
        margin: 25px auto 10px !important;
        display: block !important;
        text-align: center !important;
        white-space: nowrap !important;
        background: #800000 !important;
        box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2) !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        background-color: var(--bg-color) !important;
        /* Replaced bright green */
        padding: 10px !important;
        gap: 8px !important;
    }

    .hero-image-placeholder img {
        height: auto !important;
    }
}

/* Base Performance */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* Form Validation Styles */
.form-validation-error {
    color: #e60000;
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    display: block;
    animation: fadeInSlide 0.3s ease-in-out;
}

.input-invalid {
    border-color: #e60000 !important;
    box-shadow: 0 0 5px rgba(230, 0, 0, 0.2) !important;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}