:root {
    --primary: #B53E3E;
}

/* GLOBAL */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}
/* ================= NAVBAR ================= */
.custom-nav {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.custom-nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ================= LOGO ================= */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ================= NAV MENU ================= */
.navbar-nav {
    gap: 34px; /* increased desktop spacing */
}

/* ================= NAV LINKS ================= */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #222 !important;
    position: relative;
    padding: 8px 0 !important;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* UNDERLINE EFFECT */
.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* HOVER */
.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::before {
    width: 100%;
}

/* ACTIVE */
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::before {
    width: 100%;
}

/* ================= DROPDOWN FIX ================= */
.dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
}

/* CUSTOM DROPDOWN ICON */
.custom-dropdown::after {
    content: "▾";
    border: none !important;
    font-size: 12px;
    margin-left: 6px;
    vertical-align: middle;
    transition: 0.3s ease;
    position: relative;
    top: 1px;
}

.dropdown:hover .custom-dropdown::after {
    transform: rotate(180deg);
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    animation: dropdownFade 0.3s ease;
    margin-top: 12px;
}

/* DROPDOWN ITEM */
.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f5f2;
    color: var(--primary);
    padding-left: 24px;
}

/* DROPDOWN ANIMATION */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ================= CONTACT BUTTON ================= */
.contact-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 10px 0px 10px 0px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #922a24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(181, 42, 34, 0.25);
}

/* ================= TOGGLER ================= */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
    box-shadow: 0 8px 0 #222;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* ================= LARGE TABLET ================= */
@media (max-width: 1199px) {
    .navbar-nav {
        gap: 22px;
    }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
    .custom-nav {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        padding: 12px 0;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 6px; /* reduced mobile spacing */
    }

    .nav-link {
        width: 100%;
        padding: 10px 0 !important;
    }

    .nav-link::before {
        bottom: 2px;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 45px;
    }

    .dropdown > .nav-link {
        display: inline-flex;
        align-items: center;
    }

    .dropdown-menu {
        border-radius: 10px;
        box-shadow: none;
        background: #f8f8f8;
        margin-top: 8px;
        padding: 8px 0;
        width: 100%;
    }

    .dropdown-item {
        padding: 10px 16px;
    }

    .contact-btn {
        margin-top: 10px;
        width: fit-content;
    }

    .logo-img {
        height: 45px;
    }
}
/* ================= HERO ================= */
.hero {
    background: url('../img/bg.png');
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    padding: 40px 0px;
}

.hero-title {
    font-family: 'Vortigra', serif;
    font-size: 50px;
    line-height: 75px;
    color: #222;
}

.hero-title span {
    color: var(--primary);
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 10px 0px 10px 0px;
    font-size: 15px;
    margin-right: 10px;
}

.btn-outline-dark {
    border: 1px solid #999;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: #922a24;
}

/* RIGHT IMAGE */
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 70px 0 0 70px;
    border-radius: 20px;
}

/* ================= ANIMATION ================= */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .hero {
        text-align: center;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 45px;
    }

    .hero-right img {
        padding: 0;
        margin-top: 30px;
    }

    .navbar-nav {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link {
        margin: 10px 0;
    }
}


/* ================= WHY SECTION ================= */
.why-section {
    background: #B53E3E;
    padding: 50px 0;
    color: #fff;
    position: relative;
}

/* LEFT TEXT */
.why-title {
    font-family: 'Vortigra', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 350px;
}

/* FEATURES */
.why-features {
    align-items: center;
}

.feature-box {
    text-align: center;
    transition: 0.3s;
}

.feature-box img {
    width: 70px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    /* makes icons white */
}

.feature-box p {
    font-size: 18px;
    margin: 0;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .why-section {
        text-align: center;
    }

    .why-desc {
        margin: 0 auto 20px;
    }

    .feature-box {
        margin-bottom: 20px;
    }
}


/* ================= ABOUT SECTION ================= */
.about-section {
    background: #EAE1D2;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-heading {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
    align-items: flex-start; /* Added for better alignment */
}

