  
        /* =========================================
           ROOT
        ========================================= */

        :root {
            --gold: #c9a45c;
            --gold-light: #e3c887;
            --dark: #11100e;
            --dark-soft: #1a1814;
            --cream: #f7f3eb;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;

    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

        span{
            font-size: 14px !important;
        }
        

        p{
            font-size: 15px !important;
        }

        /* =========================================
           TOPBAR
        ========================================= */

        .hotel-topbar {
            background: #fff;
            color: rgba(255,255,255,0.75);
            border-bottom: 1px solid rgba(201,164,92,0.18);
            position: relative;
            z-index: 1001;
        }

        .topbar-inner {
            min-height: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .topbar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

          .topbar-item span{
            color: #11100e;
            font-weight: bold;
          }

        .topbar-item i {
            color: #11100e;
            font-size: 14px;
        }

        .topbar-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--gold-light);
        }

        .topbar-social {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .topbar-social a {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            transition: 0.3s ease;
        }

        .topbar-social a:hover {
            color: var(--gold-light);
            transform: translateY(-1px);
        }


        /* =========================================
           MAIN HEADER
        ========================================= */

        .hotel-header {
            position: absolute;
            width: 100%;
            top: 28px;
            left: 0;
            z-index: 1000;

            background: rgba(17,16,14,0.72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);

            border-bottom: 1px solid rgba(255,255,255,0.10);

            transition: 0.4s ease;
        }

        /* When page scrolls */

        .hotel-header.scrolled {
            position: fixed;
            top: 0;
            background: rgba(17,16,14,0.96);
            box-shadow: 0 10px 35px rgba(0,0,0,0.20);
        }


        /* =========================================
           NAVBAR
        ========================================= */

        .hotel-navbar {
            min-height: 86px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }


        /* =========================================
           LOGO
        ========================================= */

        .hotel-logo {
            display: flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
            color: var(--white);
            min-width: 230px;
        }

        .logo-monogram {
            width: 43px;
            height: 43px;
            border: 1px solid var(--gold);
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            font-family: "Cormorant Garamond", serif;
            font-size: 20px;
            color: var(--gold-light);

            position: relative;
        }

        .logo-monogram::after {
            content: "";
            position: absolute;
            width: 31px;
            height: 31px;
            border: 1px solid rgba(201,164,92,0.35);
            border-radius: 50%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-main {
            font-family: "Cormorant Garamond", serif;
            font-size: 27px !important;
            font-weight: 600;
            letter-spacing: 1.5px;
        }

        .logo-sub {
            margin-top: 5px;
            font-size: 8px !important;
            letter-spacing: 3px;
            color: var(--gold-light);
            text-transform: uppercase;
        }


        /* =========================================
           NAV LINKS
        ========================================= */

        .hotel-nav {
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .hotel-nav-link {
            position: relative;

            padding: 10px 14px;

            color: rgba(255,255,255,0.82);
            text-decoration: none;

            font-size: 14px;
            font-weight: 500;

            text-transform: uppercase;
            letter-spacing: 1.3px;

            transition: 0.3s ease;
        }

        .hotel-nav-link::after {
            content: "";

            position: absolute;
            bottom: 3px;
            left: 14px;
            width: 0;
            height: 1px;

            background: var(--gold-light);

            transition: width 0.3s ease;
        }

        .hotel-nav-link:hover {
            color: var(--gold-light);
        }

        .hotel-nav-link:hover::after {
            width: calc(100% - 28px);
        }


        /* =========================================
           RESERVE BUTTON
        ========================================= */

        .reserve-btn {
            margin-left: 15px;

            padding: 13px 22px;

            background: var(--gold);
            color: var(--dark);

            text-decoration: none;

            font-size: 14px;
            font-weight: 700;

            text-transform: uppercase;
            letter-spacing: 1.5px;

            border: 1px solid var(--gold);

            transition: 0.35s ease;

            display: inline-flex;
            align-items: center;
            gap: 9px;
        }

        .reserve-btn:hover {
            background: transparent;
            color: var(--gold-light);
        }

        .reserve-btn i {
            font-size: 13px;
        }


        /* =========================================
           MOBILE BUTTON
        ========================================= */

        .mobile-toggle {
            display: none;

            width: 45px;
            height: 45px;

            border: 1px solid rgba(201,164,92,0.45);
            background: transparent;

            color: var(--gold-light);

            align-items: center;
            justify-content: center;

            font-size: 22px;
        }


        /* =========================================
           DEMO HERO
           सिर्फ header देखने के लिए
        ========================================= */

 /* =========================
   HOTEL HERO SLIDER
========================= */

.hotel-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #191815;
}


/* Bootstrap Carousel */

.hotel-slider .carousel,
.hotel-slider .carousel-inner,
.hotel-slider .carousel-item {
    width: 100%;
    height: 100%;
}


/* =========================
   SLIDE
========================= */

.hero-slide {
    position: relative;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;
}


/* =========================
   DARK OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .48) 45%,
            rgba(0, 0, 0, .15) 100%
        );

    z-index: 1;
}


/* =========================
   CONTENT
========================= */

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}


.hero-content {
    max-width: 720px;
}


/* Small heading */

.hero-small {
    display: block;

    color: #d9aa45;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 5px;

    margin-bottom: 22px;
}


/* Main heading */

.hero-content h1 {
    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 6vw, 90px);

    font-weight: 400;

    line-height: .95;

    margin: 0 0 28px;
}


