@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'CorporateAPro';
    src: url('../fonts/CorporateAPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CorporateAPro';
    src: url('../fonts/CorporateACondPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CorporateAPro';
    src: url('../fonts/CorporateAPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CorporateACondPro';
    src: url('../fonts/CorporateAPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'CorporateAPro', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #AD8B3A;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a24a;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #AD8B3A #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'CorporateAPro';
    font-weight: 500;
    margin: 0;
    padding: 0;
}

p {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.special-text {
    font-family: 'CorporateACondPro';
}

/* btn */
.raaag-btn {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.8px;
    line-height: 25px;
    background: #AD8B3A;
    padding: 15px 40px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.raaag-btn:hover {
    background: #8C6F2F;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

a:hover {
    color: #8C6F2F;
}

/* btn */

/* text aniamtion */

.animate-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
    overflow: hidden;
    justify-content: center;
    /* ya right bhi kar sakte ho */
}

.animate-title .word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: wordRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordRise {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* text aniamtion */

/* top header */
.top-header {
    position: absolute;
    width: 100%;
    z-index: 9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(95, 95, 95, 0) 100%);
    padding: 0 10px;
}

.top-header .navbar-brand .raaga-logo {
    width: 150px;
}

.top-header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    text-transform: uppercase;
}

.navbar-light .navbar-brand{background: #000;}

/* top header */

/* main-banner */

.big-f{font-size: 58px;}

.main-banner {
    height: 100vh;
    overflow: hidden;
    /* position: relative; */
}

/* .main-banner::after{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1;} */

.main-banner .search-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

/* main-banner */

/* second-section */
.second-section {
    text-align: center;
    padding: 100px 0;
}

.second-section .icon-logo img {
    width: 160px;
    margin-bottom: 25px;
}

.second-section h2 {
    font-family: 'CorporateAPro' !important;
    font-size: 50px;
    font-weight: 500;
    /* letter-spacing: -0.05em; */
    color: #45443F;
    white-space: nowrap;
    position: relative;
}

.second-section h2::before,
.second-section h2::after {
    width: 0px;
}

.second-section h2::before {
    content: '';
    width: 79px;
    height: 1px;
    background: #45443F;
    position: absolute;
    top: 30px;
    left: 5%;
    animation: growLeft 3s ease-in-out infinite;
}

.second-section h2::after {
    content: '';
    width: 79px;
    height: 1px;
    background: #45443F;
    position: absolute;
    top: 30px;
    right: 5%;
    animation: growRight 3s ease-in-out infinite;
}

@keyframes growLeft {

    0%,
    100% {
        width: 0px;
    }

    50% {
        width: 79px;
    }
}

@keyframes growRight {

    0%,
    100% {
        width: 0px;
    }

    50% {
        width: 79px;
    }
}

.second-section p {
    font-size: 20px;
    font-weight: 300;
    color: #45443F;
    padding: 30px 0 60px;
}

.img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /*border-radius: 10px;*/
    /* cursor: pointer; */
}

.img-wrapper .villa-img {
    display: block;
    width: 100%;
    transition: transform 0.6s ease;
}

.img-wrapper:hover .villa-img {
    /* transform: scale(1.05); */
}

.img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    /* background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-25deg); */
}

.img-wrapper:hover::after {
    animation: shine 1s ease;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/* second-section */



/* signature section */

.signature-section {
    width: 100%;
    background: #fff;
    padding: 100px 0 40px;
}

.signature-wrapper {
    width: 100%;
    /* max-width: 1260px; */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    animation: signature-fadeup 0.7s ease both;
}

.signature-carousel {
    position: relative;
}

.signature-card {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.signature-img-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* height: 295px; */
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}



/* .signature-carousel .owl-item.center .signature-img-wrap {
    height: 370px;
} */

.signature-img-wrap img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-card:hover .signature-img-wrap img {
    transform: scale(1.04);
}

.signature-carousel .owl-item:not(.center) .signature-img-wrap {
    opacity: 0.8;
    transition: opacity 0.55s ease,
        height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-carousel .owl-item.center .signature-img-wrap {
    opacity: 1;
}

.signature-text {
    background: #fff;
    /* position: absolute; */
    margin: -60px 10px 0 0;
    position: relative;
    right: 0;
    bottom: -50px;
    padding: 25px;
    box-shadow: -6px 10px 24px 0px rgba(0, 0, 0, 0.10);
}


/* .signature-carousel .owl-item:not(.center) .signature-img-wrap {
    opacity: 0.2;
    transition: opacity 0.55s ease,
        height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-carousel .owl-item.center .signature-img-wrap {
    opacity: 1;
}

.signature-text {
    background: #fff;
    position: absolute;
    right: 0;
    bottom: -50px;
    padding: 25px;
    box-shadow: -6px 10px 24px 0px rgba(0, 0, 0, 0.10);
    opacity: 0;
}

.owl-item.active.center .signature-text {
    opacity: 1;
} */

.signature-title {
    /* font-family: 'CorporateAPro'; */
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #45443F;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
}

.signature-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.signature-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.8px;
    color: #AD8B3A;
    text-transform: uppercase;
    text-decoration: underline;
    transition: gap 0.25s;
    transition: all 0.5s ease-in-out;
}

.explre-btn {
    margin-top: 15px;
}

.signature-more::after {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
    margin-top: -1px;
}

.signature-more:hover {
    gap: 8px;
    color: #8C6F2F;
    transition: all 0.5s ease-in-out;
}

.signature-wrapper .owl-nav {
    position: absolute !important;
    top: 0;
    left: 60px;
    right: 60px;
    height: 83%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.signature-wrapper .owl-nav button {
    pointer-events: all;
    width: 55px !important;
    height: 55px !important;
    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(4px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
    position: relative;
    margin: 0 10px;
    z-index: 10;
}

.signature-wrapper .owl-nav button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

/* .signature-wrapper .owl-nav button::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.signature-wrapper .owl-prev::before {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.signature-wrapper .owl-next::before {
    transform: rotate(45deg) translate(-1px, 1px);
} */

.signature-wrapper .owl-dots {
    margin-top: 18px !important;
    text-align: center;
}

.signature-wrapper .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    background: #ccc !important;
    margin: 0 4px !important;
    transition: background 0.3s, transform 0.3s !important;
}

.signature-wrapper .owl-dot.active span {
    background: var(--sig-gold) !important;
    transform: scale(1.45);
}

.owl-carousel .owl-stage-outer {
    padding-bottom: 90px;
}



@keyframes signature-fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {

    .signature-img-wrap,
    .signature-carousel .owl-item.center .signature-img-wrap {
        /* height: 210px; */
    }

    .signature-wrapper .owl-nav {
        height: 270px;
    }
}

/* signature section */

/* a glimpse of raaga */

.a-glimpse-section {
    padding: 100px 0 0;
    background: #ECEFF1;
}

.glimpse-section {
    width: 100%;
    background: #ECEFF1;
    padding: 60px 0 20px;
    overflow: hidden;
}

.glimpse-wrapper {
    width: 100%;
    /* max-width: 1260px; */
    margin: 0 auto;
    overflow: visible;
    position: relative;
    animation: glimpse-fadeup 0.7s ease both;
}

.glimpse-carousel {
    position: relative;
    padding-bottom: 10px;
}

.glimpse-carousel .owl-item {
    padding: 6px 0 14px;
}

.glimpse-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: -6px 10px 24px 0px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.glimpse-card:hover {
    box-shadow: -8px 18px 36px 0px rgba(0, 0, 0, 0.16);
    transform: translateY(-5px);
}

.glimpse-img-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* height: 340px; */
}

.glimpse-img-wrap img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.glimpse-card:hover .glimpse-img-wrap img {
    transform: scale(1.04);
}

.glimpse-text {
    padding: 18px 16px 16px;
    background: #fff;
}

.glimpse-title {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.5;
}

.glimpse-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.glimpse-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--glimpse-gold);
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.25s;
}

.glimpse-more::after {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
    margin-top: -1px;
}

.glimpse-more:hover {
    gap: 8px;
}

.glimpse-wrapper .owl-nav {
    position: absolute !important;
    top: 0;
    left: 60px;
    right: 60px;
    height: 83%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.glimpse-wrapper .owl-nav button {
    pointer-events: all;
    width: 55px !important;
    height: 55px !important;
    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(4px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
    position: relative;
    margin: 0 10px;
    z-index: 10;
}

.glimpse-wrapper .owl-nav button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

/* .glimpse-wrapper .owl-nav button::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.glimpse-wrapper .owl-prev::before {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.glimpse-wrapper .owl-next::before {
    transform: rotate(45deg) translate(-1px, 1px);
} */

.glimpse-wrapper .owl-dots {
    margin-top: 18px !important;
    text-align: center;
}

.glimpse-wrapper .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    background: #ccc !important;
    margin: 0 4px !important;
    transition: background 0.3s, transform 0.3s !important;
}

.glimpse-wrapper .owl-dot.active span {
    background: var(--glimpse-gold) !important;
    transform: scale(1.45);
}

@keyframes glimpse-fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .glimpse-img-wrap {
        /* height: 210px; */
    }

    .glimpse-wrapper .owl-nav {
        height: 270px;
    }
}

/* a glimpse of raaga */


/* raaga-wellness */

.raaga-wellness {
    padding: 0 0 100px;
}

.raaga-wellness .raaga-right {
    flex-wrap: wrap;
}

/* raaga-wellness */



/* parallax-section */



/* parallax-section */

/* footer */

.site-footer {
    background: #181714;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.sf-top {
    padding: 80px 0 52px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
}

.sf-logo {
    margin-bottom: 0;
}

.sf-logo img {
    width: 105px;
    filter: brightness(1);
}

.sf-tagline {
    font-family: 'CorporateAPro' !important;
    font-size: 13px;
    font-style: italic;
    color: #7a7567;
    letter-spacing: 0.04em;
    margin-top: 10px;
    display: block;
}

.sf-subscribe-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #6a6660;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.sf-subscribe-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 36px;
    max-width: 420px;
    transition: border-color 0.3s;
}

.sf-subscribe-wrap:focus-within {
    border-color: rgba(184, 149, 58, 0.5);
}

.sf-subscribe-input {
    background: transparent;
    border: none;
    outline: none;
    color: #d4d0c8;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08px;
    padding: 13px 16px;
    flex: 1;
    min-width: 0;
}

.sf-subscribe-input::placeholder {
    color: #55524d;
}

.sf-subscribe-btn {
    background: #b8953a;
    border: none;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    padding: 13px 20px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s;
}

.sf-subscribe-btn:hover {
    background: #9e7e2e;
}

.sf-contact-block {
    margin-bottom: 22px;
}

.sf-contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #6a6660;
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
}

