/* navbar start */
/* h1,
h2,
h3 {
    font-family: "Lora", serif;
} */

body,
p,
a {
    font-family: "Nunito Sans", sans-serif;
}

/* 🌿 Topbar */
.topbar {
    background: #145443;
    color: #fff;
    padding: 4px 0;
    font-size: 14.5px;
    letter-spacing: 0.3px;
}

.contact-item {
    color: #ffffff;
    text-decoration: none;
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.contact-item i {
    font-size: 15px;
    color: #ffffff;
}

.contact-item:hover {
    color: #de8f59;
}

.contact-item:hover i {
    color: #de8f59;
}

/* 🌿 Social icons */
.social-link {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .email-item {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .social-link {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        font-size: 14px;
    }
}

/* 🌿 Navbar */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 60px;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    background: linear-gradient(90deg, #e03131, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #198754 !important;
    font-weight: 800;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #f3be02 !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: #198754;
}

.navbar-toggler-icon {
    filter: invert(47%) sepia(84%) saturate(372%) hue-rotate(96deg) brightness(95%) contrast(92%);
}

/* 🌿 Responsive navbar height */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }

    /* ✅ Center Book Now button on mobile */
    .order-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}

/* navbar end */

/* crousel start */

/* 🌿 Carousel Container */
/* 🌿 Carousel Container */
.carousel-item {
    height: 70vh;
    position: relative;
    background-size: cover;
    background-position: center;
    filter: brightness(1);
}

/* 🌿 Overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
    pointer-events: none;
}

/* 🌿 Content */
.carousel-caption {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 0 15px;
    animation: fadeUp 1.5s ease forwards;
    width: 800px;
}

/* 🌿 Headline */
.carousel-caption h1 {
    font-family: "Poppines", serif;
    font-size: 3.3rem;
    text-transform: capitalize;
    font-weight: 800;
    /* 🔥 Bold added */
    background: linear-gradient(90deg, #ffc800, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 20px rgba(255, 200, 0, 0.9);
    letter-spacing: 1px;
    animation: glow 3s ease-in-out infinite alternate;
}


/* 🌿 Paragraph */
.carousel-caption p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    /* keeps text readable */
}