/* LABEL */
.about-label {
    font-size: 13px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 10px;
}

/* TITLE */
.about-title {
    font-family: 'Vortigra', serif;
    font-size: 42px;
    line-height: 1.4;
    color: #222;
    max-width: 900px;
}

.about-title .highlight {
    color: #B53E3E;
}

/* TEXT */
.about-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTON */
.explore-btn {
    background: #B53E3E;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px 0px 10px 0px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

.explore-btn:hover {
    background: #922a24;
    color: #fff;
}

/* DECOR LEFT LEAF */
.about-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 80px;
    height: 110px;
    background: url('../img/leaf.svg') no-repeat center/contain;
    opacity: 1;
    z-index: 1;
}

/* DECOR RIGHT SPOON */
.about-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 1%;
    width: 255px;
    height: 152px;
    background: url('../img/spoon.svg') no-repeat center/contain;
    opacity: 1;
    z-index: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .about-heading {
        gap: 60px;
    }
    
    .about-title {
        font-size: 38px;
    }
    .about-img-large{
        width:100%
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
        text-align: center;
    }

    .about-heading {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }

    .about-title {
        font-size: 32px;
        text-align: center;
        max-width: 100%;
    }

    .about-text {
        font-size: 15px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the button on mobile */
    .explore-btn {
        margin: 0 auto;
    }

    /* Adjust decorative elements for smaller screens */
    .about-section::before {
        width: 60px;
        height: 80px;
        bottom: 10%;
    }

    .about-section::after {
        width: 180px;
        height: 110px;
        top: 5%;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-heading {
        gap: 30px;
    }

    .about-section::before {
        width: 45px;
        height: 65px;
        bottom: 5%;
    }

    .about-section::after {
        width: 140px;
        height: 85px;
        top: 3%;
        right: -20px; /* Slight adjustment to prevent overflow */
    }
}


/* ================= SERVE SECTION ================= */
.serve-section {
    background: url('../img/why_bg.png');
    padding: 60px 0;
    position: relative;
}

/* TITLE */
.serve-title {
    font-family: 'Vortigra', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

/* DECOR DIVIDER */
.serve-divider {
    width: 256px;
    height: 25px;
    margin: 0 auto 50px;
    background: url('../img/divider.png') no-repeat center/contain;
}

/* CARD */
.serve-card {
    background: #EAE1D2;
    border-radius: 120px 120px 1px 1px;
    padding: 60px 20px 25px;
    position: relative;
    height: 100%;
    transition: 0.3s;
}

/* ICON */
.serve-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #B53E3E;
    border: 10px solid #eeede4;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serve-icon img {
    width: 60px;
    filter: brightness(0) invert(1);
}

/* TEXT */
.serve-card h4 {
    font-family: 'Vortigra', serif;
    font-size: 24px;
    margin-top: 80px;
    margin-bottom: 20px;
}

.serve-card p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 250px;
}

/* HOVER */
.serve-card:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .serve-title {
        font-size: 28px;
    }

    .serve-card {
        padding: 50px 15px 20px;
    }

    .serve-icon {
        width: 65px;
        height: 65px;
        top: -30px;
    }

    .serve-icon img {
        width: 30px;
    }
}





/* SECTION */
.menu-section {
    background: #f3efe9;
    padding: 60px 0;
}

/* TITLE */
.menu-title {
    font-family: 'Vortigra', serif;
    font-size: 42px;
}

/* DIVIDER */
.menu-divider {
    width: 250px;
    height: 25px;
    background: url('../img/divider.png') no-repeat center/contain;
    margin: 10px 0 30px;
}

/* TEXT */
.menu-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* BUTTON */
.menu-btn {
    background: #B53E3E;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 20px;
}

.menu-btn:hover {
    background: #922a24;
    color: #fff;
}

/* RIGHT IMAGE */
.menu-main-img {
    max-width: 90%;
}

/* ================= JOINED CARD ================= */
.menu-combined {
    display: flex;
    margin-top: 0px;
    border-radius: 0px 0px 50px 50px;
    overflow: hidden;
}

