body {
            background-color: #01381C;
            color: white;
            margin: 0;
            overflow-x: hidden;
        }

        .text-gold {
            color: #FEAB33;
        }

        .bg-gold {
            background-color: #FEAB33;
        }

        .border-gold {
            border-color: #FEAB33;
            border-width: 1px;
        }

        .btn-primary {
            background-color: #FEAB33;
            color: #01381C;
            padding: 0.5rem 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background-color: #F49541;
        }

        .btn-outline {
            border: 1px solid #FEAB33;
            color: #FEAB33;
            padding: 0.5rem 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            background-color: rgba(243, 134, 39, 0.1);
        }

        .nav-link {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s;
            padding-bottom: 0.5rem;
        }

        .section-separator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-separator::before,
        .section-separator::after {
            content: "";
            height: 1px;
            background-color: #FEAB33;
            width: 60px;
        }

        .card-bg {
            background-color: #0B4024;
        }

        .ribbon-shape {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
        }

        /* Ornate frames and gallery styles */
        .ornate-card {
            background: linear-gradient(180deg, rgba(1, 56, 28, 0.85), rgba(1, 56, 28, 0.95));
            border: 1px solid rgba(243, 134, 39, 0.12);
        }

        .ornate-inner {
            border: 1px solid rgba(243, 134, 39, 0.25);
            padding: 1rem;
            position: relative;
        }

        .ornate-inner .corner {
            position: absolute;
            width: 44px;
            height: 44px;
            opacity: .95;
        }

        .ornate-inner .corner.tl {
            left: -18px;
            top: -18px;
            transform: rotate(-90deg);
        }

        .ornate-inner .corner.tr {
            right: -18px;
            top: -18px;
        }

        .ornate-inner .corner.bl {
            left: -18px;
            bottom: -18px;
            transform: rotate(180deg);
        }

        .ornate-inner .corner.br {
            right: -18px;
            bottom: -18px;
            transform: rotate(90deg);
        }

        .center-ornament {
            width: 86px;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .gallery-thumb {
            width: 84px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(243, 134, 39, 0.85);
            flex: 0 0 84px;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-arrow {
            width: 36px;
            height: 36px;
            border-radius: 9999px;
            border: 1px solid rgba(243, 134, 39, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(1, 56, 28, 0.45);
        }

        .gallery-strip {
            gap: 12px;
        }

        .gallery-thumb.active {
            transform: scale(1.12);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* marquee animations */
        .marquee {
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .marquee-top .marquee-track {
            animation: marquee-right var(--marquee-duration) linear infinite;
        }

        .marquee-bottom .marquee-track {
            animation: marquee-left var(--marquee-duration) linear infinite;
        }

        .marquee-track.reverse {
            animation-direction: reverse;
        }

        @keyframes marquee-left {
            from {
                transform: translateX(0%);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @keyframes marquee-right {
            from {
                transform: translateX(-50%);
            }

            to {
                transform: translateX(0%);
            }
        }

        @media (min-width:1024px) {
            .marquee .gallery-thumb {
                flex: 0 0 calc((100% - 48px)/5);
                width: calc((100% - 48px)/5);
                height: 132px;
            }

            .gallery-thumb {
                height: 132px;
            }
        }

        /* Testimonial bar */
        .testimonial-bar {
            background: linear-gradient(90deg, #F2B730, #E1A130);
            color: #012613;
            padding: 18px 0;
        }

        .testimonial-card {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 220px minmax(500px, 1fr) 260px;
            align-items: center;
            gap: 28px;
        }

        .testimonial-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .testimonial-left h4 {
            font-family: 'Playfair Display', serif;
            color: #012613;
            font-size: 26px;
            margin: 0 0 6px 0;
        }

        .testimonial-stars {
            color: #012613;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .testimonial-quote {
            font-family: Playfair Display, serif;
            font-size: 22px;
            line-height: 1.35;
            color: #012613;
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
            font-style: italic;
        }

        .testimonial-meta {
            color: #012613;
            font-weight: 700;
            margin-top: 10px;
        }

        .testimonial-dots {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
            margin-top: 18px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            background: rgba(1, 56, 28, 0.18);
            border-radius: 9999px;
        }

        .testimonial-dot.active {
            background: #012613;
        }

        .testimonial-badges {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-end;
            justify-content: center;
        }

        .testimonial-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #012613;
            font-weight: 700;
            text-align: right;
            text-transform: uppercase;
            font-size: 13px;
        }

        .testimonial-badge img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            opacity: 0.95;
        }

        .site-header {
            transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
        }

        .site-header.is-scrolled {
            background-color: rgba(1, 38, 19, 0.92);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
        }

        .mobile-menu-backdrop {
            transition: opacity 0.25s ease;
        }

        .mobile-menu-panel {
            transition: transform 0.3s ease;
        }

        @media (min-width: 768px) {

            .mobile-menu-backdrop,
            .mobile-menu-panel {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hero-bottom-border {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 6px;
                z-index: 40;
                pointer-events: none;
            }

            .hero-bottom-border::before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: 1px;
                height: 2px;
                background: linear-gradient(90deg, rgba(243, 134, 39, 0) 0%, #FEAB33 12%, #F49541 50%, #FEAB33 88%, rgba(243, 134, 39, 0) 100%);
                box-shadow: 0 2px 8px rgba(243, 134, 39, 0.06);
            }

            .hero-bottom-border::after {
                content: "";
                position: absolute;
                left: 6px;
                right: 6px;
                bottom: 0;
                height: 1px;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.0));
            }
        }

        /* WHY CHOOSE SECTION */
        .why-choose-section {
            background: #FEAB33;
            /* Match with your site's theme color */
            padding: 40px 0;
            text-align: center;
        }

        .why-choose-section .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 60px;
        }



        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            text-align: center;
            padding: 40px 0;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            background: #5F1202;
            /* Dark brown circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .feature-icon i {
            color: #f4b545;
            /* Golden icon */
            font-size: 22px;
        }

        .feature-item h3 {
            font-size: 20px;
            color: #000;
            margin: 0 0 10px;
        }

        .feature-item p {
            font-size: 15px;
            color: #000;
            line-height: 1.5;
            max-width: 180px;
            margin: 0 auto;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .feature-icon i {
                font-size: 20px;
            }
        }

        @keyframes slowSpin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }

        }

         .premium-spin {
            animation: slowSpin 18s linear infinite;
        }

         /* Custom styling matching image_98ed84.jpg */
        .gallery-section-bg {
            background-color: #F6F3EB;
        }

        .tab-btn-active {
            background-color: #011E10 !important;
            color: #FEAB33 !important;
            border-color: #011E10 !important;
        }

        .dastaan-catering-banner-bg {
            background-color: #2D140F;
        }

        .dastaan-tailor-made-bg {
            background-color: #012412;
        }

        /* Unique Style Overrides for the new Catering Reviews Block Layout */
        .dastaan-review-banner-bg {
            background-color: #012111; 
            background-image: radial-gradient(circle at center, rgba(1, 40, 21, 0.6) 0%, rgba(1, 25, 12, 0.9) 100%);
        }

        .review-dot {
            transition: all 0.3s ease;
        }

        /* Dedicated subtle backgrounds for inner circular icons matching the design layout */
        .dastaan-feature-icon-wrapper {
            background: radial-gradient(circle, #013119 0%, #001f0f 100%);
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
        }

        /* Custom Unique Layout CSS Rules for the image_54429b.jpg shop section */
        .dastaan-shop-container {
            background-color: #FAF6F0;
        }

        .dastaan-shop-line-separator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .dastaan-shop-line-separator::before,
        .dastaan-shop-line-separator::after {
            content: "";
            height: 1px;
            background-color: #D89A2B;
            width: 40px;
        }

        /* ----------------------------------------------------
           NEW PROMOTION BANNER UNIQUE STYLES (FROM IMAGE)
        ---------------------------------------------------- */
        .dastaan-promo-container {
            background-color: #FAF6F0;
        }
        .dastaan-promo-card-bg {
            background-color: #012815;
        }
        .dastaan-promo-divider {
            background-color: rgba(254, 171, 51, 0.3);
            width: 1px;
        }
        @media (max-width: 1023px) {
            .dastaan-promo-divider {
                width: 100%;
                height: 1px;
            }
        }


         /* Unique Custom Class Styles for Content Info Grid */
        .dastaan-contact-section {
            background-color: #FAF6F0;
        }
        .dastaan-card {
            background-color: #FFFFFF;
            border: 1px solid #EAE5DD;
            color: #01381C;
        }
        .dastaan-divider {
            background-image: url('assets/img/border-bottom.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        .dastaan-input-icon {
            color: #6B7280;
        }
        .dastaan-btn-dark {
            background-color: #012613;
            color: #FFFFFF;
            transition: all 0.3s ease;
        }
        .dastaan-btn-dark:hover {
            background-color: #0B4024;
            color: #FEAB33;
        }
        .dastaan-alert-box {
            background-color: #EBF4EF;
            border: 1px solid #D1E4DA;
        }

        /* Unique Custom Class Styles for Find Us & Event Sections */
        .dastaan-find-us-section {
            background-color: #FAF6F0;
        }
        .dastaan-outer-box {
            background-color: #FFFFFF;
            border: 1px solid #EAE5DD;
        }
        .dastaan-map-card {
            border: 1px solid #EAE5DD;
            background-color: #FFFFFF;
        }
        .dastaan-badge-dark {
            background-color: #012613;
            color: #FFFFFF;
        }
        .dastaan-event-banner {
            background-color: #012613;
            border: 1px solid rgba(254, 171, 51, 0.2);
        }
        .dastaan-btn-outline-accent {
            border: 1px solid rgba(254, 171, 51, 0.6);
            color: #FFFFFF;
            transition: all 0.3s ease;
        }
        .dastaan-btn-outline-accent:hover {
            background-color: #FEAB33;
            color: #012613;
            border-color: #FEAB33;
        }

         /* Unique Custom Class Styles for Careers Why Section */
      .dastaan-careers-why-section {
        background-color: #faf6f0;
      }
      .dastaan-why-divider {
        background-image: url("assets/img/border-bottom.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
      }
      .dastaan-value-col {
        border-color: #e2ddd5;
      }
      .dastaan-value-icon {
        color: #01381c;
      }

      /* Unique Custom Class Styles for Careers Application Form (image_ee7aa3.jpg) */
      .dastaan-apply-section {
        background-color: #faf6f0;
      }
      .dastaan-apply-container {
        background-color: #012613;
        border: 1px solid rgba(254, 171, 51, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }
      .dastaan-form-input {
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        transition: all 0.3s ease;
      }
      .dastaan-form-input:focus {
        border-color: #feab33;
        background-color: rgba(255, 255, 255, 0.06);
      }
      .dastaan-form-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
      .dastaan-custom-file-upload::-webkit-file-upload-button {
        visibility: hidden;
        display: none;
      }
      .dastaan-custom-file-upload::before {
        content: "Choose File";
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        padding: 5px 12px;
        outline: none;
        white-space: nowrap;
        cursor: pointer;
        font-weight: 400;
        font-size: 13px;
        color: #ffffff;
        margin-right: 12px;
        transition: all 0.2s ease;
      }
      .dastaan-custom-file-upload:hover::before {
        background: rgba(255, 255, 255, 0.18);
        border-color: #feab33;
      }
      .dastaan-btn-submit {
        background-color: #faf6f0;
        color: #012613;
        font-weight: 700;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
      }
      .dastaan-btn-submit:hover {
        background-color: #feab33;
        color: #012613;
      }
      /* Unique Custom Class Styles for Privacy Policy Content Layout */
        .dastaan-policy-section {
            background-color: #FAF6F0;
        }
        .dastaan-policy-box {
            background-color: #FFFFFF;
            border: 1px solid #EAE5DD;
            color: #333333;
        }
        .dastaan-policy-box h3 {
            color: #01381C;
            font-family: 'Playfair Display', serif;
        }