.sf-contact-main {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.sf-contact-main:hover {
    color: #b8953a;
}

.sf-contact-sub {
    font-size: 11.5px;
    font-weight: 300;
    color: #6a6660;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.sf-contact-sub:hover {
    color: #c8c4bc;
}

.sf-nav-col-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #6a6660;
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
}

.sf-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-nav-list li {
    margin-bottom: 10px;
}

.sf-nav-list li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s, letter-spacing 0.25s;
    display: inline-block;
}

.sf-nav-list li a:hover {
    color: #d4d0c8;
    letter-spacing: 0.05em;
}

.sf-social-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #6a6660;
    text-transform: uppercase;
    display: block;
    margin-bottom: 22px;
}

.sf-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7567;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.sf-social-icons a:hover {
    border-color: #b8953a;
    color: #b8953a;
    background: rgba(184, 149, 58, 0.06);
}

.sf-social-icons svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.sf-mid {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
}

.sf-accordion-row {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s;
}

.sf-accordion-row:hover {
    opacity: 0.8;
}

.sf-accordion-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: #968f85;
    text-transform: uppercase;
}

.sf-accordion-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #968f85;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s ease, border-color 0.3s;
    flex-shrink: 0;
}

.sf-accordion-icon.open {
    transform: rotate(45deg);
    border-color: #b8953a;
    color: #b8953a;
}