/* Highlight */

.hero-content h1 span {
    color: #d9aa45;
      font-size: clamp(55px, 6vw, 90px) !important;
}


/* Paragraph */

.hero-content p {
    color: #fff;

    font-size: 18px;
    line-height: 1.7;

    max-width: 600px;

    margin-bottom: 32px;
}


/* =========================
   BUTTON
========================= */

.hero-btn {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    background: #d9aa45;
    color: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 3px;

    transition: .3s ease;
}


.hero-btn:hover {
    background: #fff;
    color: #191815;

    transform: translateY(-2px);
}


/* =========================
   INDICATORS / DOTS
========================= */

.hotel-slider .carousel-indicators {

    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    width: auto;

    margin: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 9px;

    z-index: 5;
}


.hotel-slider .carousel-indicators button {

    width: 9px;
    height: 9px;

    margin: 0;

    padding: 0;

    border: 1px solid #fff;

    border-radius: 50%;

    background: transparent;

    opacity: 1;

    transition: .3s ease;
}


.hotel-slider .carousel-indicators button.active {

    width: 30px;

    border-radius: 20px;

    background: #d9aa45;

    border-color: #d9aa45;
}


/* =========================
   ARROWS
========================= */

.slider-arrow {

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.6);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    transition: .3s ease;
}


.slider-arrow:hover {

    background: #d9aa45;

    border-color: #d9aa45;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .hotel-slider {
        min-height: 600px;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero-content h1 {
        font-size: clamp(52px, 8vw, 75px);
    }

    .hero-content p {
        font-size: 17px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .hotel-slider {

        height: 100svh;

        min-height: 560px;
    }


    .hero-slide {

        background-position: center center;
    }


    /* Mobile overlay */

    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.20) 0%,
                rgba(0,0,0,.78) 100%
            );
    }


    /* Bootstrap container */

    .hero-slide .container {

        padding-left: 22px;
        padding-right: 22px;
    }


    .hero-content {

        max-width: 100%;
    }


    .hero-small {

        font-size: 10px;

        letter-spacing: 3px;

        margin-bottom: 16px;
    }


    .hero-content h1 {

        font-size: clamp(43px, 13vw, 65px);

        line-height: .95;

        margin-bottom: 20px;
    }


    .hero-content p {

        font-size: 14px;

        line-height: 1.55;

        max-width: 100%;

        margin-bottom: 24px;
    }


    .hero-btn {

        padding: 12px 19px;

        font-size: 13px;
    }


    /* Hide arrows on mobile */

    .hotel-slider .carousel-control-prev,
    .hotel-slider .carousel-control-next {

        display: none;
    }


    /* Center dots */

    .hotel-slider .carousel-indicators {

        bottom: 20px;

        gap: 7px;
    }


    .hotel-slider .carousel-indicators button {

        width: 7px;
        height: 7px;
    }


    .hotel-slider .carousel-indicators button.active {

        width: 23px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 42px;
    }

    .hero-content p {

        font-size: 13px;
    }

    .hero-small {

        font-size: 9px;

        letter-spacing: 2px;
    }

}

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 1100px) {

            .hotel-nav-link {
                padding: 10px 9px;
                font-size: 10px;
            }

            .hotel-logo {
                min-width: 190px;
            }

            .reserve-btn {
                margin-left: 8px;
                padding: 12px 15px;
            }
        }


        @media (max-width: 991px) {

            .topbar-center {
                display: none;
            }

            .topbar-inner {
                justify-content: center;
            }

            .topbar-left {
                display: none;
            }

            .hotel-logo {
                min-width: auto;
            }

            .mobile-toggle {
                display: flex;
            }

            .hotel-navbar {
                min-height: 75px;
            }

            .hotel-nav-wrapper {
                position: absolute;

                top: 100%;
                left: 0;
                width: 100%;

                padding: 15px;

                background: rgba(17,16,14,0.98);

                border-top: 1px solid rgba(201,164,92,0.18);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);

                transition: 0.3s ease;
            }

            .hotel-nav-wrapper.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .hotel-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 3px;
            }

            .hotel-nav-link {
                display: block;
                padding: 14px 10px;
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }

            .hotel-nav-link::after {
                display: none;
            }

            .reserve-btn {
                margin: 12px 0 0;
                justify-content: center;
                padding: 15px;
            }

            .logo-main {
                font-size: 24px;
            }
        }


        @media (max-width: 575px) {

            .hotel-topbar {
                display: none;
            }

            .hotel-header {
                top: 0;
            }

            .logo-monogram {
                width: 39px;
                height: 39px;
                font-size: 18px;
            }

            .logo-main {
                font-size: 21px;
                letter-spacing: 1px;
            }

            .logo-sub {
                font-size: 7px;
                letter-spacing: 2px;
            }

            .demo-hero {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 58px;
            }

            .hero-text {
                font-size: 13px;
            }
        }

  
        /* =========================================
   HOTEL SNAPSHOT
========================================= */

