:root {
            --primary-red: #D90429;
            --deep-blue: #000814;
            --accent-blue: #001D3D;
            --white: #EDF2F4;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --heading-size:30px;
            --section-padding:40px;
        }

        body {
            font-family: 'Outfit', sans-serif;
/*            background-color: var(--deep-blue);*/
            color: var(--white);
            margin: 0;
            overflow-x: hidden;
        }
        .section-margin{
            margin:80px 0px 0px 0px;
        }

        h1, h2, .logo { font-family: 'Cinzel', serif; }

        /* --- Custom Scrollbar --- */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-thumb { background: var(--primary-red); }

        /* --- PRE-LOADER ANIMATION --- */
        .line-reveal {
            overflow: hidden;
            display: block;
        }

        /* --- Header: Fully Responsive --- */
       /* header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 30px 0;
            transition: var(--transition);
        }

        header.sticky {
            padding: 15px 0;
            background: rgba(0, 8, 20, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(217, 4, 41, 0.2);
        }*/

        /* --- Header: Fully Responsive --- */
header {
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    /* নিচের ২ লাইন অবশ্যই যোগ করবেন */
    background: transparent; 
    background: rgba(0, 8, 20, 1);
}

/* যখন মাউস দিয়ে স্ক্রল করবেন তখন ব্যাকগ্রাউন্ড আসবে */
header.sticky {
    padding: 15px 0;
    background: rgba(0, 8, 20, 0.95) !important; /* Deep Blue semi-transparent */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(217, 4, 41, 0.3);
}

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-red) !important;
            text-decoration: none;
            letter-spacing: 2px;
        }

        /* Desktop Nav */
        .nav-link {
            color: var(--white) !important;
            font-weight: 400;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0 15px;
            transition: 0.3s;
        }
        .nav-link:hover { color: var(--primary-red) !important; }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .badge-count {
            background: var(--primary-red);
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
        }

        /* --- Premium Banner --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(0, 8, 20, 0.8), rgba(0, 8, 20, 0.4)), 
                        url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            z-index: -1;
            animation: kenburns 20s infinite alternate;
        }

        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;

        }

        .hero-title span {
            color: var(--primary-red);
        }

        .btn-premium {
            background: var(--primary-red);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-premium:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-5px);
        }

        /* --- Footer Section --- */
        footer {
            background: var(--accent-blue);
            padding: 100px 0 0;
        }

        .footer-logo { font-size: 30px; color: var(--primary-red); margin-bottom: 25px; display: block; }
        .footer-title { color: white; text-transform: uppercase; letter-spacing: 2px; font-size: 16px; margin-bottom: 30px; }
        .footer-link { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
        .footer-link:hover { color: var(--primary-red); padding-left: 10px; }

        .footer-bottom {
            padding: 30px 0;
            background: #00040a;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 80px;
        }

        /*===========*/
        .special-menu-area {
        background-color:#f8f9fa;
        padding:var(--section-padding);
        color:#000;
        overflow: hidden;
    }

    .menu-header h5 {
        color: var(--primary-red);
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
    }

    .menu-header h2 {
        font-family: 'Cinzel', serif;
        font-size:var(--heading-size);
        margin-bottom: 60px;
    }

    /* --- Premium Card Design --- */
    .premium-menu-card {
        background: var(--accent-blue);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 30px;
        border-radius: 0px; /* Sharp edge looks more premium */
        position: relative;
        transition: var(--transition);
        height: 100%;
        z-index: 1;
        overflow: visible;
    }

    /* Hover Effect Background */
    .premium-menu-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 0;
        background: var(--primary-red);
        z-index: -1;
        transition: var(--transition);
    }

    .premium-menu-card:hover::after {
        height: 100%;
    }

    .premium-menu-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }

    /* Floating Image */
    .dish-box {
        width: 180px;
        height: 180px;
        margin: -90px auto 30px; /* Half image stays outside the card */
        position: relative;
    }

    .dish-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 8px solid var(--deep-blue);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        transition: var(--transition);
    }

    .premium-menu-card:hover img {
        transform: rotate(25deg) scale(1.1);
        border-color: var(--white);
    }

    .price-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        font-family: 'Cinzel', serif;
        font-size: 24px;
        color: var(--primary-red);
        font-weight: 700;
        transition: var(--transition);
    }

    .premium-menu-card:hover .price-tag {
        color: var(--white);
    }

    .dish-info h4 {
        font-family: 'Cinzel', serif;
        margin-bottom: 15px;
        font-size: 24px;
        color:#fff;
    }

    .dish-info p {
        color: rgba(237, 242, 244, 0.7);
        font-size: 15px;
        line-height: 1.6;
        transition: var(--transition);
    }

    .premium-menu-card:hover p {
        color: var(--white);
    }

    /* Custom Button */
    .btn-order {
        background: transparent;
        border: 1px solid var(--primary-red);
        color: var(--primary-red);
        padding: 10px 25px;
        margin-top: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 12px;
        font-weight: 600;
        transition: var(--transition);
    }

    .premium-menu-card:hover .btn-order {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary-red);
    }
        /*===========*/


        /*=============*/
        /* সার্ভিস সেকশনের জন্য কাস্টম স্টাইল */
    .services-area {
        background-color:#fff;
        padding:var(--section-padding);
        position: relative;
        overflow: hidden;
    }

    /* ব্যাকগ্রাউন্ডে হালকা টেক্সট ইফেক্ট */
    .bg-watermark {
        position: absolute;
        top: 10%;
        left: -5%;
        font-size: 15vw;
        font-family: 'Cinzel', serif;
        color: rgba(255, 255, 255, 0.02);
        font-weight: 900;
        line-height: 1;
        user-select: none;
        z-index: 0;
    }

    .service-wrapper {
        position: relative;
        z-index: 1;
    }

    /* Uncommon Card Design */
    .service-card {
        background: var(--accent-blue);
        padding: 60px 40px;
        height: 100%;
        position: relative;
        border-left: 3px solid transparent;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    /* কার্ডের পেছনে বড় নাম্বার */
    .service-number {
        position: absolute;
        top: -10px;
        right: 10px;
        font-size: 80px;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        color: rgba(217, 4, 41, 0.05); /* Very faint red */
        transition: var(--transition);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: rgba(217, 4, 41, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: var(--primary-red);
        margin-bottom: 30px;
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); /* ইউনিক শেপ */
        transition: var(--transition);
    }

    .service-card h3 {
        font-family: 'Cinzel', serif;
        font-size: 24px;
        margin-bottom: 20px;
        color: var(--white);
    }

    .service-card p {
        color: rgba(237, 242, 244, 0.6);
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }

    /* --- Hover Effects --- */
    .service-card:hover {
        background: #002855; /* Slightly lighter blue */
        border-left: 3px solid var(--primary-red);
        transform: translateX(10px);
        box-shadow: -20px 20px 40px rgba(0,0,0,0.3);
    }

    .service-card:hover .service-icon {
        background: var(--primary-red);
        color: var(--white);
        clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%); /* শেপ চেঞ্জ হবে */
        transform: scale(1.1);
    }

    .service-card:hover .service-number {
        color: rgba(217, 4, 41, 0.2);
        top: 10px;
    }

    /* সেকশন টাইটেল সজ্জা */
    .accent-line {
        width: 60px;
        height: 4px;
        background: var(--primary-red);
        display: inline-block;
        margin-bottom: 15px;
    }
        /*=============*/


        /*=============*/
        /* --- Premium Product Gallery --- */
    .gallery-section {
        background-color:#fff;
        padding:var(--section-padding);
    }

    .gallery-title h2 {
        font-family: 'Cinzel', serif;
        font-size: var(--heading-size);
        color:#000;
        margin-bottom: 60px;
    }

    /* Grid Setup: 4 Images per row */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .gallery-card {
        position: relative;
        height: 350px;
        overflow: hidden;
        background: var(--accent-blue);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: var(--transition);
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Hover Overlay */
    .card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--deep-blue) 0%, rgba(217, 4, 41, 0.4) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.5s ease;
        padding: 20px;
        text-align: center;
        transform: translateY(20px);
    }

    .gallery-card:hover .card-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-card:hover img {
        transform: scale(1.1) rotate(2deg);
        filter: blur(2px);
    }

    /* Name, Price & Cart Styling */
    .item-name {
        font-family: 'Cinzel', serif;
        font-size: 20px;
        color: var(--white);
        margin-bottom: 5px;
        font-weight: 700;
    }

    .item-price {
        color: var(--white);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

    .cart-btn {
        width: 50px;
        height: 50px;
        background: var(--primary-red);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(217, 4, 41, 0.4);
    }

    .cart-btn:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: scale(1.2);
    }

    /* Responsive for Tablet & Mobile */
    @media (max-width: 1199px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
        .gallery-grid { grid-template-columns: repeat(1, 1fr); }
        .gallery-card { height: 300px; }
    }
        /*=============*/



        /*=============*/
        /* Unique Prefix: em-premium- to avoid conflicts */
        .em-premium-menu-wrapper {
            padding:var(--section-padding);
            background-color: #f8f9fa;
            font-family: 'Outfit', sans-serif;
        }

        .em-premium-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .em-premium-card {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid #f0f0f0;
            padding: 10px;
            border-radius: 0px;
            transition: all 0.3s ease;
        }

        .em-premium-card:hover {
            border-color: #D90429;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .em-premium-img-box {
            flex: 0 0 70px;
            height: 70px;
            margin-right: 12px;
            overflow: hidden;
            border-radius: 6px;
        }

        .em-premium-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .em-premium-info {
            flex-grow: 1;
            min-width: 0; /* Ensures text truncation works */
        }

        .em-premium-name {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            color: #1a1a1a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-transform: uppercase;
        }

        .em-premium-price {
            color: #D90429;
            font-weight: 700;
            font-size: 13px;
            display: block;
            margin: 2px 0;
        }

        .em-premium-cart-btn {
            background: none;
            border: none;
            padding: 0;
            color: #555;
            cursor: pointer;
            font-size: 1.1rem;
            transition: 0.2s;
        }

        .em-premium-cart-btn:hover {
            color: #D90429;
            transform: scale(1.1);
        }

        /* Responsive Breakpoints */
        @media (max-width: 1200px) {
            .em-premium-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .em-premium-grid { grid-template-columns: repeat(1, 1fr); }
        }
        /*=============*/


        /*==============*/
        .em-cat-section {
            padding: 30px 0;
            background-color: #ffffff; /* কন্টেন্ট হাইলাইট করার জন্য সাদা ব্যাকগ্রাউন্ড */
            font-family: 'Outfit', sans-serif;
        }

        /* Header Style */
        .em-cat-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .em-cat-title {
            font-family: 'Teko', sans-serif;
            font-size: 30px;
            color: var(--deep-blue);
            text-transform: uppercase;
            margin: 0;
            line-height: 1;
        }

        .service-title1{
            font-family: 'Cinzel', serif;
            font-size: 30px;
            color: var(--deep-blue);
            text-transform: uppercase;
            margin: 0;
            line-height: 1; 
        }

        .em-cat-see-more {
            border: 1.5px solid var(--primary-red);
            color: var(--deep-blue);
            padding: 10px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .em-cat-see-more:hover {
            background-color: var(--primary-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Grid Setup */
        .em-cat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* Card Design */
        .em-cat-card {
            background-color: var(--white);
            border-radius: 0px;
            padding: 25px 20px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .em-cat-card:hover {
            background-color: var(--accent-blue);
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 8, 20, 0.2);
        }

        /* Icon Box */
        .em-cat-icon-box {
            width: 60px;
            height: 60px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .em-cat-card:hover .em-cat-icon-box {
            background-color: var(--primary-red);
            transform: rotate(360deg);
        }

        .em-cat-icon-box img {
            width: 32px;
            height: 32px;
            transition: var(--transition);
        }

        .em-cat-card:hover .em-cat-icon-box img {
            filter: brightness(0) invert(1); /* আইকন সাদা হয়ে যাবে */
        }

        /* Text Content */
        .em-cat-info h5 {
            font-family: 'Teko', sans-serif;
            font-size: 18px;
            margin: 0;
            color: var(--deep-blue);
            transition: var(--transition);
        }

        .em-cat-info span {
            font-size: 14px;
            color: #666;
            transition: var(--transition);
        }

        .em-cat-card:hover h5 { color: #ffffff; }
        .em-cat-card:hover span { color: var(--white); opacity: 0.8; }

        /* Responsive */
        @media (max-width: 1200px) {
            .em-cat-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .em-cat-grid { grid-template-columns: repeat(1, 1fr); }
            .em-cat-title { font-size: 38px; }
        }
        /*==============*/


        /*===============*/
        .em-about-section {
        padding:var(--section-padding);
        background-color: #ffffff;
        font-family: 'Outfit', sans-serif;
        overflow: hidden;
    }

    /* Left Side: Image with Decorative Elements */
    .em-about-img-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .em-main-food-img {
        width: 100%;
        max-width: 500px;
        z-index: 2;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    }

    /* Right Side: Content */
    .em-about-subtitle {
        color:var(--primary-red);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .em-about-title {
        font-family: 'Cinzel', serif;
        font-size:var(--heading-size);
        color: var(--deep-blue);
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .em-about-text {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 35px;
        max-width: 550px;
    }

    /* Stats Cards */
    .em-stats-container {
        display: flex;
        gap: 20px;
        margin-bottom: 10px;
    }

    .em-stat-card {
        background: var(--white);
        padding: 20px;
        border-radius: 0px;
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
        transition: var(--transition);
    }

    .em-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .em-stat-icon {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .em-stat-info h4 {
        font-family: 'Teko', sans-serif;
        font-size: 28px;
        margin: 0;
        color: var(--deep-blue);
        line-height: 1;
    }

    .em-stat-info p {
        margin: 0;
        font-size: 14px;
        color: #777;
    }

    /* Read More Button */
    .em-btn-read {
        background-color: var(--primary-red);
        color: white;
        padding: 15px 40px;
        border-radius: 0px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: var(--transition);
        border: none;
        font-size: 16px;
    }

    .em-btn-read:hover {
        background-color: var(--accent-blue);
        color: white;
        transform: scale(1.05);
    }

    @media (max-width: 992px) {
        .em-about-title {
            font-size: 22px;
            line-height: 30px;
        }
        .em-stats-container { flex-direction: column; }
    }
        /*===============*/


        /*==============*/
        .em-choose-section {
        padding: 100px 0;
        background-color: #ffffff;
        font-family: 'Outfit', sans-serif;
    }

    /* Left Side: Image with Badge */
    .em-choose-img-box {
        position: relative;
        padding-right: 30px;
    }

    .em-choose-img-box img {
        width: 100%;
        border-radius: 0px;
        box-shadow: 20px 20px 0px var(--white); /* ইউনিক ডিজাইন এলিমেন্ট */
        height:400px;
    }

    .em-experience-badge {
        position: absolute;
        bottom: -30px;
        right: 0;
        background: var(--primary-red);
        color: white;
        padding: 30px;
        border-radius: 0px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(217, 4, 41, 0.3);
        animation: em-float 3s ease-in-out infinite;
    }

    @keyframes em-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .em-experience-badge h2 {
        font-family: 'Teko', sans-serif;
        font-size: 50px;
        margin: 0;
        line-height: 1;
    }

    /* Right Side: Accordion-Style Cards */
    .em-choose-title {
        font-family: 'Cinzel', serif;
        font-size: var(--heading-size);
        color: var(--deep-blue);
        line-height:40px;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    .em-choose-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

   /* .em-choose-card {
        display: flex;
        align-items: center;
        padding: 25px;
        background: var(--white);
        border-radius: 15px;
        border-left: 5px solid transparent;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }*/

    .em-choose-card {
    display: flex;
    align-items: center;
    /* padding: 25px; */
    /* background: var(--white); */
    /* border-radius: 15px; */
    /* border-left: 5px solid transparent; */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .em-choose-card:hover {
        /*background: #ffffff;
        border-left-color: var(--primary-red);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
        transform: translateX(10px);
    }

    /* Floating Number Indicator */
    .em-choose-number {
        position: absolute;
        right: -10px;
        bottom: -10px;
        font-family: 'Teko', sans-serif;
        font-size: 80px;
        color: rgba(0,0,0,0.03);
        line-height: 1;
        transition: var(--transition);
    }

    .em-choose-card:hover .em-choose-number {
        color: rgba(217, 4, 41, 0.08);
        transform: scale(1.2);
    }

    .em-choose-icon {
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 24px;
        color: var(--primary-red);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
    }

    .em-choose-card:hover .em-choose-icon {
        background: var(--primary-red);
        color: #fff;
    }

    .em-choose-info h4 {
        font-family: 'Teko', sans-serif;
        font-size: 20px;
        margin: 0 0 5px 0;
        color: var(--deep-blue);
    }

    .em-choose-info p {
        margin: 0;
        font-size: 15px;
        color: #666;
        max-width: 400px;
    }

    .story-btn{
       text-transform: uppercase;
    }

    @media (max-width: 992px) {
        .em-choose-img-box { margin-bottom: 60px; padding-right: 0; }
        .em-choose-title { font-size: 40px; }
    }
        /*==============*/


        /*================*/
        .em-blog-section {
        padding: 80px 0;
        background-color: #ffffff;
        font-family: 'Outfit', sans-serif;
    }

    .em-blog-card {
        background: #fff;
        border: none;
        transition: var(--transition);
        height: 100%;
    }

    /* Image Styling */
    .em-blog-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 0; /* ছবিতে কোনো রেডিয়াস নেই */
        display: block;
    }

    /* Content Area */
    .em-blog-body {
        padding: 25px 0; /* ডানে বামে প্যাডিং নেই ছবির মতো */
        background: #F9F9F9; /* ছবির মতো হালকা গ্রে ব্যাকগ্রাউন্ড */
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Meta Info (Author & Comments) */
    .em-blog-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        font-size: 14px;
        color: #666;
    }

    .em-blog-meta i {
        color: #444;
        margin-right: 5px;
    }

    /* Title Styling */
   .em-blog-title {
   
    font-size: 15px;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

    .em-blog-title:hover {
        color: var(--primary-red);
    }

    /* Description */
    .em-blog-desc {
        font-size: 15px;
        color: #777;
        line-height: 1.6;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* ২ লাইনের পর ডট ডট হবে */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Hover effect on card */
    .em-blog-card:hover {
        transform: translateY(-5px);
    }

    @media (max-width: 768px) {
        .em-blog-img { height: 220px; }
    }
        /*================*/

        /* --- Mobile Responsive CSS --- */
        @media (max-width: 991px) {
            header { padding: 15px 0; background: var(--deep-blue); }
            .col-mobile-left { display: flex; align-items: center; gap: 15px; }
            .hero { text-align: center; }
            .hero-title { font-size: 25px; }
            .offcanvas { background: var(--deep-blue); width: 300px; border-right: 2px solid var(--primary-red); }
        }

        @media (min-width:320px) and (max-width:575px){
            .story-btn{
                display: none;
            }
            .btn-premium{
                margin-left:8%;
            }
            .menu-header h2{
                font-size:25px;
            }
            .em-choose-title {
                font-size: 25px;
            }
            .service-title1{
                font-size: 25px;
            }
        } 


       /* ============*/
       .contact-section{
        padding:var(--section-padding);
       }
       .contact-section .form-control{
        border:1px solid rgba(0,0,0,.3);
        padding:10px 20px;
        border-radius: 0px!important;
       }
       .scard{
         border:1px solid rgba(0,0,0,.3);
         padding:20px;
         border-radius: 0px!important;
         height:100%;
         text-align: center;
       }
       /* ============*/



     /*  ================*/
     /* White Theme Custom Styles */
.reservation-input-light {
    background: #F8F9FA !important; /* হালকা গ্রে ব্যাকগ্রাউন্ড */
    border: 1px solid #DEE2E6 !important; /* হালকা বর্ডার */
    color: var(--deep-blue) !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    transition: var(--transition);
}

.reservation-input-light::placeholder {
    color: #ADB5BD !important;
}

.reservation-input-light:focus {
    background: #ffffff !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 0.25rem rgba(217, 4, 41, 0.1) !important;
    outline: none;
}

/* Button Hover Animation */
.reservation-section .btn-danger:hover {
    background: var(--deep-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 8, 20, 0.2) !important;
}
     /*  ================*/