@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --heading-font: 'Caudex', serif;
    --body-font: 'Encode Sans Expanded', sans-serif;
    --nav-font: 'Baloo Bhaijaan 2', sans-serif;
    --nav-link-divider: 38px 15px !important;
    --primary-color: #5E3517;
    --white: #fff;
    --active: #3B9D01;
    --secondary-color: #2A2A2A;
    --p: #5C5C5C;
    --bg-color: #F6EDE8;
    --card-btn: #BB6726;
    --gray: #333;
    --color-a: #A3591A;
    --border: #B88A53;
}

body {
    font-family: var(--body-font);
    color: var(--gray);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--heading-font);
}

h2 {
    font-size: 3.5rem;

    color: #1a0f0c;
    line-height: 1.2;
    letter-spacing: 1px;
}

.italic {
    font-style: italic;
}

.ls-2 {
    letter-spacing: 2px;
}

.container-xxl {
    max-width: 1832px;
}

.container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.white {
    color: var(--white) !important;
}

/* Navbar Styles */
.navbar-custom {
    background: rgb(0 0 0 / 31%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-nav {
    padding: 38px 0px;
}

.navbar-scrolled {
    background-color: rgba(26, 15, 12, 0.95);
    padding: 0px 0;
}

.navbar-brand-ahi {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* .navbar-scrolled .logo-img {
    height: 50px;
} */

.nav-link-custom {
    font-family: var(--nav-font);
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 39px 14px;
    transition: opacity 0.3s ease;
    position: relative;
    text-decoration: none;
    opacity: 0.9;
}

.nav-link-custom.active {
    color: #b88953 !important;
}


.nav-link-custom.active::after,
.mega-menu-parent:hover .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.navbar-scrolled .nav-link-custom.active::after,
.navbar-scrolled .mega-menu-parent:hover .nav-link-custom::after {
    /* bottom: 20px; */
}

.nav-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0px;
    padding: 51px 0px;
}

.lang-selector {
    color: var(--white);
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 0 20px;
}

.lang-selector:hover {
    color: var(--white);
    opacity: 0.8;
}

.enquire-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.special-discount-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--nav-font);
}

.btn-enquire {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 25px 8px 25px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-enquire:hover {
    background-color: var(--white);
    color: #1a0f0c;
}

.btn-enquire-sm {
    padding: 9px 15px 4px 18px;
    font-size: 0.9rem;
}

/* Mega Menu Dropdown */
.mega-menu {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(0 0 0 / 85%);
    color: #fff;
    backdrop-filter: blur(17px);
}

/* .navbar-scrolled .mega-menu {
    top: 97px;
} */

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-list {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.mega-menu-list li a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--nav-font);
    font-size: 1.1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    opacity: 0.8;
}

.mega-menu-list li a:hover {
    opacity: 1;
}

.mega-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
}

.mega-menu-parent {
    position: static;
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
    width: 1.25em;
    height: 1.25em;
}


/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-inner,
.carousel-item {
    height: 100vh;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
} */

.carousel-item>.container-xxl {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--white);
    max-width: 1220px;
    margin-top: 5vh;
    /* Keep it slightly below center for aesthetic */
}