/* 🌿 Book Button */
.btn-book {
    background: linear-gradient(90deg, #f3be02, #de8f59);
    color: #fff;
    border: none;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(243, 190, 2, 0.3);
}

.btn-book:hover {
    background: linear-gradient(90deg, #de8f59, #f3be02);
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(243, 190, 2, 0.6);
}

/* 🌿 Responsive Design */
@media (max-width: 991px) {
    .carousel-caption {
        top: 48%;
        /* moved slightly higher */
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .btn-book {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        top: 45%;
        /* moved higher for tablets */
        padding: 0 20px;
        width: 90% !important;
        max-width: 600px;
    }

    .carousel-caption h1 {
        font-weight: 800 !important;
        font-size: 1.4rem;
        text-shadow: 0 2px 10px rgba(243, 190, 2, 0.3);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-caption p {
        font-weight: 600 !important;
        font-size: 0.85rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-book {
        padding: 8px 22px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .carousel-caption {
        top: 42%;
        /* higher for small screens */
        width: 95% !important;
        max-width: 700px;
        font-weight: 900 !important;
    }

    .carousel-caption h1 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .carousel-caption p {
        font-weight: 700 !important;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .btn-book {
        padding: 7px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .carousel-caption {
        top: 40% !important;
    }

    .carousel-caption h1 {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 0.75rem !important;
    }
}

/* 🌿 Right Side Vertical Indicators */
.carousel-indicators {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
    margin: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background: linear-gradient(45deg, #f3be02, #de8f59);
    box-shadow: 0 0 12px rgba(243, 190, 2, 0.8);
    transform: scale(1.3);
}

/* 🌿 Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(243, 190, 2, 0.3);
    }

    to {
        text-shadow: 0 0 25px rgba(243, 190, 2, 0.6);
    }
}

/* 🌿 Responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: 30vh;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-book {
        padding: 9px 25px;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        flex-direction: row;
        bottom: 20px;
        right: 50%;
        top: auto;
        transform: translateX(50%);
        gap: 10px;
    }
}



/* crousel end */

/* about start */

/* 🌿 Header Area */
.intro-section {
    background: linear-gradient(135deg, #1d5d52, #2a7a6f);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    animation: fadeDown 1s ease-in-out;
}

.intro-section h1 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 🌺 Buttons */
.primary-btn,
.secondary-btn {
    background: linear-gradient(90deg, #cd9d09, #e8b84b);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

.primary-btn:hover,
.secondary-btn:hover {
    background: linear-gradient(90deg, #cd9d09, #e8b84b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 149, 106, 0.4);
}

/* 🌄 Headings */
.section-heading {
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
    font-weight: 700;
    animation: slideUp 1s ease-in-out;
}

.accent-text {
    color: #cd9d09;
    display: block;
}

.subtitle {
    font-family: "Dancing Script", cursive;
    color: #1a1a1a;
    font-style: italic;
    animation: fadeIn 1.2s ease-in-out;
}

/* 🌸 Decorative Corners */
.shape-box {
    position: absolute;
    width: 70px;
    height: 70px;
}

.shape-top-right {
    top: -10px;
    right: -10px;
    background-color: #1d5d52;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.shape-bottom-left {
    bottom: -10px;
    left: -10px;
    background: linear-gradient(90deg, #cd9d09, #e8b84b);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* 🌅 Image Area */
.photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    animation: fadeIn 2s ease-in-out;
}

.photo-container img {
    transition: transform 0.6s ease;
}

.photo-container:hover img {
    transform: scale(1.05);
}

/* ✨ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* about end */

/* destination start */
.explore-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
}

.explore-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 50, 0.6);
    z-index: 0;
}

.explore-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeSlideUp 1.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.explore-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeDown 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.place-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.place-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(3px);
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    animation: cardFadeIn 1s ease forwards;
    position: relative;
    z-index: 2;
}

.place-card:nth-child(1) {
    animation-delay: 0.6s;
}

.place-card:nth-child(2) {
    animation-delay: 0.8s;
}

.place-card:nth-child(3) {
    animation-delay: 1s;
}

.place-card:nth-child(4) {
    animation-delay: 1.2s;
}

.place-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.place-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.place-info {
    background: rgba(0, 60, 60, 0.7);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    font-family: "Playfair Display", serif;
}

.place-info span {
    font-size: 1.2rem;
}

.place-info i {
    font-size: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.photo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.photo-modal img {
    max-width: 90%;
    max-height: 65%;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.close-photo {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .explore-container h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .place-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .explore-section {
        padding: 4rem 1rem;
    }

    .explore-container h2 {
        font-size: 1.8rem;
    }
}

/* destination end */

/* amenty start */

.amenities-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

/* Gradient + Animated Heading */
.amenities-section h2 {
    font-family: "Poppins", sans-serif;
    /* Added Poppins */
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #e5a31f, #c18500, #e5a31f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}

.amenities-section h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #e5a31f, #ffd466, #c18500);
    position: absolute;
    left: 20%;
    bottom: -12px;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 1s forwards;
    animation-delay: 0.8s;
    box-shadow: 0 0 15px rgba(229, 163, 31, 0.6);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underline {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.amenity-card {
    border-radius: 12px;
    padding: 30px 15px;
    margin: 15px 0;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Hot & Cold Water Icon Wrapper */
.tap-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.tap-main-icon {
    font-size: 2.2rem;
    color: #e5a31f;
    transition: transform 0.3s, color 0.3s;
}

.tap-hot-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.8rem;
    color: #ff4d4d;
}

.tap-cold-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    font-size: 0.8rem;
    color: #3498db;
}

.amenity-card:hover .tap-main-icon {
    transform: translateY(-5px) scale(1.2);
    color: #c18500;
}

.amenity-card i:not(.tap-hot-icon):not(.tap-cold-icon) {
    font-size: 2.2rem;
    color: #e5a31f;
    margin-bottom: 12px;
    transition: transform 0.3s, color 0.3s;
}

.amenity-card:hover i:not(.tap-hot-icon):not(.tap-cold-icon) {
    transform: translateY(-5px) scale(1.2);
    color: #c18500;
}

.amenity-card h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    transition: color 0.3s;
}

.amenity-card:hover h5 {
    color: #c18500;
}

/* amenty end */

/* banner start */
.hero-section {
    position: relative;
    height: 75vh;
    /* Desktop height */
    background: url('images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #e5a31f, #ffd466, #c18500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: #fdf6e3;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-content .btn-contact {
    display: inline-block;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e5a31f, #ffd466);
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(229, 163, 31, 0.5);
}

.hero-content .btn-contact:hover {
    background: linear-gradient(135deg, #ffd466, #c18500);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(193, 133, 0, 0.6);
    text-decoration: none;
}

/* Optional text animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1,
.hero-content p,
.hero-content .btn-contact {
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.3s;
}

.hero-content p {
    animation-delay: 0.6s;
}

.hero-content .btn-contact {
    animation-delay: 0.9s;
}

/* Responsive adjustments */
@media(max-width:992px) {
    .hero-section {
        height: 60vh;
    }
}

@media(max-width:768px) {
    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn-contact {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media(max-width:480px) {
    .hero-section {
        height: 45vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content .btn-contact {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* banner end */

/* testimonial start */
.testimonial-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* Image Styling */
.testimonial-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    animation: fadeInLeft 1s ease forwards;
}

.testimonial-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
}

.testimonial-image img:hover {
    transform: scale(1.05);
}

/* Content Styling */
.testimonial-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    animation: fadeInRight 1s ease forwards;
}

.testimonial-content h6 {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.testimonial-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #111;
    position: relative;
}

.testimonial-content h2 span {
    color: #caa45d;
    /* gold color */
    position: relative;
}

.testimonial-content h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #caa45d;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

/* Testimonial Boxes */
.testimonial-box {
    border: 1px solid #caa45d;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-box::before {
    content: "“";
    font-size: 2.2rem;
    color: #caa45d;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-box p {
    margin: 0;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media(max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-content h2 {
        font-size: 2rem;
    }
}

/* testimonial end */

/* cottage start */
/* Section */
.cosmo-cottage-section {
    /* background: linear-gradient(135deg, #fdf9f2, #f0e4d7); */
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

/* Main Heading above image & content */
.cosmo-section-heading {
    text-align: center;
    width: 100%;
    /* margin-bottom: 50px;
    padding: 30px 0; */
}

.cosmo-section-heading h1 {
    font-family: "Poppins", sans-serif;
    /* Poppins apply kiya */
    font-size: 2.8rem;
    font-weight: 700;
    color: #23435c;
}

.cosmo-section-heading h1 span {
    color: #caa45d;
}

.cosmo-section-heading .heading-underline {
    width: 80px;
    height: 4px;
    background: #caa45d;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Image Wrapper */
.cosmo-img-wrapper {
    position: relative;
}

.cosmo-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s, box-shadow 0.5s;
}

.cosmo-img-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cosmo-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: inset 0 0 80px rgba(202, 164, 93, 0.4);
    pointer-events: none;
}

/* Content */
.cosmo-cottage-content h2 {
    font-weight: 700;
    color: #23435c;
    font-size: 2.5rem;
}

.cosmo-cottage-content h2 span {
    color: #caa45d;
}

.cosmo-cottage-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cosmo-btn-warning {
    background-color: #caa45d;
    border: none;
    transition: background 0.3s, transform 0.3s;
}

.cosmo-btn-warning:hover {
    background-color: #b38b4d;
    transform: translateY(-3px);
}

/* Fade-in animations */
@keyframes cosmoFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cosmoFadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cosmo-img-wrapper {
    animation: cosmoFadeInLeft 1s ease forwards;
}

.cosmo-cottage-content {
    animation: cosmoFadeInRight 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .cosmo-img-wrapper img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .cosmo-cottage-section {
        flex-direction: column;
        padding: 30px 20px;
        min-height: auto;
    }

    .cosmo-img-wrapper img {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
    }

    .cosmo-cottage-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .cosmo-cottage-content p {
        text-align: center;
        font-size: 0.95rem;
    }

    .cosmo-btn-warning {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cosmo-img-wrapper img {
        height: 250px;
    }

    .cosmo-cottage-content h2 {
        font-size: 1.7rem;
    }

    .cosmo-cottage-content p {
        font-size: 0.9rem;
    }

    .cosmo-section-heading h1 {
        font-size: 2rem;
    }
}

/* cottage end */

/* contact start */

/* Contact Section */
.contact-area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fefcf8, #f2e7d8);
    padding: 100px 0;
}

.contact-area::before,
.contact-area::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(202, 164, 93, 0.25);
    filter: blur(100px);
}

.contact-area::before {
    top: -50px;
    left: -50px;
}

.contact-area::after {
    bottom: -50px;
    right: -50px;
}

.contact-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #23435c;
    margin-bottom: 10px;
    position: relative;
}

.contact-heading span {
    color: #caa45d;
}

.contact-subtext {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

/* Contact Card (Glass Effect) */
.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 45px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

/* Left Info */
.contact-info h4 {
    color: #23435c;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: #444;
    transition: 0.3s;
}

.contact-info .info-item:hover {
    color: #caa45d;
}

.contact-info i {
    color: #caa45d;
    font-size: 1.4rem;
    margin-right: 14px;
    background: rgba(202, 164, 93, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* Form */
.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #caa45d;
    box-shadow: 0 0 10px rgba(202, 164, 93, 0.4);
}

.contact-btn {
    background: linear-gradient(135deg, #caa45d, #b9914d);
    color: #fff;
    border: none;
    font-weight: 500;
    padding: 12px 35px;
    border-radius: 30px;
    transition: 0.4s;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #b9914d, #a57f3b);
    transform: translateY(-3px);
}

/* Floating Decoration */
.floating-icon {
    position: absolute;
    font-size: 70px;
    color: rgba(202, 164, 93, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 30px;
    }
}

/* contact end */

/* footer start */
footer {
    background: linear-gradient(135deg, #145443, #0e3d31);
    color: #fff;
    font-family: "Poppins", sans-serif;
}

/* ===== LOGO SECTION ===== */
.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 10px;
}

.footer-logo span {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: #f7c873;
}

/* ===== ABOUT ===== */
.footer-about {
    font-size: 15px;
    color: #dcdcdc;
    line-height: 1.7;
}

/* ===== HEADINGS ===== */
.footer-heading {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

/*  .footer-heading::after {
        content: "";
        width: 45px;
        height: 2px;
        background: #f7c873;
        display: block;
        margin-top: 6px;
      } */

/* ===== LINKS ===== */
.footer-links a {
    display: block;
    color: #c7c7c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f7c873;
    padding-left: 4px;
}

/* ===== SOCIAL ICONS ===== */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #f7c873;
    color: #145443;
    transform: translateY(-4px);
}

/* ===== CONTACT INFO ===== */
.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ddd;
}

/* ===== BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #f7c873;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== EQUAL SPACING ===== */
.footer-section {
    padding: 0 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-section {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 10px;
    }

    .footer-logo span {
        display: block;
        margin-top: 8px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    footer {
        text-align: center;
    }

    .footer-links a {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .footer-heading {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .footer-logo span {
        display: none;
    }
}

/* footer end */

/* breadcrumb banner start */
/* breadcrumb banner start */
/* ======= Banner Section ======= */
.contact-banner {
    position: relative;
    background: url("images/ba.jpg") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.55);
    /* darker overlay for luxury feel */
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #c8a97e;
    /* gold tone */
    margin: 10px 0;
    letter-spacing: 1px;
}

.banner-overlay h1 span {
    color: #ffffff;
}

/* ===== Breadcrumb Styling ===== */
.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #c8a97e;
    /* gold hover */
}

.breadcrumb span {
    margin: 0 6px;
    color: #c8a97e;
    /* gold slash */
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-banner {
        height: 280px;
    }

    .banner-overlay h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 220px;
    }

    .banner-overlay h1 {
        font-size: 30px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 130px;
    }

    .banner-overlay h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* breadcrumb banner end */
/* breadcrumb banner end */

/* about start */
/* ===== About Area (Renamed Classes) ===== */
.cosmo-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f9f8, #e9f1ed);
    overflow-x: hidden;
}

.cosmo-img-box {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.cosmo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.cosmo-img-box:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cosmo-text-area {
    padding-left: 40px;
}

.cosmo-text-area h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    color: #145443;
    margin-bottom: 20px;
    position: relative;
}

.cosmo-text-area h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f7c873;
    margin-top: 10px;
    border-radius: 3px;
}

.cosmo-text-area p {
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 15px;
}

/* ========== Responsive (Renamed) ========== */
@media (max-width: 992px) {
    .cosmo-text-area {
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .cosmo-text-area h2 {
        font-size: 32px;
    }

    .cosmo-img-box {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .cosmo-info-section {
        padding: 70px 0;
    }

    .cosmo-text-area h2 {
        font-size: 26px;
    }

    .cosmo-text-area p {
        font-size: 14px;
    }

    .cosmo-img-box {
        min-height: 300px;
    }
}

/* about end */

/* about  */
/*  */
/* about */


.activities-section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #145443;
    margin-bottom: 15px;
}

.activities-section-title p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.activities-slider-container {
    overflow: hidden;
    position: relative;
}

.activities-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.activities-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    flex: 0 0 calc(33.333% - 20px);
    /* Adjusted width */
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activities-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.activities-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.activities-card-title {
    color: #145443;
    font-family: "Playfair Display", serif;
    margin-top: 10px;
}

.activities-card-text {
    color: #555;
    font-size: 15px;
}

.activities-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #145443;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.9;
}

.activities-slider-btn:hover {
    background: #0f3c31;
}

.activities-prev-btn {
    left: 10px;
}

.activities-next-btn {
    right: 10px;
}

@media (max-width: 991px) {
    .activities-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .activities-card {
        flex: 0 0 100%;
    }
}

/* fixed btn start */
/* 🌿 Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25d366;
}

.email-btn {
    background-color: #0072c6;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* fixed btn end */