.hotel-snapshot{
    background:#f6f3ed;
    padding:0 0 100px;
    position:relative;
}


/* =========================================
   BOOKING STRIP
========================================= */

.booking-strip{
    position:relative;
    z-index:10;

    background:#171613;
    color:#fff;

    min-height:105px;

    margin-top:-52px;

    display:flex;
    align-items:center;

    padding:18px 25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}


.booking-item{
    flex:1;
    padding:0 25px;
}


.booking-label{
    display:block;

    font-size:9px;
    letter-spacing:2px;

    color:#b9a47b;

    margin-bottom:9px;
}


.booking-value{
    display:flex;
    align-items:center;
    gap:10px;

    font-family:"Cormorant Garamond",serif;
    font-size:20px;
}


.booking-value i{
    color:#c9a45c;
    font-size:15px;
}


.booking-divider{
    height:45px;
    width:1px;
    background:rgba(255,255,255,.12);
}


.check-btn{
    min-height:65px;

    padding:0 28px;

    margin-left:15px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:#c9a45c;
    color:#171613;

    text-decoration:none;

    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;

    transition:.3s ease;
}


.check-btn:hover{
    background:#e0c27c;
    color:#171613;
}


.check-btn i{
    font-size:14px;
}


/* =========================================
   HEADING
========================================= */

.snapshot-heading{
    padding:100px 0 45px;

    display:flex;
    align-items:end;
    justify-content:space-between;

    gap:40px;
}


.snapshot-mini{
    color:#b08b48;

    font-size:14px;
    font-weight:600;

    letter-spacing:3px;
}


.snapshot-heading h2{
    margin:14px 0 0;

    color:#191815;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(42px,5vw,65px);

    line-height:.92;

    font-weight:500;
}


.snapshot-heading h2 em{
    color:#b08b48;
    font-style:italic;
}


.snapshot-heading > p{
    max-width:360px;

    margin:0 0 5px;

    color:#77736b;

    font-size:15px;
    line-height:1.8;
}


/* =========================================
   SNAPSHOT CARDS
========================================= */

.snapshot-card{
    display:block;

    position:relative;

    min-height:355px;

    padding:28px;

    background:#fff;

    border:1px solid #e5e0d7;

    text-decoration:none;

    color:#191815;

    overflow:hidden;

    transition:.45s ease;
}


.snapshot-card::before{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:3px;

    background:#c9a45c;

    transform:scaleX(0);
    transform-origin:left;

    transition:.45s ease;
}


.snapshot-card:hover{
    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(40,32,20,.10);
}


.snapshot-card:hover::before{
    transform:scaleX(1);
}


/* Number */

.snapshot-number{
    position:absolute;

    top:25px;
    right:25px;

    font-family:"Cormorant Garamond",serif;

    font-size:14px;

    color:#b9b1a3;
}


/* Icon */

.snapshot-icon{
    width:55px;
    height:55px;

    border:1px solid #ded5c5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#b08b48;

    font-size:21px;

    transition:.4s ease;
}


.snapshot-card:hover .snapshot-icon{
    background:#191815;
    border-color:#191815;
    color:#e2c47e;
}


/* Content */

.snapshot-content{
    position:absolute;

    left:28px;
    right:28px;
    bottom:28px;
}