/* BOTH BOX */
.menu-box {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    align-items: center;
}

/* VEG */
.veg-box {
    background: #B53E3E;
    color: #fff;
}

/* NON VEG */
.nonveg-box {
    background: #e7ded4;
}

/* CONTENT */
.menu-box-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-box-content.right {
    justify-content: space-between;
    width: 100%;
}

/* TEXT */
.menu-box h4 {
    font-family: 'Vortigra', serif;
    font-size: 32px;
    margin: 0;
}

.menu-box span {
    font-size: 16px;
}

/* IMAGE */
.menu-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .menu-main-img {
        margin-top: 30px;
        width: 100%;
    }

    .menu-combined {
        flex-direction: column;
        border-radius: 20px;
    }

    .menu-box {
        justify-content: center;
        text-align: center;
    }

    .menu-box-content.right {
        justify-content: center;
    }
}


/* SECTION */
.gallery-section {
    padding: 80px 0;
    background: #EAE1D2;
}

/* TITLE */
.gallery-title {
    font-family: 'Vortigra', serif;
    font-size: 40px;
}

.gallery-divider {
    width: 250px;
    height: 25px;
    background: url('../img/divider.png') no-repeat center/contain;
    margin-top: 5px;
}

/* TABS */
.gallery-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #d4d4d4;
    width: 100%;
    gap:100px;

}

.tab-btn {
    background: none;
    border: none;
    font-size: 24px;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    font-family: 'vortigra', serif;
}

.tab-btn.active {
    border-color: #B53E3E;
}

/* CONTENT */
.gallery-content {
    display: none;
    margin-top: 30px;
}

.gallery-content.active {
    display: block;
}

/* ================= LAYOUT ================= */
.gallery-wrapper {
    display: flex;
    gap: 15px;
}

/* LEFT */
.gallery-wrapper .left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-wrapper .left .big {
    height: 320px;
}

.gallery-wrapper .left-bottom {
    display: flex;
    gap: 15px;
}

.gallery-wrapper .left-bottom a {
    flex: 1;
    height: 180px;
}

/* RIGHT */
.gallery-wrapper .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-wrapper .right-top {
    display: flex;
    gap: 15px;
}

.gallery-wrapper .right-top a {
    flex: 1;
    height: 200px;
}

.right .bottom {
    height: 100%;
}

/* IMAGES */
.gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.gallery-wrapper a:hover img {
    transform: scale(1.05);
}

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.video-grid img {
    width: 100%;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .gallery-wrapper {
        flex-direction: column;
    }

    .right-top {
        flex-direction: column;
    }

    .left .big {
        height: 250px;
    }

    .right-top a,
    .right .bottom {
        height: 200px;
    }
}

/* ================= ACHIEVEMENT SECTION ================= */
.achievement-section {
    background: #B53E3E;
    padding: 50px 0;
    color: #fff;
    position: relative;
}

/* LEFT */
.ach-title {
    font-family: 'Vortigra', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.ach-text {
    font-size: 14px;
    opacity: 0.9;
    max-width: 260px;
}

/* RIGHT STATS */
.ach-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* EACH STAT */
.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-family: 'Vortigra', serif;
    font-size: 36px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    margin: 0;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .achievement-section {
        text-align: center;
    }

    .ach-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .divider {
        display: none;
    }
}


/* =========================
   SECTION
========================= */
.ts-section {
    position: relative;
    background: #efede6;
    padding: 48px 48px 38px;
    overflow: hidden;
    min-height: 460px;
}

/* =========================
   DECORATIONS
========================= */
.ts-deco {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.ts-deco img {
    width: 38px;
    display: block;
}

.ts-deco-left {
    top: 62px;
    left: 6px;
}

.ts-deco-right {
    top: 8px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* =========================
   HEADER
========================= */
.ts-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 26px;
}

.ts-title-wrap {
    min-width: 320px;
}

.ts-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #1c1a17;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ts-header p {
    max-width: 560px;
    color: #5f5a54;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 6px;
}