.hero-heading {
    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 4vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtext {
    font-family: var(--body-font);
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.btn-know-more {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 45px;
    font-family: var(--body-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-know-more:hover {
    background-color: var(--white);
    color: #1a0f0c;
}

/* Custom Carousel Controls */
.carousel-controls-container {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.carousel-controls-custom {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--white);
}

.carousel-arrows-wrap {
    display: flex;
    gap: 20px;
}

.carousel-arrow {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-arrow:hover {
    opacity: 0.5;
}

.carousel-counter {
    font-family: var(--body-font);
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 400;
}

/* Resorts Section */
.resorts-section {
    overflow: hidden;
    background-color: var(--white);
    padding-bottom: 0 !important;
}

.offset-lg-1 {
    margin-left: 3%;
}

.img-top-space {
    margin-top: -108px;
}

.resort-row {
    background-color: #fff;
    /* Light beige for alternating rows */
    padding-top: 50px;
    padding-bottom: 50px;

}

.resort-row {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 70px calc(50vw - 50%);
    margin-bottom: 0 !important;
}

.bg-a {
    background-color: #DBCDC7;
}

.bg-b {
    background-color: #EDE6E2;
}

.section-top-label {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 3px;
}


.section-title {
    font-family: var(--body-font);
    font-size: 1.9rem;
    color: var(--secondary-color);
    letter-spacing: 7px;
    font-weight: 600;
}



.resort-p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--p) !important;
    font-weight: 400;
}

.text-justify {
    text-align: justify;
}

.resort-link {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a0f0c !important;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.link-line {
    width: 60px;
    height: 1px;
    background-color: #1a0f0c;
    transition: width 0.3s ease;
}

.resort-link:hover {
    color: var(--active) !important;
    gap: 20px !important;
}

.resort-link:hover .link-line {
    width: 100px;
    background-color: var(--active);
}

.resort-img-wrap {
    position: relative;
    overflow: hidden;
}

.resort-img-wrap img {
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.resort-row:hover .resort-img-wrap img {
    transform: scale(1.05);
}

/* Scroll Reveal Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Why Ayurveda Section */
.why-ayurveda-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0px 40px 0px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(245, 222, 179, 0.85) 40%, rgba(245, 222, 179, 0.95) 100%);
    z-index: 2;
}

.why-ayurveda-section .container-fluid {
    position: relative;
    z-index: 3;
}

.why-content {
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}





.why-desc {
    font-family: var(--body-font);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.why-desc:last-child {
    margin-bottom: 0;
}

.why-ayurveda-section .resort-p {
    color: #2A2A2A !important;
}






/* Exclusive Offers Section */
.offers-section {
    background-color: var(--white);
    padding: 80px 0;
}

.offers-desc {
    max-width: 600px;
}


.testimonial-arrow,
.offers-arrow {
    background: none;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-arrow:hover,
.offers-arrow:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonial-arrow:disabled,
.offers-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.offers-indicators {
    display: flex;
    gap: 8px;
    margin-left: 10px;
    margin-top: 20px;
}

.indicator-bar,
.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-bar.active,
.indicator-dot.active {
    background-color: var(--primary-color);
    width: 60px;
    border-radius: 6px;
}

.indicator-dot .offers-carousel {
    margin-top: 40px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.offer-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.offer-card:hover img {
    transform: scale(1.02);
}

.offers-section .carousel-inner,
.offers-section .carousel-item {
    height: 100% !important;
}


/* Blogs & Vlogs Section */
.blogs-section {
    background-color: #F6EDE8;
    padding: 190px 0px 140px 0px;
    overflow: hidden;
}

.dtl-page .cta-section {
    padding: 65px 0;
}

.explore-link {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a0f0c !important;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

/* FAQ Section */
.faq-accordion.faq-dtl .faq-header {}

.faq-section {
    padding: 0px 0px 50px 0px;
    background-color: var(--white);
}

.faq-main-title {
    font-size: 4.5rem;
    font-weight: 400;
    color: #1a0f0c;
    margin-top: 10px;
}

.faq-img-wrap img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-accordion {
    border-top: 1px solid #E0E0E0;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 0;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-family: var(--body-font);
    font-size: 1.7rem;
    font-weight: 500;
    color: #2A2A2A;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    line-height: 34px;
}

.faq-icon {
    font-size: 2rem;
    color: var(--color-a);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.faq-icon i::before {
    content: "\F4FE";
    /* bi-plus */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: #1a0f0c;
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-answer {
    padding-bottom: 30px;
    margin: 0;
    font-family: var(--body-font);
    font-size: 1.3rem;
    line-height: 32px;
    color: #5C5C5C;
    max-width: 85%;
    font-weight: 400;
}


.custom-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #D1C7BF;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-font);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-nav-btn:hover {
    border-color: var(--border);
    color: var(--primary-color) !important;
    color: #fff;
}

.blog-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px;
    width: 100%;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
}

.blog-scroll-container::-webkit-scrollbar {
    display: none;
}

.blog-card {
    min-width: calc(50% - 15px);
    width: calc(50% - 15px);
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrap {
    position: relative;
    width: 100%;
    height: 500px;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.blog-card:hover .play-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--body-font);
}

.watch-text {
    color: #fff;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}



.blog-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
}

.blog-top-img {
    top: 0px;
    position: absolute;
}

.blog-bottom-img {
    bottom: 0px;
    position: absolute;
}

/* Guest Stories Section */
.testimonials-section {
    padding: 26px 0 50px 0px;
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-center-section .carousel-item,
.testimonials-center-section .carousel-inner,
.testimonials-section .carousel-inner,
.testimonials-section .carousel-item {
    height: 100% !important;
}

/* .section-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a0f0c;
    line-height: 1.1;
    letter-spacing: 1px;
} */

.section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
}

.testimonial-quote {
    font-family: var(--body-font);
    font-size: 1.9rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: var(--body-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--body-font);
    margin-bottom: 2px;
}

.author-location {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: #888888;
    font-weight: 500;
    display: block;
}

/* .testimonial-content-wrap.ps-lg-5 {
    max-width: 557px;
} */


/* Awards & Recognitions Section */
.awards-section {
    padding: 100px 0;
    background-color: #fff;
    background-image: url('../assets/image/home/Awards.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.awards-section .container-xxl {
    max-width: 1410px;
}



.award-cards-row {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.award-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.award-card:not(.featured) {
    transform: translateY(30px);
}

.award-card.featured {
    background: linear-gradient(135deg, #A85D25 0%, #E68A45 50%, #FF9E59 100%);
    color: #FFFFFF;
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 20px 60px rgba(168, 93, 37, 0.3);
}

.award-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.award-card.featured .award-icon img {
    /* filter: brightness(0) invert(1); */
    /* Make the logo white on the featured card */
}

.award-year {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.award-title {
    font-family: var(--body-font);
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

.award-card:not(.featured) .award-title {
    color: var(--primary-color)
}

.award-card.featured .award-title {
    color: #FFFFFF;
}

.award-card:hover {
    transform: translateY(-5px) !important;
}

.award-card.featured:hover {
    transform: scale(1.08) translateY(-5px) !important;
}

.award-card-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 497px;
    z-index: 1;
}

/* Footer Section */
.footer {
    background-color: #2A2A2A;
    color: #FFFFFF;
    padding: 60px 0 54px;
    font-family: var(--body-font);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 333px;
    font-weight: 300;
}

.footer-sublogo {
    height: 75px;
    width: auto;
}

.sub-text {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    color: #ffffff !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact li {
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-contact a:hover {
    color: #FFFFFF;
}

.footer-contact a[style] {
    --lineColor: #ffffff !important;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #FFFFFF;
    color: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #A85D25;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
}

.copyright {
    font-size: 0.9rem;
}

.legal-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
    color: #ffffff;
}

.legal-links a:hover {
    color: #FFFFFF !important;
}

/* about pge */
.abt-bannner-img {
    background-image: url(../assets/image/about/about-banner.webp);
}

.inner-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 566px;
    width: 100%;
    position: relative;

}

.content-banner {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0px 50px
}

.content-banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1px;
}

.content-banner p {
    font-size: 1.2rem;
    width: 433px;
    margin: 0 auto;
    line-height: 26px;
}

/* Blog Detail Hero Styles */
.blog-dtl-content {
    position: absolute;
    bottom: 31px;
    text-align: left;
    color: var(--white);
    width: 880px;
    left: 60px;
}

.blog-dtl-tag {
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 1rem !important;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 150% !important;
    letter-spacing: -0.18px;
}

.blog-dtl-content h1 {
    font-size: 3.9rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.blog-dtl-date {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--body-font);
    font-weight: 300;
}




/* Blog Content Styles */
.blog-main-content {
    padding: 35px 0 !important;
}

.blog-main-content {
    background-color: var(--white);
}

.custom-breadcrumb {
    font-family: var(--body-font);
    font-size: 0.95rem;
}

.custom-breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-breadcrumb li a:hover {
    opacity: 0.8;
}

.custom-breadcrumb li.active {
    color: var(--card-btn);
}

.custom-breadcrumb .separator {
    color: var(--primary-color);
}

.article-body p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--p);
    font-weight: 400;
}

.article-subheading {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0px;
}



/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
}

.philosophy-label {
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}




.philosophy-stats {
    margin-top: 2rem;
}

.stat-number {
    font-family: var(--body-font);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: #1a0f0c;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}


/* History Section */
.history-section {
    background-color: #EDE6E2;
    padding: 190px 0px 50px 0px;
    position: relative;
}

.line-design::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 160px;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            #797878 0,
            #9a9a9a 8px,
            /* dash length */
            transparent 8px,
            transparent 16px
            /* gap */
        );
}

.line-design::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 160px;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            #797878 0,
            #797878 8px,
            /* dash length */
            transparent 8px,
            transparent 16px
            /* gap */
        );
}

.history-section .top-img {
    top: 0px;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.history-section h2 {
    font-size: 4rem;
}

.history-section .resort-p {
    font-family: var(--body-font);
    font-size: 1.8rem;
    line-height: 1.5;
    color: #494848 !important;
    font-weight: 400;
}

section.mission-vision-section {
    padding: 99px 0px 0px 0;
}

.why-choose-us-section {
    background-color: var(--bg-color);
    padding: 120px 0;
}

.why-choose-us-section h2 {
    font-size: 3.5rem;
    color: #1a0f0c;
}

.feature-item h4 {
    font-family: var(--body-font);
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a0f0c;
}

.why-choose-us-section .offset-lg-1 {
    margin-left: 1% !important;
}


.img-reveal-wrap {
    height: 100%;
    display: flex;
    justify-content: center;
}

.img-reveal-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feature-item img {
    width: 65px;
}

.feature-content .resort-p {
    font-size: 1.3rem;
}

.bg-top-img {
    transform: scaley(-1);
    position: absolute;
    top: 0;
}

.bottom-img {
    transform: scaleY(-1) scaleX(-1);
    position: absolute;
    bottom: 0;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--white);
}

.cta-banner {
    background: linear-gradient(rgba(187, 102, 38, 0), rgba(187, 102, 38, 0)), url('../assets/image/about/journey.webp');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 53px 40px;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-label {
    font-family: var(--body-font);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cta-heading {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--white);
}

.cta-desc {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 674px;
    margin: 0 auto;
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-color);
    font-family: var(--body-font);
    font-weight: 400;
    padding: 13px 27px;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--white);
}

.why-choose-us-section .why-choose-us {
    margin-top: 65px;
}

/*------------------somatheeram-page----------------------*/
.somatheeram-bannner-img {
    background-image: url('../assets/image/resort/Somatheeram/banner.webp');
}

.nattikabeach-bannner-img {
    background-image: url('../assets/image/resort/Nattika/banner.webp');
}

.nikkisnest-bannner-img {
    background-image: url('../assets/image/resort/Nikkis/banner.webp');
}

.kayalvarath-bannner-img {
    background-image: url('../assets/image/resort/Kayalvarath/banner.webp');
}

.blog-bannner-img {
    background-image: url('../assets/image/blog/banner.webp');
}

.faq-bannner-img {
    background-image: url('../assets/image/faq/banner.webp');
}

.blog-dtl-bannner-img {
    background-image: url('../assets/image/blog-dtl/banner.webp');
}


.welcome-section {
    padding: 46px 0 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.welcome-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.welcome-title {
    font-size: 3.8rem;
    color: var(--primary-color);
    font-family: var(--body-font);
    margin-bottom: 30px;
    font-weight: 400;
}

.welcome-section .resort-p {
    font-size: 1.7rem;
}

.welcome-bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}



/* Packages Intro Section */
.packages-intro-section {
    position: relative;
    background-color: #F6EDE8;
    padding: 180px 0 100px;
    overflow: hidden;
}

.torn-paper-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.packages-label {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.packages-title {
    font-family: var(--heading-font);
    font-size: 3.9rem;
    color: #1a0f0c;
    margin-bottom: 25px;
    line-height: 1.1;
}

/* Decorative Dashed Lines */
.decorative-lines-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dashed-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed rgba(26, 15, 12, 0.2);
}

.line-left {
    left: 150px;
}

.line-right {
    right: 150px;
}

/* Package Cards */
.package-card-item {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}

.package-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.package-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 5 / 3;
}

.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.package-card-item:hover .package-img-wrap img {
    transform: scale(1.1);
}

.package-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-category {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.package-card-title {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 500;
}

.package-book-link {
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 500;
    color: #514641;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.hover-line {
    width: 60px;
    height: 1px;
    background-color: #1a0f0c;
    transition: width 0.4s ease, background-color 0.4s ease;
}

.package-book-link:hover {
    color: var(--active);
}

.package-book-link:hover .hover-line {
    width: 100px;
    background-color: var(--active);
}


/* Nature Heals Section */
.nature-heals-section {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 40px 0;
}

.nature-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.nature-heals-section .container-fluid {
    position: relative;
    z-index: 3;
}

.nature-video-bg img {
    height: 100% !important;
    object-fit: cover;
}

.nature-content {
    max-width: 600px;
    color: var(--white);
    text-align: left;
}

.nature-title {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.nature-subtext {
    max-width: 500px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
    font-size: 1.1rem !important;
}


/* Accommodations Section */
.accommodations-section {
    padding: 95px 0 0px 0px;
    background-color: var(--white);
    overflow: hidden;
}

.section-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--p) !important;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.accommodation-scroll-wrapper {
    margin-top: 50px;
    position: relative;
    padding-bottom: 20px;
}

.accommodation-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
}

.accommodation-scroll-container::-webkit-scrollbar {
    display: none;
}

.accommodation-card {
    min-width: 700px;
    background: var(--white);
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04); */
    border: 1px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* .accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
} */