.snapshot-content h3{
    font-family:"Cormorant Garamond",serif;

    font-size:28px;

    font-weight:600;

    margin-bottom:10px;
}


.snapshot-content p{
    color:#77736b;

    font-size:15px;

    line-height:1.7;

    margin-bottom:20px;
 
    max-width:230px;
}


.explore{
    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#191815;

    font-size:14px;
    font-weight:700;

    letter-spacing:1.5px;

    transition:.3s ease;
}


.explore i{
    color:#b08b48;

    transition:.3s ease;
}


.snapshot-card:hover .explore{
    color:#b08b48;
}


.snapshot-card:hover .explore i{
    transform:translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .booking-strip{
        margin-top:-35px;
        flex-wrap:wrap;
        gap:15px;
    }

    .booking-item{
        flex:1 1 30%;
        padding:10px 15px;
    }

    .booking-divider{
        display:none;
    }

    .check-btn{
        width:100%;
        margin:5px 0 0;
    }

    .snapshot-heading{
        align-items:flex-start;
        flex-direction:column;
        padding-top:75px;
    }

}


@media(max-width:575px){

    .hotel-snapshot{
        padding-bottom:65px;
    }

    .booking-strip{
        margin-top:-25px;
        padding:15px;
    }

    .booking-item{
        flex:1 1 100%;
        padding:8px 5px;

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .booking-value{
        font-size:18px;
    }

    .snapshot-heading{
        padding:60px 5px 35px;
    }

    .snapshot-heading h2{
        font-size:45px;
    }

    .snapshot-card{
        min-height:320px;
    }

}



/* =========================================
   GRAND SIGNATURE SECTION
========================================= */

/* =====================================================
   GRAND SIGNATURE
===================================================== */


/* =========================================
   HOTEL SAI GRAND
   SIMPLE ABOUT SECTION
========================================= */

/* =========================================
   HOTEL SAI GRAND - ABOUT
   ONE SCREEN / NO SCROLL
========================================= */

.about-sai {
    width: 100%;
    height: 100vh;
    height: 100svh;

    padding: 40px 4%;

    box-sizing: border-box;

    background: #fff;

    overflow: hidden;
}


.about-wrapper {
    width: 100%;
    height: 100%;

    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 20px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-content {
    padding-left: 10px;

    max-width: 650px;
}


.about-label {
       color: #c9a45c;
    /* font-size: 9px; */
    font-weight: 700;
    letter-spacing: 3px;
}


.about-content h2 {
       margin: 10px 0;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(45px, 5vw, 65px) !important;
    line-height: .85;
    font-weight: 500;
}


.about-content h2 em {
    color: #b99042;

    font-style: normal;
}


.about-tagline {
    margin: 18px 0 20px !important;

    color: #b99042 !important;

    font-size: 15px !important;

    line-height: 1.4 !important;
}


.about-content p {
     /* max-width: 390px; */
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
    text-align: justify;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 5px;

    padding: 9px 8px 9px 18px;

    border: 1px solid #173653;

    border-radius: 30px;

    /* background: #173653; */

    color:#11100e;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    transition: .3s ease;
}


.about-btn i {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b99042;

    transition: .3s ease;
}


.about-btn:hover {
    background: transparent;

    color: #173653;
}


.about-btn:hover i {
    transform: rotate(45deg);
}


/* =========================================
   RIGHT IMAGE AREA
========================================= */

.about-images {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 0;
}


/* BACK IMAGE */

.about-image-back {
    position: absolute;

    top: 0;
    right: 0;

    width: 73%;
    height: 88%;

    overflow: hidden;

    border-radius: 14px;
}


.about-image-back img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .7s ease;
}


/* FRONT IMAGE */

.about-image-front {
    position: absolute;

    left: 0;
    bottom: 3%;

    width: 55%;
    height: 67%;

    padding: 5px;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0,0,0,.14);

    overflow: hidden;

    z-index: 2;
}


.about-image-front img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 10px;

    transition: .7s ease;
}


/* IMAGE HOVER */

.about-images:hover .about-image-back img {
    transform: scale(1.04);
}


.about-images:hover .about-image-front img {
    transform: scale(1.05);
}


/* =========================================
   BADGE
========================================= */

.about-badge {
    position: absolute;

    right: 8%;
    bottom: 5%;

    width: 85px;
    height: 85px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b99042;

    color: #fff;

    text-align: center;

    z-index: 5;

    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}


.about-badge span {
    font-size: 6px;

    letter-spacing: 1.5px;
}