.sf-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.sf-accordion-body.open {
    max-height: 200px;
    padding-bottom: 20px;
}

.sf-dest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
}

.sf-dest-list li {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
}

.sf-dest-list li:last-child {
    border-right: none;
}

.sf-dest-list li a {
    font-size: 12px;
    font-weight: 300;
    color: #6a6660;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s;
}

.sf-dest-list li a:hover {
    color: #c8c4bc;
}

.sf-brands-section {
    /* padding: 40px 0 40px; */
    border-bottom: 1px solid #6d6d6d;
    /* border-top: 1px solid #6d6d6d; */
}

.sf-brands-heading {
    font-family: 'CorporateAPro' !important;
    font-size: 18px;
    font-weight: 400;
    /* letter-spacing: 0.8em; */
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 28px;
}

.sf-brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.sf-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 1;
    transition: opacity 0.3s;
    cursor: default;
    min-width: 90px;
}

.sf-brand-item:hover {
    opacity: 1;
}

.sf-brand-name {
    font-family: 'CorporateAPro' !important;
    font-size: 15px;
    font-weight: 400;
    color: #d4d0c8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sf-brand-item.bold .sf-brand-name {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
}

.sf-copyright {
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.8px;
}

.sf-links-col {
    padding-left: 40px;
}

.sf-contact-address {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0;
    letter-spacing: 0.8px;
}