.acc-img-wrap {
    width: 44%;
    min-height: 319px;
    overflow: hidden;
}

.acc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.accommodation-card:hover .acc-img-wrap img {
    transform: scale(1.05);
}

.acc-content {
    flex: 1;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.acc-title {
    font-family: var(--body-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.acc-desc {
    font-family: var(--body-font);
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 35px;
    font-weight: 400;
}

.acc-book-link {
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
}

.book-line {
    width: 90px;
    height: 1px;
    background-color: #D3B8A8;
    display: inline-block;
    transition: all 0.3s ease;
}

.acc-book-link:hover .book-line {
    width: 130px;
    background-color: var(--primary-color);
}

.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

/* Resort Facilities Section */
.facilities-section {
    padding: 100px 0px 220px 0px;
    background-color: var(--bg-color);
    /* Light cream/beige background from screenshot */
}



.subtext {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: #666;
    margin-top: 15px;
    font-weight: 300;
}

.facilities-grid {
    margin-top: 60px;
}

.facility-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.02); */
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.facility-icon-wrap {
    margin-bottom: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon {
    max-height: 100%;
    width: auto;
    filter: brightness(1);
    /* Icons are already brown/bronze */
}

.facility-label {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}


/* ==================== Blog Listing Section ==================== */
.blog-listing-section {
    background-color: var(--bg-color);
    padding: 33px 0px 30px 0px;
}

/* Categories Toggle Button */
.btn-categories {
    background-color: var(--white);
    border: 1.5px solid #E5E5E5;
    border-radius: 50px;
    padding: 12px 15px;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e6c8b1;
}

.btn-categories:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.btn-categories img {
    width: 21px;
}

/* Categories Wrapper with Smooth Animation */
.categories-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        margin-top 0.5s ease;
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.categories-wrapper.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 30px;
    padding: 4px 0px;

}

.categories-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    width: 784px;
}

.category-filter-btn {
    background-color: transparent;
    border: 1px solid #d5b599;
    border-radius: 50px;
    padding: 8px 15px;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(1);
    margin-bottom: 0px;
}

.category-filter-btn:hover {
    background-color: rgb(255 255 255);
    border: 1px solid #d5b599;
    color: var(--primary-color);
    transform: scale(1.05);
}

.category-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1);
}