/* Divider */
.gallery-divider {
    position: relative;
    width: 170px;
    height: 22px;
}

.gallery-divider::before,
.gallery-divider::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 68px;
    height: 2px;
    border-top: 2px solid #c94534;
    border-radius: 50px;
}

.gallery-divider::before {
    left: 0;
    transform: skewX(-22deg);
}

.gallery-divider::after {
    right: 0;
    transform: skewX(22deg);
}

.gallery-divider span {
    position: absolute;
    left: 50%;
    top: 1px;
    transform: translateX(-50%);
    width: 34px;
    height: 18px;
}

.gallery-divider span::before,
.gallery-divider span::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 14px;
    border: 2px solid #c94534;
    border-color: #c94534 transparent transparent transparent;
    border-radius: 50%;
    top: 3px;
}

.gallery-divider span::before {
    left: 0;
    transform: rotate(180deg);
}

.gallery-divider span::after {
    right: 0;
    transform: rotate(180deg);
}

/* =========================
   WRAPPER
========================= */
.ts-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 300px;
}

/* =========================
   LEFT SIDE CURVE
========================= */
.ts-left {
    position: relative;
    width: 355px;
    height: 310px;
    flex-shrink: 0;
    margin-left: 6px;
    margin-top: 6px;
}

.ts-left svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ts-left path {
    fill: none;
    stroke: #d5d0c7;
    stroke-width: 1.3;
}

/* =========================
   TESTIMONIAL ITEMS
========================= */
.ts-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translate(-50%, -50%);
    transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 210px;
}

.ts-item .ts-info {
    transition: all 0.4s ease;
}

.ts-item .ts-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #23211f;
    line-height: 1.2;
    white-space: nowrap;
}

.ts-item .ts-info span {
    display: block;
    font-size: 13px;
    color: #5d5853;
    margin-top: 4px;
}

/* Avatar */
.ts-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d6d6d6, #bdbdbd);
    flex-shrink: 0;
    transition: all 0.45s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

/* Simple silhouette */
.ts-avatar::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #8b8b8b;
    border-radius: 50%;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.ts-avatar::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 15px;
    background: #9a9a9a;
    border-radius: 50% 50% 45% 45%;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
}

/* Active center item */
.ts-item.active .ts-avatar {
    width: 58px;
    height: 58px;
    background: linear-gradient(180deg, #cfcfcf, #b1b1b1);
}

.ts-item.active .ts-avatar::before {
    width: 20px;
    height: 20px;
    top: 9px;
}

.ts-item.active .ts-avatar::after {
    width: 30px;
    height: 18px;
    bottom: 8px;
}

.ts-item.active .ts-info h4 {
    font-size: 16px;
}

.ts-item.active .ts-info span {
    font-size: 13px;
}

/* Slightly fade non-active */
.ts-item:not(.active) {
    opacity: 0.92;
}

.ts-item:not(.active) .ts-avatar {
    filter: grayscale(8%);
}

/* =========================
   RIGHT SIDE CONTENT
========================= */
.ts-right {
    flex: 1;
    padding-left: 12px;
    display: flex;
    align-items: center;
    min-height: 260px;
}

.ts-content {
    display: none;
    max-width: 590px;
    position: relative;
    padding-left: 42px;
}

.ts-content.active {
    display: block;
}

.ts-quote {
    position: absolute;
    left: 0;
    top: -8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #1d1b18;
}

.ts-text {
    color: #2d2a27;
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    font-weight: 400;
}

/* Fade animation */
.ts-fade {
    animation: tsFade 0.45s ease;
}

@keyframes tsFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .ts-section {
        padding: 40px 24px;
    }

    .ts-header {
        flex-direction: column;
        gap: 18px;
    }

    .ts-header p {
        max-width: 100%;
    }

    .ts-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ts-left {
        width: 100%;
        max-width: 350px;
        height: 320px;
    }

    .ts-right {
        padding-left: 0;
    }

    .ts-content {
        padding-left: 34px;
    }
}