.sf-brand-item a {
    display: flex;
    align-items: center;
}

.sf-brand-item img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity 0.3s;
}

.sf-brand-item:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .sf-links-col {
        margin-top: 44px;
    }

    .sf-social-col {
        margin-top: 44px;
    }
}

@media (max-width: 767px) {
    .sf-top {
        padding: 44px 0 36px;
    }

    .sf-subscribe-wrap {
        max-width: 100%;
    }

    .sf-brand-item {
        padding: 8px 14px;
        min-width: 70px;
    }

    .sf-brand-name {
        font-size: 13px;
    }

    .sf-social-icons a {
        width: 32px;
        height: 32px;
    }
}

/* footer */

/* .raaga-font-color-black{color: #111111 !important;} */

/* home page css END */

.banner-title {}

/* rooms page css START */

.room-second-section p {
    padding-bottom: 0;
}

.rooms-banner {
    background: url(../images/rooms/banner.png) no-repeat center fixed;
    background-size: cover;
    display: flex;
    align-items: end;
    padding-bottom: 60px;
}

.rooms-box-section {
    padding: 0 0 80px;
}

.box-rooms {
    overflow: hidden;
}

.box-rooms img {
    width: 100%;
    display: block;
    transition: transform 0.55s ease;
}

.rooms-box-content {
    background: #fff;
    padding: 28px 28px 24px;
    box-shadow: -6px 10px 24px rgba(0, 0, 0, 0.1);
    margin: -20px 10px 0;
    position: relative;
}

.rooms-box-content:hover .box-rooms img {
    transform: scale(1.04);
}

.rooms-box-content h2 {
    font-family: 'CorporateAPro' !important;
    font-size: 22px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #45443F;
    margin-bottom: 15px;
}

.rooms-box-content p {
    font-size: 14px;
    color: #45443F;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 16px;
}

.rooms-box-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rooms-box-content ul li {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #45443F;
    display: flex;
    align-items: center;
    gap: 9px;
}

.rooms-box-section .raaag-btn {
    border: none;
    text-transform: uppercase;
}

.rooms-box-content ul li::before {
    content: '◆';
    color: var(--gold);
    font-size: 7px;
    flex-shrink: 0;
}

.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    background: #AD8B3A;
    border-bottom: 2px solid var(--gold);
    padding: 20px 28px;
    border-radius: 0;
}

.modal-header .modal-title {
    font-family: 'CorporateAPro' !important;
    font-size: 22px;
    font-weight: 500;
    /* letter-spacing: -0.05em; */
    /* letter-spacing: 2.5px; */
    text-transform: uppercase;
    color: #fff;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* .modal{top: 50px;}
.modal-dialog{height: 100vh !important; margin: auto;} */
.modal-dialog.modal-lg.modal-dialog-scrollable {
    height: 100%;
    display: flex;
    align-items: center;
    margin: auto;
}

.modal-body {
    padding: 28px;
    background: #fff;
}

.amenity-group {
    margin-bottom: 22px;
}

.amenity-group h6 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    /* letter-spacing: 3px; */
    /* text-transform: uppercase; */
    color: #45443F;
    border-bottom: 1px solid #ede8df;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 7px 16px;
}