.about-badge strong {
    margin-top: 4px;

    font-family: "Cormorant Garamond", serif;

    font-size: 16px;

    font-weight: 500;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .about-sai {
        padding: 18px 3%;
    }

    .about-wrapper {
        grid-template-columns: 47% 53%;

        gap: 10px;
    }

    .about-content h2 {
        font-size: 43px;
    }

    .about-content p {
        font-size: 12px;

        line-height: 1.55;
    }

    .about-tagline {
        margin: 13px 0 15px !important;
    }

    .about-images {
        height: 90%;
    }

}


/* =========================================
   SMALL LAPTOP
========================================= */

@media (max-height: 700px) and (min-width: 701px) {

    .about-sai {
        padding: 12px 3%;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 11px;

        line-height: 1.45;

        margin-bottom: 9px;
    }

    .about-tagline {
        margin: 10px 0 12px !important;
    }

    .about-images {
        height: 92%;
    }

    .about-badge {
        width: 70px;
        height: 70px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .about-sai {
        height: auto;

        min-height: 100svh;

        padding: 40px 20px;

        overflow: visible;
    }

    .about-wrapper {
        height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .about-images {
        height: 420px;
    }

    .about-image-back {
        width: 75%;
        height: 85%;
    }

    .about-image-front {
        width: 58%;
        height: 65%;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .about-images {
        height: 350px;
    }

    .about-content h2 {
        font-size: 36px;
    }

}

/* =========================================
   HOTEL SAI GRAND
   SIMPLE SERVICES
========================================= */

/* =====================================
   HOTEL SERVICES
===================================== */

.hotel-services {
    min-height: 100vh;
    padding: 35px 0 25px;
    background: #f8f7f3;
    display: flex;
    align-items: center;
}


/* =====================================
   HEADING
===================================== */

.services-heading {
    margin-bottom: 28px;
}

.services-heading span {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #bd8b27;
    margin-bottom: 7px;
}

.services-heading h2 {
      font-weight: 500;
    line-height: 0.85;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(48px, 5vw, 70px) !important;
}
.services-heading h2 span{
        font-size: clamp(48px, 5vw, 70px) !important;
    font-weight: 500;
}

.services-heading p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #666;
}


/* =====================================
   GRID
===================================== */

.services-grid {
    border-top: 1px solid #dedbd3;
    border-left: 1px solid #dedbd3;
}


/* =====================================
   SERVICE BOX
===================================== */

.service-box {
    height: 205px;
    padding: 22px 35px;
    text-align: center;
    border-right: 1px solid #dedbd3;
    border-bottom: 1px solid #dedbd3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}


/* =====================================
   ICON
===================================== */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border: 1px solid #d4aa55;
    border-radius: 50%;

    color: #c8962d;
    font-size: 27px;

    transition: all 0.3s ease;
}


/* =====================================
   TITLE
===================================== */

.service-box h3 {
    margin: 0 0 7px;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;

    color: #282828;
}


/* =====================================
   DESCRIPTION
===================================== */

.service-box p {
    max-width: 390px;
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;

    color: #555;
}


/* =====================================
   HOVER
===================================== */

.service-box:hover {
    background: #ffffff;
}

.service-box:hover .service-icon {
    background: #c8962d;
    color: #ffffff;
    transform: translateY(-4px);
}


/* =====================================
   LAST ITEM
===================================== */

.service-last {
    min-height: 185px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .hotel-services {
        min-height: auto;
        padding: 45px 0;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .service-box {
        height: 190px;
        padding: 20px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 575px) {

    .hotel-services {
        padding: 35px 15px;
    }

    .services-heading {
        margin-bottom: 20px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 13px;
    }

    .service-box {
        height: auto;
        min-height: 180px;
        padding: 25px 18px;
    }

    .service-box h3 {
        font-size: 22px;
    }

    .service-box p {
        font-size: 13px;
    }

}

/* =========================================
   OUR HAPPY CLIENTS
========================================= */

/* =========================================
   SIMPLE TESTIMONIALS
========================================= */

.sg-testimonials {

    width: 100%;
    height: 80svh;
    min-height: 600px;

    background: #fff;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #191815;

    font-family: "Inter", sans-serif;
}


.sg-testimonials-inner {

    width: min(900px, 90%);

    margin: auto;

    text-align: center;
}


/* =========================================
   HEADING
========================================= */

.sg-testimonials-heading span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #c9a45c;
}


.sg-testimonials-heading h2 {

    margin: 10px 0 45px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 500;

    line-height: .85;
}


.sg-testimonials-heading h2 em {

    color: #c9a45c;

    font-style: italic;
}


/* =========================================
   SLIDER
========================================= */

.sg-testimonial-slider {

    width: 100%;

    overflow: hidden;
}


.sg-testimonial-track {

    display: flex;

    width: 300%;

    transition:
        transform .8s cubic-bezier(.65,0,.35,1);
}


.sg-testimonial-slide {

    width: 33.333333%;

    flex-shrink: 0;

    position: relative;

    padding: 20px 80px 35px;

    box-sizing: border-box;
}


/* =========================================
   QUOTE
========================================= */

.sg-quote {

    font-family: "Cormorant Garamond", serif;

    font-size: 75px;

    line-height: .5;

    color: #c9a45c;

    margin-bottom: 25px;
}


/* =========================================
   REVIEW
========================================= */

.sg-testimonial-slide p {

    max-width: 720px;

    margin: auto;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2.2vw, 30px) !important;

    line-height: 1.45;

    color: #4e4b46;
}


/* =========================================
   GUEST
========================================= */

.sg-guest {

    margin-top: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}


.sg-guest > span {

    width: 35px;

    height: 1px;

    background: #c9a45c;
}


.sg-guest strong {

    display: block;

    font-size: 14px;

    letter-spacing: 1px;
}


.sg-guest small {

    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   NUMBER
========================================= */

.sg-slide-number {

    position: absolute;

    right: 0;

    bottom: 20px;

    color: #aaa;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================
   DOTS
========================================= */

.sg-testimonial-dots {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 15px;
}


.sg-testimonial-dots span {

    width: 25px;

    height: 2px;

    background: #ddd;

    transition: .4s ease;
}


.sg-testimonial-dots span.active {

    width: 45px;

    background: #c9a45c;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .sg-testimonials {

        min-height: 100svh;

    }


    .sg-testimonials-heading h2 {

        margin-bottom: 35px;

    }


    .sg-testimonial-slide {

        padding: 15px 25px 35px;

    }


    .sg-quote {

        font-size: 60px;

        margin-bottom: 18px;

    }


    .sg-testimonial-slide p {

        font-size: 21px;

        line-height: 1.5;

    }


    .sg-slide-number {

        right: 15px;

    }

}


/* =========================================
   HOTEL SAI GRAND
   ROOM JOURNEY
========================================= */
/* =========================================
   HOTEL SAI GRAND
   OUR ROOMS
========================================= */





/* =========================================
   HOTEL SAI GRAND
   FINAL FOOTER CSS
========================================= */

.sg-footer {

    width: 100%;

    background: rgba(17, 16, 14, 0.96);

    color: #ffffff;

    font-family: "Inter", sans-serif;

    border-top: 1px solid rgba(201, 164, 92, 0.25);

}


/* =========================================
   FOOTER CONTAINER
========================================= */

.sg-footer-container {

    width: min(1200px, 92%);

    margin: 0 auto;

}


/* =========================================
   FOOTER TOP
========================================= */

.sg-footer-top {

    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr 1.3fr;

    gap: 55px;

    padding: 55px 0 45px;

}


/* =========================================
   BRAND
========================================= */

.sg-footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.sg-footer-logo {

    font-family: "Cormorant Garamond", serif;

    font-size: 25px !important;

    font-weight: 600;

    letter-spacing: 2px;

    color: #ffffff;

}


.sg-footer-logo span {

    color: #c9a45c;
  font-size: 25px !important;
    /* font-style: italic; */

}


.sg-footer-brand p {

    max-width: 280px;

    margin: 15px 0 22px;

    color: #fff;

    font-size: 11px;

    line-height: 1.8;
    text-align: justify;

}


/* =========================================
   SOCIAL ICONS
========================================= */

.sg-footer-social {

    display: flex;

    align-items: center;

    gap: 8px;

}


.sg-footer-social a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #fff;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    transition: all .3s ease;

}


.sg-footer-social a:hover {

    background: #c9a45c;

    border-color: #c9a45c;

    color: #ffffff;

    transform: translateY(-3px);

}


/* =========================================
   FOOTER COLUMNS
========================================= */

.sg-footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;

}


.sg-footer-column h4 {

    margin: 0 0 10px;

    color: #c9a45c;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


/* =========================================
   FOOTER LINKS
========================================= */

.sg-footer-column ul{
    list-style-type: none;
}
.sg-footer-column li{
    border-bottom: 1px solid rgba(255, 255, 255, .10);;
    
    color: white !important;
}
.sg-footer-column > a {

    position: relative;

          margin-bottom: 10px;

    color: white !important;

    text-decoration: none !important;

    font-size: 14px;

    transition: all .3s ease;
 
}


.sg-footer-column > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0;

    height: 1px;

    background: #c9a45c;

    transition: width .3s ease;

}


.sg-footer-column > a:hover {

    color: #ffffff;

    transform: translateX(4px);

}


.sg-footer-column > a:hover::after {

    width: 100%;

}


/* =========================================
   CONTACT
========================================= */

.sg-footer-contact {

    gap: 13px;

}


.sg-footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    color: #fff;

    font-size: 10px;

    line-height: 1.6;

}