/* Blog Cards */
.blog-listing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.blog-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-listing-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-listing-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.blog-listing-card:hover .blog-listing-img-wrap img {
    transform: scale(1.08);
}

.blog-listing-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category-tag {
    font-family: var(--body-font);
    color: #000;
    text-transform: uppercase;
    margin-bottom: 8px;
    border: 1px solid var(--card-btn);
    display: grid;
    font-size: 1rem;
    padding: 6px 14px;
    border-radius: 22px;
    font-weight: 400 !important;
    line-height: 140% !important;
    letter-spacing: -0.18px;
}

.blog-dates {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--p);
    text-transform: uppercase;
    letter-spacing: -0.18px;
    margin-bottom: 15px;
    display: block;
    font-weight: 400;
}

.blog-listing-title {
    color: #5E3517 !important;
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1.92px;
    font-weight: 400;
    color: #1a0f0c;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-listing-card:hover .blog-listing-title {
    color: var(--primary-color);
}

.blog-listing-excerpt {
    font-family: var(--body-font);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.25rem;
    letter-spacing: 4.8px;
    margin-top: auto;
}

.read-more-line {
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    display: inline-block;
    transition: width 0.3s ease;
}

.blog-read-more:hover .read-more-line {
    width: 80px;
}

/* Testimonials Center Section */
.testimonials-center-section {
    padding: 50px 0px 100px 0px;
    background-color: var(--white);
    overflow: hidden;
}

.testimonial-header .section-top-label {
    letter-spacing: 2px;
}



.testimonial-main-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.quote-wrap {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.quote-icon {
    position: absolute;
    top: -20px;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../assets/image/resort/quote-icon.webp');
    background-size: contain;
}

.quote-icon.left {
    left: -100px;
}

.quote-icon.right {
    right: -100px;
    transform: rotate(180deg);
}

.testimonial-main-text {
    font-family: var(--body-font);
    font-size: 2.1rem;
    line-height: 1.4;
    color: var(--gray);
    font-weight: 300;
}

.author-meta {
    margin-top: 30px;
}

.author-name {
    font-family: var(--body-font);
    font-size: 1.5rem;
    color: #BB6726;
    font-weight: 400;
}

.author-separator {
    color: #ccc;
    margin: 0 10px;
}

.author-country {
    font-weight: 400;
    color: #666;
    font-size: 1.1rem;
}

/* Avatars Style */
.testimonial-avatars-row {
    max-width: 800px;
    margin: 40px auto 0;
}

.avatar-item {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    filter: grayscale(100%);
    border: 2px solid transparent;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-item:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.avatar-item.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1) translateY(-15px);
    border-color: #4DB5AD;
    /* Highlight color from design (turquoise) */
    box-shadow: 0 10px 20px rgba(77, 181, 173, 0.2);
}

/* Carousel Transition Speed */
#testimonialCenterCarousel .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

/* Somatheeram Awards & Recognitions Section */
.somatheeram-awards-section {
    background-color: var(--bg-color);
    /* Beige background from design */
}

.somatheeram-awards-section h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.2;
}

.som-award-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.som-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.som-award-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.som-award-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.som-award-year {
    display: block;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0px;
    font-weight: 300;
    margin-top: 10px;
}

.som-award-title {
    font-family: var(--body-font);
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}

.btn-secondary {
    background: var(--white);
    font-weight: 500;
    padding: 13px 37px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    margin-top: 40px;
    color: var(--primary-color)
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white)
}

.faq-body .faq-question {
    font-size: 1.6rem !important;
}

.faq-body .faq-header {
    padding: 18px 0;
}