.amenity-item {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #45443F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-item::before {
    content: '◆';
    color: var(--gold);
    font-size: 7px;
    flex-shrink: 0;
}

.modal-footer {
    background: #faf7f2;
    border-top: 1px solid #ede8df;
    padding: 16px 28px;
}

.rooms-box-section .col-lg-6 {
    margin-bottom: 60px;
}


/*  */

.rooms-box-section .col-lg-12 {
    margin-bottom: 40px;
}

.room-wide-wrap {
    display: flex;
    align-items: stretch;
}

.room-wide-img {
    width: 55%;
    flex-shrink: 0;
}

.room-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-wide-content {
    flex: 1;
    margin: 10px 0px 10px -20px !important;
    position: relative;
    box-shadow: -6px 10px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amerta-room {
    margin: 0 10px;
}

@media (max-width: 991px) {
    .room-wide-wrap {
        flex-direction: column;
    }

    .room-wide-img {
        width: 100%;
    }

    .room-wide-content {
        margin: -20px 10px 0 !important;
    }
}

/* rooms page css END */


/* about us page css STRAT */

.about-raaga-wellness {
    padding: 100px 0 50px;
}

.about-i {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    width: 600px;
}

.vision-section {
    padding: 0 0 150px;
    /* background: #ebebeb; */
    position: relative;
    overflow: hidden;
}

/* .vision-section::before {
    content: 'RAAGA';
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
   font-family: 'CorporateAPro' !important;
    font-size: clamp(100px, 18vw, 220px);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.045);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
} */

.vision-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
}

.vision-text-box {
    background: #fff;
    /* padding: 48px 40px 48px 44px; */
    padding: 30px 40px 30px 30px;
    position: relative;
    z-index: 2;
    width: 52%;
    flex-shrink: 0;
    box-shadow: -6px 10px 24px rgba(0, 0, 0, 0.1);
}

.vision-dash {
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--dark);
    vertical-align: middle;
    margin-right: 16px;
    margin-bottom: 3px;
}

.vision-title {
    font-family: 'CorporateAPro' !important;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 28px;
    display: inline;
}

.vision-title-wrap {
    margin-bottom: 28px;
}

.vision-block {
    margin-bottom: 20px;
}

.vision-block-label {
    font-family: 'CorporateAPro' !important;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    color: #45443F;
    margin-bottom: 4px;
}

.vision-block p {
    font-size: 14px;
    font-weight: 300;
    color: #45443F;
    line-height: 1.85;
}

.vision-intro {
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 28px;
}

.vision-img-wrap {
    position: absolute;
    right: -15px;
    top: 60%;
    transform: translateY(-50%);
    width: 52%;
    z-index: 3;
}

.vision-img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-second-section {
    padding: 0 0 50px;
}

.about-second-section h2 {
    display: inline-block;
    padding: 0 120px;
}

.about-page-section {
    margin: 10px -30px 10px -0 !important;
}

.experiences-about-section h2 {
    font-family: 'CorporateAPro';
    font-size: 20px;
    font-weight: 400;
    color: #45443F;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    padding: 25px 0 5px;
}

.experiences-about-section p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #45443F;
    margin-bottom: 5px;
    padding: 5px 0 8px;
}

/* testimonial */
.testimonial-section {
    padding: 100px 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.ts-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ts-eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ts-terracotta);
    margin-bottom: 14px;
    display: block;
}

.ts-title {
    font-family: 'CorporateAPro' !important;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    color: var(--ts-deep-brown);
    letter-spacing: -0.01em;
    margin: 0;
}

.ts-title em {
    font-style: italic;
    color: var(--ts-terracotta);
}

.ts-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.ts-rule::before,
.ts-rule::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--ts-sand);
}

.ts-diamond {
    width: 6px;
    height: 6px;
    background: var(--ts-gold);
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
}

.ts-swiper-outer {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-top: 40px;
}

#testimonial {
    overflow: visible;
    padding: 12px 0 52px;
}

