:root {
    --bg-color: #fcf8f2;
    --text-color: #333;
    --primary-red: #e60000;
    --primary-maroon: #800000;
    --heading-font: 'Arial Display', serif;
    --body-font: 'Arial Display', serif;
    --accent-gold: #c5a059;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    /* max-width: 1100px; */
    margin: 5px auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

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;
}

.left-nav a,
.right-actions .nav-link {
    font-weight: 900;
    margin-right: 20px;
    font-size: 20px;
    /* text-transform: uppercase; */
    color: #2c2c2c;
}

.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: 100;
        /* Ensure clickable */
    }

    /* 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: 100;
    }

    .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 0;
    position: relative;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 64px;
    color: #4a3b32;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: -20px;
    /* Overlap with image slightly */
    position: relative;
    z-index: 10;
}

.hero-image-placeholder img {
    width: 100%;
    /* max-width: 1000px; */
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.cta-section h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-subtext {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-cta {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
    /* Using heading font for button text key */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-solid {
    background-color: #660000;
    /* Dark Maroon */
    color: white;
    border: 2px solid #660000;
}

.btn-solid:hover {
    background-color: #800000;
    border-color: #800000;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: #ede6d6;
    /* Light Beige */
    color: #550000;
    border: 3px solid #550000;
}

.btn-outline:hover {
    background-color: #e0d6c0;
    transform: translateY(-2px);
}

/* 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-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.contact-item {
    text-align: center;
    flex: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-maroon);
    font-size: 24px;
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.divider {
    width: 2px;
    height: 100px;
    background-color: #ccc;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    text-align: justify;
}

.menu-display {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 40px;
}

.menu-group h3 {
    font-family: var(--heading-font);
    color: var(--primary-maroon);
    margin-top: 20px;
    font-size: 24px;
}

.cards-fan {
    position: relative;
    height: 220px;
    width: 200px;
    margin: 0 auto;
}

.card {
    position: absolute;
    width: 140px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    background: #fff;
    transition: transform 0.3s;
}

.c1 {
    transform: rotate(-15deg) translateX(-20px);
    z-index: 1;
}

.c2 {
    transform: rotate(0deg);
    z-index: 2;
}

.c3 {
    transform: rotate(15deg) translateX(20px);
    z-index: 1;
}

.cards-fan:hover .c1 {
    transform: rotate(-25deg) translateX(-40px);
}

.cards-fan:hover .c3 {
    transform: rotate(25deg) translateX(40px);
}

/* Footer */
footer {
    background-color: #f3edddeb;
    /* Matching the beige tone from image */
    padding: 60px 0 20px;
    border-top: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

/* Quick Link Column */
.footer-heading {
    font-family: var(--heading-font);
    font-size: 36px;
    /* Larger as per design */
    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 Column */
.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;
}

/* Logo Column */
.footer-logo {
    text-align: center;
}

.logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
}

.footer-logo-img {
    height: 225px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    margin-bottom: 10px;
    margin-top: 26px;
}

.brand-name {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.tagline {
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    /* Gold color */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.copyright-bar {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {


    .feature-container {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        display: none;
    }

    .menu-display {
        flex-direction: column;
        gap: 60px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   New Design Additions (Services, About, Features)
   ========================================= */

/* Services Section */
.services-section {
    padding: 40px 0;
    text-align: center;
    background-color: #f3edddeb;
    /* Matching the beige tone */
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.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;
}

/* 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: 48px;
    color: #333;
    margin-bottom: 30px;
}

.about-text-content p {
    font-family: var(--body-font);
    font-size: 16px;
    margin-bottom: 20px;
    color: #2c2c2c;
    text-align: justify;
}

.about-text-content .motto {
    font-weight: 700;
    font-style: italic;
    color: #000;
    margin-top: 20px;
    border-left: 4px solid #800000;
    padding-left: 15px;
}

/* 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;
    }

    .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-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;
}

.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.3s;
}

/* 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;
}

/* 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;
}


/* 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%;
        transform: scale(0.95);
        margin: 0 auto;
    }

    .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: 50px 80px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.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;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cert-box {
    width: 250px;
    height: 320px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    overflow: hidden;
    /* Ensure image stays within box */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Or contain, depending on if borders should be visible */
    display: block;
}

.cert-item h4 {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 24px;
    color: #000;
}

/* 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-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reviews-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
    /* Ideally would use JS for real carousel */
    flex-wrap: wrap;
    /* Fallback for no-js layout visibility */
    justify-content: center;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.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;
}

.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;
}

.google-rating-text {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 900;
    margin-top: 20px;
    color: #000;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #f3edddeb;
    text-align: center;
}

.gallery-section .section-title {
    color: #000;
    font-size: 48px;
    margin-bottom: 40px;
}

.gallery-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Allow horizontal scroll if needed */
    padding-bottom: 20px;
    position: relative;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-right {
    background-color: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}

.gallery-btn-container {
    margin-top: 40px;
}

.btn-more-pictures {
    background-color: #800000;
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: var(--heading-font);
    text-transform: capitalize;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* 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: wrap;
        justify-content: center;
    }

    .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;
    }
}

/* =========================================
   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;
}

.blog-card img {
    width: 100%;
    height: 200px;
    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: 50%;
    left: 0;
    width: 100%;
    height: 70%;
    /* Slightly narrower */
    transform: translateY(-50%);
    /* 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: 52px;
    font-family: var(--heading-font);
    color: #800000;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: none;
}

.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: #000;
    font-family: var(--heading-font);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: #333;
    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 */
    }
}

/* =========================================
   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 img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.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;
    }

    /* 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;
}