
/*banner_right_text_left_image*/

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 20px;
}

/* BANNER */
.banner {
    height: 95vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    max-height: 250px !important;
}

/* DARK LEFT OVERLAY */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 35%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* CONTENT */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* OPTIONAL TAG (if you use it later) */
.banner-tag {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #d69f5a;
}

/* HEADING */
.banner h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* GOLD TEXT */
.banner h1 span {
    color: #d69f5a;
}

/* PARAGRAPH */
.banner p {
    margin: 20px 0 35px;
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 520px;
}

/* BUTTON */
.btn {
    background: #d69f5a;
    padding: 12px 26px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b8933f;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 54px;
    }

    .container {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 80px 0;
    }

    .banner h1 {
        font-size: 42px;
    }

    .banner p {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 34px;
    }
}


/*Menu Page*/
/* =========================
   BASE STYLES
========================= */
body {
    background: #fff;
    color: #212529;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

/* =========================
   HEADER
========================= */
.menu-header {
    text-align: center;
    padding: 60px 20px 30px;
    max-width: 1200px; /* Center Header */
    margin: 0 auto;
}

.menu-header h1 {
    font-size: 42px !important;
}

.menu-header p {
    color: #6c757d;
}



/* =========================
   FILTER BAR
========================= */
.menu-filter-wrapper {
    position: relative;
}

.menu-filter {
    background: #0a1b2f;
    padding: 12px 0;
    border-bottom: 2px solid #d69f5a;
    
   
}

.menu-filter ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0 20px; /* Safe space sides */
}

.menu-filter a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu-filter a:hover,
.menu-filter a.active {
    color: #d69f5a;
}

/* Sticky state - Jab scroll ho tab bhi center rahe */
.menu-filter.sticky {
    position: fixed;
    z-index: 1000;
    left: 50%; /* Centering trick */
    transform: translateX(-50%); /* Centering trick */
    width: 100%; /* Container width ke andar rehne ke liye */
    /*max-width: 1200px;*/
}

/* Placeholder */
.menu-filter-placeholder.active {
    height: 60px;
}

/* =========================
   BUTTON MODE (TOP STATE)
========================= */
.menu-filter.at-top {
    background: transparent;
    border-bottom: none;
    text-align: center;
}

.menu-filter.at-top ul {
    justify-content: center;
}

.menu-filter.at-top a {
    background: #0a1b2f;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
}

/* =========================
   SECTIONS
========================= */
.menu-section {
    padding: 70px 0; /* Inner div handle karega padding */
    scroll-margin-top: 150px;
    position: relative; /* Background image ke liye zaroori */
    overflow: hidden;   /* Image ko corner se cut karne ke liye */
}

.menu-section:nth-of-type(odd) {
    background: #e1e3e6;
}

.menu-section:nth-of-type(even) {
    background: #fff;
}

/* ADDED: Background Image Styling */
.why-choose-us-bg-shape {
    z-index: 0;
    line-height: 0;
}

.why-choose-us-bg-shape img {
    height: 400px;
    width: auto;
    opacity: 0.2;
}

.inner {
    max-width: 1200px; /* Content Center */
    margin: 0 auto;    /* Content Center */
    padding: 0 20px;   /* Left/Right Space */
    position: relative; /* Content ko image upar lane ke liye */
    z-index: 1;         /* Content ko image upar lane ke liye */
}

.menu-title {
    font-size: 36px;
}

.menu-description {
    color: #6c757d;
    margin-bottom: 40px;
}

/* =========================
   GRID ITEMS
========================= */
.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.menu-content h4 {
    font-size: 1.8rem;
    margin-top: 16px;
}

.menu-content p {
    font-size: 16px;
    color: #6c757d;
}

/* =========================
   LINKS RESET
========================= */
.menu-page a {
    color: #212529;
    text-decoration: none;
}

.menu-page a:hover {
    color: #212529;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-img img {
        height: 200px;
    }

    .menu-filter {
        overflow-x: auto;
        white-space: nowrap;
    }

    .menu-filter ul {
        justify-content: flex-start;
        gap: 15px;
        padding: 0 15px;
        min-width: max-content;
    }

    .menu-filter a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .menu-filter::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 600px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-title {
        font-size: 28px;
    }

    .menu-description {
        font-size: 16px;
    }

    .menu-filter a {
        font-size: 13px;
    }
    
    .why-choose-us-bg-shape img {
        height: 200px; /* Mobile par choti image */
    }
}