.faq-body.faq-section {
    padding: 0px 0px 0px 0px !important;
}

 .wb{--a:#5E3517;--b:#5E3517;--c:#D2A679;--d:#FDF8F3;--e:#2C1810;--f:#6B5242;--g:#9A8577;--h:#E8DDD3;--i:#DDD0C3;  font-family: "Chivo", sans-serif;;color:var(--e)}
    .wb h1,.wb h2,.wb h3,.wb h4,.wb h5,.wb h6{ font-family: "Chivo", sans-serif !important;}

    /* Modal */
    .wb .modal-content{border:0;border-radius:16px;overflow:hidden;box-shadow:0 24px 80px rgba(44,24,16,.25)}
    .wb .modal-body{padding:0;display:flex;height:90vh}

    /* Sidebar */
    .wb .wb-sidebar{width:250px;min-width:250px;background:#F6EDE8;border-right:1px solid var(--h);padding:40px 20px;display:flex;flex-direction:column;align-items:center}
    .wb .wb-steps{display:flex;flex-direction:column;align-items:center;width:100%}
    .wb .wb-sn{display:flex;flex-direction:column;align-items:center;text-align:center}
    .wb .wb-sc{width:80px;height:80px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:1px solid #5E3517; background:transparent;transition:all .3s;overflow:hidden}
    .wb .wb-sn.on .wb-sc{background:var(--a);border-color:var(--a);box-shadow:0 4px 16px rgba(92,46,14,.3)}
    .wb .wb-sn.ok .wb-sc{background:var(--b);border-color:var(--b)}
    .wb .wb-sc img{width:40px;height:40px;object-fit:contain;transition:all .3s}
    .wb .wb-sn.on .wb-sc img,.wb .wb-sn.ok .wb-sc img{opacity:1;filter:brightness(0) invert(1)}
    .wb .wb-sl{margin-top:10px;font-size:14px;font-weight:600;letter-spacing:1.28px;text-transform:uppercase;color:var(--g);line-height:1.3;transition:color .3s}
    .wb .wb-sn.on .wb-sl{color:var(--a)}
    .wb .wb-sn.ok .wb-sl{color:var(--b)}
    .wb .wb-ln{width:2px;height:40px;margin:6px 0;background:repeating-linear-gradient(to bottom,var(--i) 0 4px,transparent 4px 8px)}
    .wb .wb-ln.ok{background:repeating-linear-gradient(to bottom,var(--b) 0 4px,transparent 4px 8px)}

    /* Panel */
    .wb .wb-p{flex:1;display:none;flex-direction:column;min-height:0;position:relative}
    .wb .wb-p.on{display:flex;animation:wi .4s ease}
    @keyframes wi{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}

    /* Common layout */
    .wb .wb-hd{padding:28px 36px 0;flex-shrink:0}
    .wb .wb-tg{font-size:1rem;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;color:var(--a);margin-bottom:4px}
    .wb .wb-tt{font-size:36px;font-weight:700;color: #2A2A2A;margin:5px 0;line-height:100%}
    .wb .wb-bd{flex:1;overflow-y:auto;padding:24px 36px;min-height:0;scrollbar-width:thin;scrollbar-color:var(--c) transparent}
    .wb .wb-bd::-webkit-scrollbar{width:6px}
    .wb .wb-bd::-webkit-scrollbar-thumb{background:var(--c);border-radius:3px}
    .wb .wb-ft{padding:16px 36px 24px;display:flex;justify-content:flex-end;flex-shrink:0;border-top:1px solid var(--h);background:#fff}
    .wb .btn-close{position:absolute;top:20px;right:24px;z-index:10;opacity:1;background-image: none;transition: 0.1s ease-in;border-radius: 50%;}
    .wb .btn-close:hover{opacity:1}
    .wb .wb-btn{  
        font-family: "Chivo", sans-serif;
        text-transform:uppercase;color:var(--a);
        background:0 0;
        border:1px solid var(--a);
        border-radius:50px;
        padding: 10px 25px 8px 25px;
        font-family: var(--nav-font);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1.2rem;
        cursor:pointer;
        transition:all .3s
    }
    .wb .wb-btn:hover{background:var(--a);color:#fff;box-shadow:0 4px 20px rgba(92,46,14,.3);transform:translateY(-1px)}

    /* Radio card grid */
    .wb .wb-g{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .wb .wb-g label{display:block;position:relative;cursor:pointer}
    .wb .wb-g .wb-card{background:#fff;border:1px solid #E5E5E5;border-radius:10px;overflow:hidden;transition:all .3s;height: 100%;}
    .wb .wb-g label:hover .wb-card{border-color:var(--c);box-shadow:0 8px 32px rgba(92,46,14,.14);transform:translateY(-2px)}
    .wb .wb-g input:checked~.wb-card{border-color:var(--a)!important;box-shadow:0 0 0 1px var(--a),0 8px 32px rgba(92,46,14,.14)!important}

    /* Custom radio circle on card */
    .wb .wb-g input[type=radio]{appearance:none;-webkit-appearance:none;position:absolute;top:14px;left:14px;width:24px;height:24px;border-radius:50%;border:2px solid rgba(255,255,255,.7);background: transparent;backdrop-filter:blur(4px);z-index:3;margin:0;cursor:pointer;transition:all .3s}
    .wb .wb-g input[type=radio]:checked{border-color:var(--a);background:var(--a)}
    .wb .wb-g input[type=radio]:checked::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:8px;height:8px;border-radius:50%;background:#fff}

    /* Common: card image + body */
    .wb .wb-ci{width:100%;aspect-ratio:20/10;background:linear-gradient(135deg,#E8DDD3,#D2C4B4);display:flex;align-items:center;justify-content:center;overflow:hidden}
    .wb .wb-ci img{width:100%;height:100%;object-fit:cover}
    .wb .wb-cb{padding:16px 18px 20px}
    .wb .wb-cb h5{  font-family: "Chivo", sans-serif;;font-size:16px;font-weight:600;text-transform:uppercase;color:#2A2A2A;margin-bottom:6px;line-height:1.6}
    .wb .wb-cb p{font-size:14px;color: #5C5C5C;margin:0;line-height:1.5;letter-spacing: -0.16px;}

    /* Summary row */
    .wb .wb-sr{display:flex;align-items:center;gap:20px;border:1px solid var(--h);border-radius:10px;margin-bottom:16px}
    .wb .wb-sr .wb-ci{width:130px;min-width:130px;height:90px;aspect-ratio:auto;border-radius: 8px 0 0px 8px;}
    .wb .wb-sr h5{  font-family: "Chivo", sans-serif;font-size:14px;font-weight:700;letter-spacing:.5px;color:var(--e);margin-bottom:4px;text-transform:uppercase}
    .wb .wb-sr p{font-size:14px;color:#5C5C5C;margin:0}
    .wb .wb-st{  font-family: "Chivo", sans-serif;;font-size:20px;font-weight:700;text-transform:uppercase;color:#2A2A2A;margin-bottom:14px;line-height: 120%;}
    .wb hr{border:0;height:1px;background:var(--h);margin:16px 0;opacity:1}

    /* Common form control */
    .wb .wb-fc{  font-family: "Chivo", sans-serif;width:100%;padding:12px 16px;border:1px solid #E5E5E5;border-radius:8px;font-size:14px;color:var(--e);background:#fff;outline:0;transition:all .3s}
    .wb .wb-fc::placeholder{color: #D3D3D3}
    .wb .wb-fc:focus{border-color:var(--b);box-shadow:0 0 0 3px rgba(139,69,19,.08)}
    .wb select.wb-fc{appearance:none;cursor:pointer;padding-right:32px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%239A8577' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center}
    .wb .wb-iw{position:relative}
    .wb .wb-iw .wb-fc{padding-right:44px}
    .wb .wb-iw .wb-ico{position:absolute;right:14px;top:50%;transform:translateY(-50%);width:20px;height:20px;pointer-events:none}
    .wb .wb-r2{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:28px}
    .wb .wb-gr{display:grid;grid-template-columns:120px 1fr 1fr;gap:16px;margin-bottom:12px}
    .wb .wb-lb{
        display: block;
        color: #5C5C5C;
        font-family: Chivo;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        letter-spacing: -0.2px;
        margin-bottom: 5px;
        }
    .wb .wb-ag{  font-family: "Chivo", sans-serif;;font-size:13px;font-weight:600;color:var(--a);background:0 0;border:0;cursor:pointer;padding:0}
    .wb .wb-ag:hover{color:var(--b)}
    .wb .wb-cy{display:flex;align-items:center;gap:10px;padding:12px 16px;border:1px solid #E5E5E5;border-radius:8px;background:#fff}
    .wb .wb-fl{width:28px;height:20px;overflow:hidden;border-radius:3px;border:1px solid var(--h);flex-shrink:0}
    .wb .wb-fl img{width:100%;height:100%;object-fit:cover}
    .wb .wb-cy span{font-size:14px;font-weight:500;color:var(--e)}
    .wb .wb-cy .wb-ar{font-size:12px;color:var(--g);margin-left:-4px;font-weight:400}
    .wb .wb-ck{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;cursor:pointer}
    .wb .wb-ck input{appearance:none;width:20px;height:20px;min-width:20px;border:1px solid var(--i);border-radius:4px;background:#fff;cursor:pointer;margin-top:1px;position:relative;transition:all .3s}
    .wb .wb-ck input:checked{background:var(--a);border-color:var(--a)}
    .wb .wb-ck input:checked::after{content:'✓';color:#fff;font-size:13px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
    .wb .wb-ck label{font-size:14px;color:var(--f);cursor:pointer;line-height:1.5}
    .wb .wb-ck label a{color:var(--a);font-weight:500;text-decoration:underline;text-underline-offset:2px}

    .dark{color: #000 !important;}
    .btn-close:focus{box-shadow: none;}

    .btn-close:hover{
        border: 1px dotted var(--a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 25px;
        width: 25px;
    }

/*-----------------------------------------------------------------Responsive fixes */

@media (max-width: 1400px) {
    .line-left {
        left: 80px;
    }

    .line-right {
        right: 80px;
    }
}




@media (max-width: 1399.98px) {


    .history-section .resort-p {
        font-size: 1.7rem;
    }

    .history-section h2 {
        font-size: 3.5rem;
    }

    .section-top-label {
        font-size: 17px;
    }

    .faq-question {
        font-size: 1.4rem;
    }

    .faq-header {
        padding: 28px 0;
    }

    .container-fluid {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    /* .blogs-section .container-fluid {
        padding-left: 50px !important;
        padding-right: 13px !important;
    } */
}



@media (max-width: 1199.98px) {
    .faq-body .faq-question {
        font-size: 1.5rem !important;
        letter-spacing: 0px;
    }

    .blog-dtl-content h1 {
        font-size: 3.3rem;
    }

    .testimonial-main-text {
        font-size: 2rem !important;

        margin: 0px 80px;
        font-size: 1.6rem !important
    }

    .author-name {
        font-size: 1.2rem !important;
    }

    .quote-icon {
        width: 85px !important;
        height: 85px !important;
    }

    .quote-icon.right {
        right: 0px !important;
    }

    .quote-icon.left {
        left: 0px !important;
    }

    .accommodation-card {
        min-width: 750px;
    }

    .col-lg-2-4 {
        width: 24.333%;
    }

    .welcome-section .resort-p {
        font-size: 1.5rem;
    }

    .welcome-title {
        font-size: 3rem;
    }

    .feature-item h4 {
        font-size: 1.3rem;
        font-weight: 500;
    }

    .feature-content .resort-p {
        font-size: 1.2rem;
    }

    .history-section h2 {
        font-size: 2.9rem;
    }

    .history-section .resort-p {
        font-size: 1.4rem;
    }

    .award-card-center {
        width: 440px;
    }

    .testimonial-quote {
        font-size: 1.7rem;
    }

    .container-fluid {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .nav-link-pd {
        padding: 33px 11px !important;
    }

    .mega-menu {
        top: 105px;
    }

    .lang-selector,
    .nav-link-custom {
        font-size: 1.1rem;
    }

    .btn-enquire {
        font-size: 1rem;
    }

    .special-discount-label {
        font-size: 0.8rem;
    }

    .nav-link-custom {
        padding: 0px 8px !important;
    }

    h2 {
        font-family: var(--heading-font);
        font-size: 2.9rem;
    }

    .offers-section {
        padding: 60px 0;
    }


    .testimonial-arrow,
    .offers-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .offers-section h2 {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-header {
        padding: 23px 0;
    }

    .wb .wb-sidebar {width: 220px;min-width: 220px;}
    .wb .wb-g {grid-template-columns: repeat(2,1fr);}


}



@media (max-width: 991.98px) {

.wb .modal-body{flex-direction:column;height:85vh}
.wb .wb-sidebar{width:100%;min-width:100%;flex-direction:row;padding:16px 20px;justify-content:center;border-right:0;border-bottom:1px solid var(--h)}
.wb .wb-steps{flex-direction:row;width:auto}
.wb .wb-ln{width:36px;height:2px;margin:0 6px;align-self:center;background:repeating-linear-gradient(to right,var(--i) 0 4px,transparent 4px 8px)}
.wb .wb-ln.ok{background:repeating-linear-gradient(to right,var(--b) 0 4px,transparent 4px 8px)}
.wb .wb-sc{width:48px;height:48px}.wb .wb-sc img{width:22px;height:22px}
.wb .wb-sl{font-size:9px;margin-top:6px}
.wb .wb-hd{padding:20px 24px 0}.wb .wb-tt{font-size:26px}
.wb .wb-bd{padding:20px 24px}.wb .wb-ft{padding:14px 24px 20px}


    .footer-text {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .nav-link-custom {
        padding: 15px 0 !important;
        font-size: 1.1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 2px;
    }

    .nav-item:last-child .nav-link-custom {
        border-bottom: none;
    }

    .nav-link-custom.active::after,
    .mega-menu-parent.active .nav-link-custom::after,
    .mega-menu-parent:hover .nav-link-custom::after {
        display: none;
        /* Hide standard underline on mobile list */
    }

    .nav-link-custom.active {
        color: #b88953 !important;
        font-weight: 600;
        opacity: 1;
    }

    /* Offcanvas Side-Drawer Styles */
    .offcanvas {
        background-color: rgba(26, 15, 12, 1) !important;
        /* Fully opaque to hide background navbar */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        width: 340px !important;
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .offcanvas-header {
        padding: 2rem 1.5rem 1rem;
        background-color: rgba(26, 15, 12, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .offcanvas-body {
        padding: 1rem 1.5rem 2.5rem;
    }

    .btn-close-white {
        opacity: 0.8;
        transition: transform 0.3s ease;
    }

    .btn-close-white:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    .mega-menu {
        position: relative;
        top: 0 !important;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        /* Animate height from 0 */
        overflow: hidden;
        transform: translateY(-10px);
        /* Subtle slide down effect */
        display: block;
        /* Must be block to animate dimensions */
        backdrop-filter: none;
        margin-top: -1px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-menu-parent.active .mega-menu,
    .mega-menu-parent:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        /* Large enough to fit content */
        transform: translateY(0);
    }

    .mega-menu-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0 10px 20px;
    }

    .mega-divider {
        display: none;
    }

    .mega-menu-list li a {
        padding: 10px 0;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: none;
    }

    .navbar-nav {
        padding: 0;
    }

    .nav-divider-mobile {
        height: 1px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 20px 0;
    }

    .faq-main-title {
        font-size: 3.5rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .blog-dtl-content {
        width: 640px;
    }

    .blog-dtl-content h1 {
        font-size: 2.9rem;
    }

    .category-filter-btn {
        padding: 10px 16px;
        font-size: 0.6rem;
    }

    .blog-listing-section {
        padding: 60px 0;
    }

    .btn-categories {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .blog-listing-title {
        font-size: 1.3rem;
    }

    .blog-listing-excerpt {
        font-size: 1rem;
    }

    .cta-desc {
        max-width: 100%;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .award-card-center {
        position: inherit;
        top: 0%;
        left: 0%;
        transform: translate(-0%, -0%);
        width: 497px;
        z-index: 1;
        width: 100%;
    }

    .awards-section {
        padding: 60px 0;
    }

    .award-card:not(.featured) {
        transform: translateY(0);
    }

    .award-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .award-card:hover,
    .award-card.featured:hover {
        transform: translateY(-5px) !important;
    }

    .award-icon {
        width: 100px;
        height: 100px;
    }

    .carousel-inner,
    .carousel-item {
        height: 800px;
    }

    .hero-carousel {
        height: 100%;
    }

    .accommodations-section {
        padding: 80px 0 0px 0px;
    }

    .accommodation-card {
        min-width: 90vw;
        flex-direction: column;
    }

    .acc-img-wrap {
        width: 100%;
        min-height: 300px;
    }

    .acc-content {
        padding: 40px 30px;
    }

    .packages-intro-section {
        padding: 120px 0 60px;
    }

    .packages-title {
        font-size: 3rem;
    }

    .line-left,
    .line-right {
        display: none;
    }

    .package-card-title {
        font-size: 1.5rem;
    }

    .welcome-section {
        padding: 80px 0 120px;
    }

    .welcome-title {
        font-size: 3.5rem;
    }

    .welcome-section .resort-p {
        font-size: 1.2rem;
    }

    .welcome-section .resort-p {
        font-size: 1.3rem;
    }

    .history-section::before {
        right: 35px;
    }

    .history-section::after {
        left: 35px;
    }

    .history-section .award-card-center {
        width: 100%;
        position: inherit;
        top: 0%;
        left: 0%;
        transform: translate(-0%, -0%);
    }

    h2 br {
        display: none;
    }

    .img-top-space {
        margin-top: 0px;
    }

    .resort-row {
        padding: 55px 19px
    }

    .resort-content {
        padding: 50px 10px 10px 10px;
    }

    .offset-lg-1 {
        margin-left: 0%;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        top: 50%;
        text-align: left;
        max-width: 100%;
    }

    .carousel-controls-custom {
        left: 10%;
        bottom: 50px;
    }

    .nav-link-custom {
        padding: 9px 8px !important;
    }

    .mega-menu .mega-menu-list li a:hover,
    .nav-link-custom:hover {
        color: #b88953 !important;
    }

    .resort-row:nth-child(even) {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2.6rem;
    }

    .offers-section {
        padding: 50px 0;
    }



    .resort-link:hover {
        gap: 15px !important;
    }

    .why-ayurveda-section {
        min-height: 500px;
        padding: 80px 0;
    }

    .why-content {
        padding: 30px 35px;
    }



    .why-desc {
        font-size: 1rem;
        line-height: 1.8;
    }

    .offers-desc {
        max-width: 100%;
    }

    .section-desc {
        max-width: 100%;
    }

    .philosophy-section {
        padding: 60px 0;
    }

    .philosophy-heading {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }


    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .testimonial-content-wrap.ps-lg-5 {
        max-width: 100%;
        min-height: 220px;
    }

    .awards-section {
        padding: 60px 0;
    }

    .award-card:not(.featured) {
        transform: translateY(0);
    }

    .award-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .award-card:hover,
    .award-card.featured:hover {
        transform: translateY(-5px) !important;
    }

    .award-icon {
        width: 100px;
        height: 100px;
    }

    .content-banner p {
        font-size: 1.1rem;
        width: 100%;
    }

    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-us-section h2 {
        font-size: 2.5rem;
    }

    .feature-item h4 {
        font-size: 1.4rem;
    }

    .nature-heals-section {
        padding: 25px 0;
    }

    .nature-title {
        font-size: 3rem;
    }

    .nature-content {
        max-width: 460px;
        color: var(--white);
        text-align: left;
    }

    .facilities-section {
        padding: 90px 0px 140px 0px;
    }

    .blog-read-more {
        font-size: 1.15rem;
    }

    .blog-category-tag {
        font-size: 16px !important;
    }

}





@media (max-width: 767.98px) {

    .wb .wb-g{grid-template-columns:1fr;gap:14px}
    .wb .wb-g .wb-card{display:flex}
    .wb .wb-ci{width:120px;min-width:120px;aspect-ratio:auto;height:100%;min-height:100px}
    .wb .wb-cb{padding:14px 16px;display:flex;flex-direction:column;justify-content:center}
    .wb .wb-g input[type=radio]{top:10px;left:10px;width:20px;height:20px}
    .wb .wb-gr,.wb .wb-r2{grid-template-columns:1fr;gap:12px}
    .wb .wb-tt{font-size:22px;padding-right:36px}
    .wb .wb-sl{display:none}
    .wb .wb-sr{flex-direction:column;align-items:flex-start;gap:0px}
    .wb .wb-sr .wb-ci{width:100%;height:80px;border-radius: 8px 8px 0px 0px;}
    .wb .wb-btn{font-size: 1rem  !important;}
    .wb .wb-lb{font-size: 14px;}


    .blog-dtl-content {
        width: 500px;
    }

    .blog-dtl-content h1 {
        font-size: 2.5rem;
    }

    .inner-banner {
        height: 500px;
    }

    .blog-dtl-tag {
        margin-bottom: 15px;
    }

    .article-body p {
        font-size: 1.1rem;
    }

    .article-subheading {
        font-size: 1.6rem;
    }

    .blog-listing-section .row.align-items-center {
        text-align: center !important;
    }

    .btn-categories {
        margin-top: 15px;
    }

    .categories-filter-row {
        justify-content: center;
    }

    .blog-listing-card {
        margin-bottom: 20px;
    }

    .somatheeram-awards-section {
        padding: 60px 0;
    }

    .som-award-card {
        padding: 40px 20px;
        border-radius: 16px;
    }


    .som-award-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .som-award-title {
        font-size: 1.2rem;
    }

    .testimonial-main-text br {
        display: none;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .quote-wrap {
        padding: 0 40px;
    }

    .avatar-item {
        width: 50px;
        height: 50px;
    }

    .quote-icon {
        width: 40px !important;
        height: 85px !important;
    }

    .testimonial-main-text {
        font-size: 1.5rem !important;
        margin: 0px 40px !important;
    }

    .welcome-section .resort-p {
        font-size: 1.2rem;
        text-align: center;
    }

    .welcome-title {
        font-size: 3rem;
    }

    .cta-heading {
        font-family: var(--heading-font);
        font-size: clamp(2rem, 6.6vw, 3.8rem);
    }


    .mob-p-c.resort-p {
        text-align: center;
    }

    .content-banner h1 {
        font-size: 3.6rem;
    }

    .hero-heading {
        font-size: clamp(3.1rem, 6vw, 2rem);
    }

    .resort-p {
        text-align: left;
    }

    .resort-row {
        padding: 55px 19px;
    }

    .img-top-space {
        margin-top: 0px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .history-section {
        padding: 125px 0 60px 0px;
    }

    .history-section .resort-p {
        font-size: 1.4rem;
        text-align: center;
    }

    .history-section h2 {

        font-size: 2.4rem;
    }

    .history-section .resort-p {
        font-size: 1.2rem;
        text-align: center;
    }


    .why-ayurveda-section {
        min-height: 450px;
        padding: 60px 0;
    }

    .why-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(245, 222, 179, 0.9) 30%, rgba(245, 222, 179, 0.95) 100%);
    }

    .why-content {
        padding: 25px 20px;
    }



    .why-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Blogs Section Mobile - Show 1 card */
    .blog-card {
        min-width: 100%;
        width: 100%;
    }

    .blogs-section {
        padding: 110px 0;
    }

    .feature-item {
        margin-bottom: 2rem !important;
    }

    .feature-icon img {
        width: 40px;
    }

    .col-lg-2-4 {
        width: 50%;
    }

    .facility-card {
        padding: 30px 15px;
    }

    .facility-icon-wrap {
        height: 100px;
        margin-bottom: 20px;
    }

    .facility-label {
        font-size: 0.75rem;
    }


}






@media (max-width: 575.98px) {

    .wb .wb-hd{padding:16px 18px 0}.wb .wb-bd{padding:16px 18px}
    .wb .wb-ft{padding:12px 18px 16px}.wb .wb-btn{width:100%;text-align:center}

    .faq-body .faq-question {
        font-size: 1.2rem !important;
        letter-spacing: 0px;
        line-height: 28px;
    }

    .blog-dtl-content {
        width: 350px;
        left: 25px;
    }

    .blog-dtl-content h1 {
        font-size: 1.9rem;
    }

    .blog-dtl-tag {
        font-size: 0.75rem;
        padding: 4px 15px;
    }

    .blog-dtl-date {
        font-size: 0.9rem;
    }

    .categories-filter-row br {
        display: none;
    }

    .testimonial-main-text {
        font-size: 1.2rem !important;
        margin: 0px 15px !important;
    }

    .author-name {
        font-size: 0.9rem !important;
    }

    .acc-title {
        font-size: 1.6rem;
    }

    .facilities-section {
        padding: 50px 0px 140px 0px;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .history-section::before {
        right: 15px;
    }

    .history-section::after {
        left: 15px;
    }

    .philosophy-section {
        padding: 60px 0px 7px 0px;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .inner-banner {
        height: 580px;
    }

    .section-top-label {
        font-size: 14px;
    }

    .testimonial-quote {
        font-size: 1.3rem;
    }

    .faq-main-title {
        font-size: 2rem;
    }

    .cta-label {
        font-family: var(--body-font);
        font-size: 1.1rem;
    }

    .container-fluid {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .history-section h2 {
        font-size: 2rem;
    }

    .content-banner {
        padding: 0px 15px;
        top: 50%;
    }

    .content-banner h1 {
        font-size: 2.9rem;
    }

    .content-banner h1 br {
        display: none;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-heading {
        font-size: clamp(2rem, 5vw, 2rem);
    }

    .hero-subtext {
        font-size: clamp(0.9rem, 1.2vw, 1.25rem);
        line-height: 22px;
    }

    .btn-know-more {
        font-size: 0.7rem;
    }

    .why-ayurveda-section {
        min-height: 400px;
        padding: 50px 0;
    }

    .why-content {
        padding: 20px 15px;
    }

    .why-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .offers-section {
        padding: 40px 0;
    }


    .testimonial-arrow,
    .offers-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .indicator-dot.active {
        width: 30px;
    }

    .why-ayurveda-section h2 {
        font-size: 2rem;
    }

    .offers-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        line-height: normal;
    }

    .cta-label {
        font-family: var(--body-font);
        font-size: 1rem;
    }

    .cta-banner {
        padding: 70px 20px;
    }

    .cta-desc {
        font-size: 1.1rem;

    }

    .cta-heading {
        font-family: var(--heading-font);
        font-size: 36px;
    }

    .nature-title {
        font-size: 2.6rem;
    }

    .nature-heals-section {
        min-height: 100vh;
    }

    .wb .wb-sr .wb-ci {  border-radius: 8px 8px 0px 0px;}

}



@media (max-width: 400.98px) {
    .blog-dtl-content {
        width: 310px;
    }

    .faq-body .faq-question {
        font-size: 1.05rem !important;
        letter-spacing: 0px;
        line-height: 24px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }


    .col-lg-2-4 {
        width: 100%;
    }

    .quote-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .quote-wrap {
        padding: 0 26px;
    }

    .testimonial-main-text {
        font-size: 1.1rem !important;
        margin: 0px 1px !important;
    }

    .avatar-item.active {
        transform: scale(1.1) translateY(-5px) !important;
    }
}

    @media (min-width: 1400px) {
    .modal-xl {
        --bs-modal-width: 1380px !important;
    }
}



/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

  