.sg-footer-contact i {

    flex-shrink: 0;

    color: #c9a45c;

    font-size: 13px;

    margin-top: 1px;

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.sg-footer-bottom {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #fff;

    font-size: 8px;

    letter-spacing: .3px;

}

.sg-footer-bottom  a{
    color: #fff !important;
}

.sg-footer-bottom > div {

    display: flex;

    align-items: center;

    gap: 25px;

}


.sg-footer-bottom a {

    color: #77736c;

    text-decoration: none;

    transition: color .3s ease;
    font-size: 14px;

}


.sg-footer-bottom a:hover {

    color: #c9a45c;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sg-footer-top {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sg-footer-top {

        grid-template-columns: 1fr;

        gap: 32px;

        padding: 42px 0 32px;

    }


    .sg-footer-brand p {

        max-width: 100%;

    }


    .sg-footer-bottom {

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        line-height: 1.7;

    }


    .sg-footer-bottom > div {

        flex-wrap: wrap;

        gap: 15px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .sg-footer-logo {

        font-size: 22px;

    }


    .sg-footer-top {

        gap: 28px;

    }


    /* .sg-footer-column > a {

        font-size: 10px;

    } */

}





/* =========================================
  room
========================================= */

.hotel-showcase {
    width: 100%;
    height: 100vh;
    height: 100svh;

    padding: 65px 40px;

    box-sizing: border-box;

    background: #fff;

    overflow: hidden;
}


/* MAIN GRID */

.showcase-grid {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-columns: 1.25fr 1fr;

    grid-template-rows: 1fr 1fr;

    gap: 12px;
}


/* ALL CARDS */

.showcase-card {
    position: relative;

    overflow: hidden;

    background: #191815;

    cursor: pointer;
}


/* ROOMS */

.rooms-card {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* RESTAURANT */

.restaurant-card {
    grid-column: 2;
    grid-row: 1;
}


/* MARRIAGE */

.marriage-card {
    grid-column: 2;
    grid-row: 2;
}


/* IMAGE */

.showcase-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .8s ease;
}


/* OVERLAY */

.showcase-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 20%,
            rgba(0,0,0,.78) 100%
        );

    z-index: 1;

    transition: .4s ease;
}