.ts-card {
    background: var(--ts-card-bg);
    border: 1px solid #e9e9e9;
    box-shadow: -6px 10px 24px rgba(0, 0, 0, 0.1);
    padding: 40px 36px 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 600px;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.ts-card:hover {
    box-shadow: 0 16px 48px rgba(44, 26, 14, 0.10);
    border-color: rgba(181, 113, 74, 0.4);
}

.ts-card::before {
    content: '\201C';
    font-family: 'CorporateAPro' !important;
    font-size: 110px;
    line-height: 1;
    color: #ba9f60;
    position: absolute;
    top: 8px;
    left: 26px;
    opacity: 0.8;
    pointer-events: none;
}

.ts-card-accent {
    width: 32px;
    height: 2px;
    background: var(--ts-gold);
    margin-bottom: 28px;
    transition: width 0.4s ease;
}

.ts-card:hover .ts-card-accent {
    width: 56px;
}

.ts-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.ts-star {
    width: 14px;
    height: 14px;
    fill: var(--ts-gold);
}

.ts-card-headline {
    font-family: 'CorporateAPro' !important;
    font-size: 22px;
    font-weight: 400;
    color: #45443F;
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.25;
}

.ts-card-body {
    font-size: 16px;
    line-height: 1.82;
    color: #45443F;
    font-weight: 300;
    flex-grow: 1;
    margin: 0;
}

.ts-card-footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 188, 152, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ts-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CorporateAPro' !important;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.ts-author-name {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #45443F;
    display: block;
    margin-bottom: 3px;
}

.ts-author-country {
    font-size: 13px;
    color: #45443F;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ts-author-country svg {
    width: 11px;
    height: 11px;
    fill: var(--ts-sand);
    flex-shrink: 0;
}

#testimonial .swiper-pagination {
    bottom: 12px;
}

#testimonial .swiper-pagination-bullet {
    width: 24px;
    height: 2px;
    border-radius: 0;
    background: #c4ac76;
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

#testimonial .swiper-pagination-bullet-active,
#testimonial .glide__bullet--active {
    width: 40px;
    background: #ad8d42;
}

.glide__bullets {
    text-align: center;
    margin-top: 20px;
}

#testimonial .glide__track {
    overflow: initial;
}

#testimonial .glide__slides {
    overflow: visible;
}

button.glide__bullet.swiper-pagination-bullet {
    border: 0;
}

.ts-nav {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.ts-btn-prev,
.ts-btn-next {
    width: 48px;
    height: 48px;
    background: var(--ts-card-bg);
    border: 1px solid rgba(212, 188, 152, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.ts-btn-prev:hover,
.ts-btn-next:hover {
    background: var(--ts-terracotta);
    border-color: var(--ts-terracotta);
}

.ts-btn-prev svg,
.ts-btn-next svg {
    width: 18px;
    height: 18px;
    stroke: var(--ts-terracotta);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.ts-btn-prev:hover svg,
.ts-btn-next:hover svg {
    stroke: #fff;
}

.ts-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;/ Aa line author ane badge ne alag paadshe */ margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 188, 152, 0.45);
    gap: 12px;
}

/* Badge design */
.ts-booking-badge {
    flex-shrink: 0;
}

.ts-booking-badge img {
    height: 12px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .testimonial-section {
        padding: 60px 0 100px;
    }

    .ts-card {
        padding: 30px 22px 26px;
    }

    #testimonial .glide__track {
        overflow: hidden;
    }

}

/* testimonial */

.eb-section {
    padding: 0 0 100px;
}

.eb-section__title em {
    font-style: italic;
    color: var(--eb-terracotta);
}

.eb-section__rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.eb-section__rule::before,
.eb-section__rule::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--eb-sand);
}

.eb-section__diamond {
    width: 6px;
    height: 6px;
    background: var(--eb-gold);
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
}

/* Cards row z-index */
.eb-cards-row {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

/* Card */
.eb-card {
    display: flex;
    flex-direction: column;
    /* cursor: pointer; */
    position: relative;
    opacity: 0;
    transform: translateY(32px);
    animation: eb-fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.eb-card:nth-child(1) {
    animation-delay: 0.1s;
}

.eb-card:nth-child(2) {
    animation-delay: 0.25s;
    margin-top: -24px;
}

.eb-card:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 991.98px) {
    .eb-card:nth-child(2) {
        margin-top: 0;
    }
}

.eb-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--eb-sand);
}