/*//coperate catering*/


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* SECTION */
.services {
    padding: 100px 0;
    background: #f5f6f8;
    text-align: center;
}

/* TITLE */
.services h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 95%;
    margin: 0 auto 50px;
    color: #0a1b2f;
    font-size: 16px;
    line-height: 1.6;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #eee;
    transition: 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ICON BADGE */
.card-icon {
    position: absolute;
    top: 140px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #0d1b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: #d4a84f;
    font-size: 18px;
}

/* CONTENT */
.card-content {
    padding: 40px 20px 20px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* LIST */
.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 18px;
}

/* CUSTOM BULLET */
.card-content li::before {
    content: "✔";
    position: absolute;
    left: -5px;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #c9a24a;
    color: #c9a24a;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}


.card-content h3 a{
    color:#0a1b2f;
}

/*contact_section*/
    .cta-features {
    padding: 60px 0;
    background: #ffffff;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(90deg, #0b1d3a, #0a2a5c);
    color: #fff;
    border-radius: 14px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

body.shaden-brand-shaden-cateringt .cta-icon {
    width: 58px;
    height: 58px;
    border: 2px solid #d4a84f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a84f;
    font-size: 22px;
    background: #d69f5a;
}




.cta-box h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cta-box p {
    margin: 4px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}/*

.cta-btn {
    background: #7eaf71;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
*/


/* FEATURES ROW */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    background: #fff;
}

.feature-item {
    padding: 10px 25px;
    position: relative;
}

/* vertical divider */
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e6e6e6;
}

body.shaden-brand-shaden-cateringt .feature-icon {
    font-size: 34px;
    color: #d69f5a;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2)::after,
    .feature-item:nth-child(4)::after {
        display: none;
    }

    .cta-box {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    
    .cta-left{
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .features-row {
        grid-template-columns: 1fr;
    }

    .feature-item::after {
        display: none;
    }
}



/*contact_section*/

    .cta-features {
    padding: 60px 0;
    background: #ffffff;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(90deg, #0b1d3a, #0a2a5c);
    color: #fff;
    border-radius: 14px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-icon {
    width: 58px;
    height: 58px;
    /*border: 2px solid #7EAF71;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a84f;
    font-size: 22px;
    /*background:#7EAF71;*/
}

.cta-box h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cta-box p {
    margin: 4px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/*.cta-btn {
    background: #7eaf71;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}*/
/*
.cta-btn:hover {
    background: #c7963f;
}*/

/* FEATURES ROW */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    background: #fff;
}

.feature-item {
    padding: 10px 25px;
    position: relative;
}

/* vertical divider */
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e6e6e6;
}

.feature-icon {
    font-size: 40px;
    /*color: #7eaf71;*/
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2)::after,
    .feature-item:nth-child(4)::after {
        display: none;
    }

    .cta-box {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .features-row {
        grid-template-columns: 1fr;
    }

    .feature-item::after {
        display: none;
    }
}


/*
.cta-btn: {
    transition: 0.3s ease;
    display: inline-block;
    padding: 12px 24px;
    background: #7eaf71;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;


}*/

.cta-btn:hover{
color :#fff;
background:transparent;
}




/*popular destination*/

.popular-destination-section {
    padding: 90px 0;
    background: #fff;
}

.popular-destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.popular-destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.popular-destination-card:hover {
    transform: translateY(-10px);
}

.popular-destination-image {
    display: block;
    height: 260px;
    overflow: hidden;
}

.popular-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.popular-destination-card:hover img {
    transform: scale(1.08);
}

.popular-destination-content {
    padding: 25px;
}

.popular-destination-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.popular-destination-content h3 a {
    text-decoration: none;
    color: #111;
}

.popular-destination-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}



/*destination categories layout*/


.destination-categories-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.section-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
}

.destination-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.destination-category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.4s ease;
    height: 320px;
}

.destination-category-card:hover {
    transform: translateY(-8px);
}

.destination-category-image {
    height: 100%;
}

.destination-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.destination-category-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.destination-category-content span {
    color: #ddd;
    font-size: 15px;
}

/* Itinerarary Layout */

.itinerary-section {
    padding: 90px 0;
    background: #f5f7fb;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.itinerary-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    text-decoration: none;
    transition: 0.4s ease;
}

.itinerary-card:hover {
    transform: translateY(-8px);
}

.itinerary-image {
    width: 100%;
    height: 100%;
}

.itinerary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itinerary-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.itinerary-content h3 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}