/* HOVER */

.showcase-card:hover img {
    transform: scale(1.06);
}

.showcase-card:hover .showcase-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15),
            rgba(0,0,0,.85)
        );
}


/* CONTENT */

.showcase-content {
    position: absolute;

    left: 35px;
    bottom: 30px;

    max-width: 390px;

    color: #fff;

    z-index: 2;
}


/* NUMBER */

.showcase-content span {
    display: block;

    margin-bottom: 8px;

    color: #d0a95d;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* HEADING */

.showcase-content h2 {
    margin: 0;

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 5vw, 72px);

    font-weight: 400;

    line-height: .85;
}


/* DESCRIPTION */

.showcase-content p {
    max-width: 280px;

    margin: 14px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 10px;

    line-height: 1.7;

    letter-spacing: .3px;
}


/* ARROW */

.showcase-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.55);

    color: #fff;

    z-index: 3;

    transition: all .35s ease;
}


/* ARROW HOVER */

.showcase-card:hover .showcase-arrow {
    background: #c9a45c;

    border-color: #c9a45c;

    transform: rotate(45deg);
}


/* =========================================
   RIGHT CARDS
========================================= */

.restaurant-card .showcase-content,
.marriage-card .showcase-content {
    left: 30px;
    bottom: 25px;
}


.restaurant-card .showcase-content h2,
.marriage-card .showcase-content h2 {
    font-size: clamp(38px, 4vw, 58px);
}