@media (max-width: 575px) {
    .ts-header h2 {
        font-size: 34px;
    }

    .ts-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ts-item {
        min-width: 170px;
        gap: 10px;
    }

    .ts-item .ts-info h4 {
        font-size: 14px;
    }

    .ts-item .ts-info span {
        font-size: 12px;
    }

    .ts-item.active .ts-avatar {
        width: 52px;
        height: 52px;
    }
}

.footer-section {
    background: #383430;
    color: #ddd;
    padding: 60px 0 30px;
}

/* LOGO */
.footer-logo img {
    max-width: 220px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* CONTACT */
.footer-contact p {
    font-size: 15px;
    margin: 10px 0;
}

.footer-contact i {
    color: #B53E3E;
    margin-right: 10px;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li a{
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    color: #ffffff;
    text-decoration: none;
}


.footer-links li:hover {
    color: #B53E3E;
}

/* NEWSLETTER */
.footer-sub {
    font-size: 14px;
    color: #cfcfcf;
    margin-bottom: 15px;
}

.newsletter-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-box input {
    flex: 1;
    border-radius: 30px;
    border: none;
    padding: 10px 15px;
    outline: none;
}

.newsletter-box button {
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #a93226;
}

/* SOCIAL */
.social-icons span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #777;
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons span:hover {
    background: #B53E3E;
    border-color: #B53E3E;
}

/* AREAS */
.footer-areas {
    margin-top: 50px;
    text-align: center;
}

.footer-areas h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-areas p {
    font-size: 15px;
    color: #cfcfcf;
    line-height: 28px;
    text-align: justify;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #777;
    padding-top: 15px;
    font-size: 13px;
    color: #bbb;
}




.cta-section {
    background: #e9e5dd;
    padding: 40px 0;
}

.cta-box {
    background: #B53E3E;
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* TEXT */
.cta-content h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Vortigra', serif;

}

.cta-content p {
    color: #f5d6d3;
    font-size: 15px;
    margin: 0;
}

/* BUTTON */
.cta-btn {
    background: #2c2c2c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.cta-btn:hover {
    background: #000;
}

/* LEAF DECORATION */
.cta-leaf {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    background: url('img/leaf.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}



.abt-sec {
    background: #EEEDE4;
    padding: 60px 0;
}

/* HEADING */
.abt-sub {
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.abt-heading {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Vortigra', serif;
}

.abt-heading span {
    color: #b52a22;
}

/* TEXT */
.abt-para {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 15px;
    max-width: 620px;
}

/* FEATURES */
.abt-features {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.abt-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: 260px;
}

.abt-icon img {
    width: 60px;
}

/* TEXT */
.abt-box h6 {
    font-size: 22px;
    margin: 0;
    font-weight: 500;
}

.abt-box p {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
}

/* DIVIDER */
.abt-line {
    width: 1px;
    height: 60px;
    background: #b52a22;
    margin: 0 30px;
}

/* IMAGE */
.abt-img img {
    max-width: 600px;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .abt-img {
        margin-top: 40px;
        text-align: center;
    }

    .abt-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .abt-line {
        display: none;
    }
}

.abt-icon {
    display: flex;
    gap: 10px;
    align-items: center;
}


.feat-sec {
    background: #e9e5dd;
}

/* LEFT IMAGE */
.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GRID */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
}

/* BOX */
.feat-box {
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #EAE1D2;
    background: transparent;
    transition: 0.3s;
}

/* ICON */
.feat-icon {
    width: 70px;
    margin-bottom: 15px;
}

/* TEXT */
.feat-box h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.feat-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* HOVER */
.feat-box:hover {
    background: #fff;
}

/* REMOVE DOUBLE BORDERS */
.feat-box:nth-child(1),
.feat-box:nth-child(2) {
    border-top: none;
}

.feat-box:nth-child(1),
.feat-box:nth-child(3) {
    border-left: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-box {
        border-left: none !important;
    }
}


.bread-sec {
    background: url('../img/breadcrumb.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bread-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.bread-content h1 {
    font-size: 42px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0;
    font-family: 'Vortigra', serif;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .bread-sec {
        min-height: 280px;
    }

    .bread-content h1 {
        font-size: 30px;
    }
}

.srv-sec {
    background: #EEEDE4;
    padding: 40px 0;
}

/* HEADING */
.srv-head {
    margin: 0 auto 50px;
}

.srv-head h2 {
    font-size: 38px;
    line-height: 1.6;
    font-weight: 500;
    color: #222;
    font-family: 'Vortigra', serif;
}

.srv-head span {
    color: #b52a22;
}

/* CARD */
.srv-card {
    text-align: center;
    margin-bottom: 40px;
}

/* ARCH IMAGE */
.srv-img {
    border: 2px solid #b52a22;
    border-bottom: none;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.srv-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TEXT */
.srv-card h5 {
    font-size: 24px;
    margin-top: 30px;

    margin-bottom: 10px;
    color: #222;
    font-family: 'Vortigra', serif;


}

.srv-card p {
    font-size: 16px;
    color: #555;
    margin: 0 auto 15px;
}

/* BUTTON */
.srv-btn {
    background: #b52a22;
    color: #fff;
    padding: 12px 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px 0px 10px 0px;
    display: inline-block;
    transition: 0.3s;
}

.srv-btn:hover {
    background: #8e201a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .srv-head h2 {
        font-size: 22px;
    }

    .srv-img img {
        height: 220px;
    }
}



.c-sec {
    background: #e9e5dd;
    padding: 90px 0;
}

/* LEFT */
.c-title {
    font-size: 40px;
    color: #b52a22;
    font-family: 'Vortigra', serif;
    margin-bottom: 15px;
}

.c-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 35px;
}

/* ITEMS */
.c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.c-icon {
    width: 58px;
    height: 58px;
    background: #ded3c2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-icon.red {
    background: #b52a22;
}

.c-icon img {
    width: 22px;
}

.c-item h6 {
    font-size: 22px;
    margin: 0;
}

.c-item p {
    font-size: 18px;
    color: #555;
    margin-top: 5px;
}

/* RIGHT WRAPPER */
.c-wrap {
    position: relative;
}

/* FORM */
.c-form {
    background: #EAE1D2;
    padding: 30px;
    border-radius: 20px;
    width: 460px;

    position: relative;
    z-index: 2;
}

/* INPUTS */
.c-form input,
.c-form select,
.c-form textarea {
    width: 100%;
    height: 44px;
    border: none;
    background: #efeae2;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
}

.c-form textarea {
    height: 100px;
    resize: none;
}

/* ROW */
.form-row {
    display: flex;
    gap: 10px;
}

.form-row select {
    width: 50%;
}

.date-wrap {
    width: 50%;
    position: relative;
}

.cal {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
}

/* BUTTON */
.c-btn {
    background: #b52a22;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
}

/* RED SHAPE */
.c-shape {
    position: absolute;
    top: -50px;
    right: 0;
    width: 150px;
    height: 130px;
    background: #b52a22;
    border-radius: 0 100% 0 0;
    z-index: 1;
}

/* RIGHT DOTS (BEHIND) */
.c-dots-right {
    position: absolute;
    top: 80px;
    right: 0;
    width: 70px;
    height: 150px;
    background-image: radial-gradient(#b52a22 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

/* LEFT DOTS (BEHIND FORM) */
.c-dots-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px;
    height: 100px;
    background-image: radial-gradient(#b52a22 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .c-form {
        width: 100%;
        margin-top: 40px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row select,
    .date-wrap {
        width: 100%;
    }
}





        /* =========================
           BOOK NOW SECTION
        ========================= */
        .booknow-section {
            position: relative;
            background: #f3f1eb;
            padding: 90px 0;
            overflow: hidden;
        }

        .booknow-wrapper {
            position: relative;
            max-width: 1080px;
            margin: 0 auto;
        }

        .booknow-card {
            position: relative;
            background: #e5ddd1;
            border-radius: 18px;
            padding: 38px 32px 26px;
            z-index: 2;
        }

        /* TOP RIGHT RED CURVE */
        .booknow-corner-shape {
            position: absolute;
            top: -32px;
            right: -32px;
            width: 92px;
            height: 92px;
            background: #b72a1f;
            border-top-right-radius: 92px;
            z-index: 1;
        }

        /* TOP RIGHT DOTS */
        .booknow-dots-top {
            position: absolute;
            top: 80px;
            right: 0;
            width: 70px;
            height: 150px;
            background-image: radial-gradient(#b52a22 2px, transparent 2px);
            background-size: 10px 10px;
            opacity: 0.3;
            z-index: 0;
        }

        /* BOTTOM LEFT DOTS */
        .booknow-dots-bottom {
            position: absolute;
            bottom: -10px;
            left: -20px;
            width: 90px;
            height: 90px;
            background-image: radial-gradient(#b52a22 2px, transparent 2px);
            background-size: 10px 10px;
            opacity: 0.22;
            z-index: 0;
        }

        .book-form-row {
            margin-bottom: 16px;
        }

        .book-form-label {
            font-size: 14px;
            font-weight: 500;
            color: #4d565d;
            margin-bottom: 8px;
            display: block;
        }

        .book-input,
        .book-select,
        .book-textarea {
            width: 100%;
            height: 44px;
            border: none;
            outline: none;
            background: #f3f1ec;
            border-radius: 4px;
            padding: 0 16px;
            font-size: 13px;
            color: #5b646b;
            box-shadow: none;
            transition: all 0.25s ease;
        }

        .book-textarea {
            height: 88px;
            resize: none;
            padding: 14px 16px;
        }

        .book-input::placeholder,
        .book-textarea::placeholder {
            color: #8f959b;
            font-size: 12px;
        }

        .book-input:focus,
        .book-select:focus,
        .book-textarea:focus {
            background: #f8f6f2;
            box-shadow: 0 0 0 1px rgba(183, 42, 31, 0.15);
        }

        .book-field-icon-wrap {
            position: relative;
        }

        .book-field-icon-wrap .book-input,
        .book-field-icon-wrap .book-select {
            padding-right: 42px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .book-field-icon {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            font-size: 15px;
            color: #5d6266;
            pointer-events: none;
            line-height: 1;
        }

        .book-select {
            cursor: pointer;
            color: #8f959b;
        }

        .book-btn {
            min-width: 110px;
            height: 42px;
            border: none;
            background: #b72a1f;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            border-radius: 4px;
            padding: 0 28px;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            background: #a22319;
        }

        /* Hide default calendar icon if needed */
        input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        /* =========================
           RESPONSIVE
        ========================= */
        @media (max-width: 991px) {
         

            .booknow-card {
                padding: 30px 24px 24px;
            }

            .booknow-corner-shape {
                width: 78px;
                height: 78px;
                top: -24px;
                right: -24px;
                border-bottom-left-radius: 78px;
            }

            .booknow-dots-top {
                right: -8px;
                width: 60px;
                height: 130px;
            }
        }

        @media (max-width: 767px) {
          
            .booknow-section {
                padding: 60px 0;
            }

            .booknow-card {
                padding: 24px 18px 22px;
                border-radius: 14px;
            }

            .book-form-label {
                font-size: 13px;
            }

            .book-input,
            .book-select {
                height: 42px;
            }

            .book-textarea {
                height: 82px;
            }

            .book-btn {
                width: 100%;
            }

            .booknow-dots-top {
                top: 60px;
                right: -6px;
                width: 50px;
                height: 110px;
                background-size: 9px 9px;
            }

            .booknow-dots-bottom {
                width: 70px;
                height: 70px;
                left: -8px;
                bottom: -10px;
                background-size: 9px 9px;
            }
        }


    

       .items-page-header{
        margin-top: 60px !important;
       } 