.eb-card:nth-child(2) .eb-card__image-wrap {
    aspect-ratio: 3 / 4.6;
}

@media (max-width: 991.98px) {

    .eb-card__image-wrap,
    .eb-card:nth-child(2) .eb-card__image-wrap {
        aspect-ratio: 16 / 9;
    }
}

.eb-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.9);
}

.eb-card:hover .eb-card__image-wrap img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.eb-card__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    pointer-events: none;
}

.eb-card:hover .eb-card__image-wrap::after {
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.9);
}

.eb-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 26, 14, 0.45) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.eb-card:hover .eb-card__overlay {
    opacity: 1;
}

.eb-card__tag {
    position: absolute;
    top: 16px;
    left: 0;
    background: var(--eb-terracotta);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px 5px 16px;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.eb-card__body {
    padding: 24px 0 0;
}

.eb-card__number {
    font-family: 'CorporateAPro' !important;
    font-size: 12px;
    font-weight: 400;
    color: var(--eb-gold);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    display: block;
}

.eb-card__title {
    font-family: 'CorporateAPro' !important;
    font-size: 24px;
    font-weight: 500;
    color: #45443F;
    line-height: 1.2;
}

.eb-card__title em {
    font-style: italic;
    color: var(--eb-terracotta);
}

.eb-card__divider {
    width: 32px;
    height: 1px;
    background: var(--eb-sand);
    margin-bottom: 14px;
    transition: width 0.4s ease, background 0.4s ease;
}

.eb-card:hover .eb-card__divider {
    width: 56px;
    background: var(--eb-terracotta);
}

.eb-card__desc {
    font-size: 14px;
    line-height: 1.75;
    color: #45443F;
    font-weight: 300;
    margin: 0;
}

.eb-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--eb-terracotta) !important;
    text-decoration: none !important;
    transition: gap 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.eb-card__link:hover {
    gap: 14px;
}

.eb-card__link svg {
    width: 16px;
    height: 16px;
    stroke: var(--eb-terracotta);
    fill: none;
    transition: transform 0.3s ease;
}

.eb-card__link:hover svg {
    transform: translateX(4px);
}

@keyframes eb-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .eb-section {
        padding: 60px 24px 80px;
    }
}


/* faqs page css START */

.faq-wrapper {
    /* max-width: 950px; */
    margin: 0 auto 100px;
    padding: 0 20px;
}

.faq-secton-content {
    padding-bottom: 0;
}

.faq-wrapper #tajFaq {
    padding-top: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header span {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: #AD8B3A;
    text-transform: uppercase;
}

.faq-header h2 {
    font-family: 'CorporateAPro' !important;
    font-size: 45px;
    margin-top: 15px;
    font-weight: 400;
}

.accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(173, 139, 58, 0.2) !important;
}

.fist-accourdian-br-t {
    border-top: 1px solid rgba(173, 139, 58, 0.2) !important;
}

.accordion-button {
    background: transparent !important;
    font-family: 'CorporateAPro' !important;
    font-size: 24px;
    font-weight: 500;
    padding: 35px 0;
    color: #45443F !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.q-number {
    font-family: 'CorporateAPro' !important;
    font-size: 24px;
    color: #AD8B3A;
    margin-right: 25px;
    font-weight: 500;
    min-width: 30px;
}

.accordion-button:not(.collapsed) {
    color: #AD8B3A !important;
    padding-bottom: 15px;
}

.accordion-button::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #AD8B3A;
    border-bottom: 1.5px solid #AD8B3A;
    transform: rotate(45deg);
    background-image: none !important;
    transition: all 0.4s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}

.accordion-body {
    font-family: "Inter", sans-serif;
    padding: 0 0 40px 55px;
    font-size: 16.5px;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 300;
}

.highlight-label {
    color: #4a4a4a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 32px;
    }

    .accordion-button {
        font-size: 18px;
    }

    .accordion-body {
        padding-left: 0;
    }
}


/* faqs Page css END */