.restaurant-card .showcase-content p,
.marriage-card .showcase-content p {
    margin-top: 9px;

    max-width: 250px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hotel-showcase {
        padding: 8px 20px;
    }

    .showcase-grid {
        gap: 10px;
    }

    .showcase-content {
        left: 22px;
        bottom: 22px;
    }

    .showcase-content h2 {
        font-size: 52px;
    }

    .showcase-arrow {
        right: 18px;
        bottom: 18px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .hotel-showcase {

        height: auto;

        min-height: 100svh;

        padding: 12px;

        overflow: visible;
    }

    .showcase-grid {

        height: auto;

        grid-template-columns: 1fr;

        grid-template-rows:
            38vh
            28vh
            28vh;

        gap: 10px;
    }

    .rooms-card {
        grid-column: 1;
        grid-row: 1;
    }

    .restaurant-card {
        grid-column: 1;
        grid-row: 2;
    }

    .marriage-card {
        grid-column: 1;
        grid-row: 3;
    }

    .showcase-content {
        left: 18px;
        bottom: 18px;
    }

    .showcase-content h2 {
        font-size: 43px;
    }

    .showcase-content p {
        font-size: 9px;
        max-width: 220px;
    }

    .showcase-arrow {
        width: 35px;
        height: 35px;

        right: 15px;
        bottom: 15px;
    }
}




/* =========================
   VARANASI EXPERIENCES
========================= */

/* ==========================================
   ATTRACTIONS SECTION
========================================== */

.attractions-section {
    width: 100%;
    min-height: 100vh;
    padding: 45px 0;
    background: #fff;
    overflow: hidden;
}


/* Bootstrap container ko control */

.attractions-section .container {
    max-width: 1250px;
}


/* ==========================================
   HEADING
========================================== */

.attractions-heading {
    text-align: center;
    margin-bottom: 35px;
}

.attractions-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #b88a32;
}



.attractions-heading h2 {
       font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(48px, 5vw, 70px) !important;
    font-weight: 500;
    line-height: .85;
}

.attractions-heading h2 span {
    color: #b88a32;
   font-size: clamp(48px, 5vw, 70px) !important;
    font-weight: 500;
}

.attractions-heading p {
    margin: 8px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666;
}


/* ==========================================
   ATTRACTION ROW
========================================== */

.attraction-row {
    margin-bottom: 25px;
}


/* ==========================================
   IMAGE
========================================== */

/* .attraction-image {
    width: 100%;
   

    overflow: hidden;
    border-radius: 15px;
} */

.attraction-image img {
    width: 100%;
    /* height: 100%;

    display: block;

    object-fit: cover; */
    
 border-radius: 15px;
    transition: transform .6s ease;
}

.attraction-image:hover img {
    transform: scale(1.05);
}


/* ==========================================
   CONTENT
========================================== */

.attraction-content {
    padding: 0 55px;
}

.attraction-small {
    display: block;

    margin-bottom: 8px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #b88a32;
}

.attraction-content h3 {
    margin: 0 0 8px;
color: #11100e;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;

}

.attraction-content p {
    max-width: 500px;

    margin: 0 0 14px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;
color: #706d68;
}


/* ==========================================
   BUTTON
========================================== */

.attraction-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 9px 18px;

    border-radius: 30px;

    background: #b99042;
    color: #fff;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.attraction-btn span {
    font-size: 17px;
    line-height: 1;

    transition: transform .3s ease;
}

.attraction-btn:hover {
    background: #b88a32;
    color: #fff;
}

.attraction-btn:hover span {
    transform: translateX(5px);
}


/* ==========================================
   LAPTOP - ONE SCREEN
========================================== */

@media (min-width: 992px) {

    .attractions-section {
        display: flex;
        align-items: center;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .attractions-section {
        padding: 45px 0;
    }

    .attraction-content {
        padding: 0 25px;
    }

    .attraction-content h3 {
        font-size: 32px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .attractions-section {
        min-height: auto;
        padding: 40px 0;
    }

    .attractions-heading {
        margin-bottom: 30px;
    }

    .attractions-label {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .attractions-label::before,
    .attractions-label::after {
        width: 28px;
    }

    .attractions-heading h2 {
        font-size: 40px;
    }

    .attractions-heading p {
        font-size: 13px;
    }


    /* Bootstrap columns full width */

    .attraction-row {
        margin-bottom: 35px;
    }

    .attraction-image {
        height: 220px;
        margin-bottom: 20px;
    }

    .attraction-content {
        padding: 0 5px;
    }

    .attraction-content h3 {
        font-size: 32px;
    }

    .attraction-content p {
        font-size: 13px;
        line-height: 1.6;
    }

}

/* =========================
   SCROLL UP BUTTON
========================= */

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #c99a3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #191815;
    transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 576px) {
    .scroll-top-btn {
        width: 42px;
        height: 42px;
        right: 15px;
        bottom: 15px;
        font-size: 17px;
    }
}