body {
    font-family: Arial, sans-serif;
    margin: 0px auto !important;
    padding: 0 !important;
    background-color: #EEECE8 !important;
}

/* ================= BANNER ================= */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

/* ================= HEADER ================= */
.header-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    color: #fff;
}

/* .container {
    width: 90%;
    margin: auto;
} */

/* ================= TOP BAR (DESKTOP ONLY) ================= */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.address i {
    margin: 8px;
}

.address p {
    display: inline;
    /* margin-right: 15px; */
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.custom-hr {
    border: none;
    height: 1px;
    background: #fff;
    opacity: 0.7;
    margin: 0px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: relative;
}

/* Desktop nav */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    list-style: none;
    /* padding: 15px 0; */
    margin: 0px auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.logo img {
    height: 65px;
}

/* ================= MOBILE HEADER ================= */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    /* 🔥 logo left | toggle right */
    width: 100%;
    padding: 15px 0;
}

.mobile-logo {
    height: 45px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* ==================================================
   TABLET + MOBILE (≤ 991px)
================================================== */
@media (max-width: 991px) {

    /* Hide desktop-only items */
    .top-bar,
    .custom-hr {
        display: none;
    }

    /* Show mobile header */
    .mobile-header {
        display: flex;
    }

    /* Show toggle */
    .hamburger {
        display: flex;
        padding: 10px;
    }

    /* Dropdown nav */
    .nav-links {
        position: absolute;
        top: 65px;
        right: 10px;
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        display: none;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    /* Hide desktop logo */
    .desktop-logo {
        display: none;
    }

    .main-banner {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

}

/* ==================================================
   DESKTOP ONLY (≥ 992px)
================================================== */
@media (min-width: 992px) {

    /* Desktop visibility */
    .top-bar {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
    }

    /* Hide mobile elements */
    .mobile-header,
    .hamburger {
        display: none;
    }

    .desktop-logo {
        display: block;
    }
}


.about-us {
    padding: 40px 0px;
}

.about-img img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: auto;
}

.title h1 {
    font-family: 'Cinzel', sans-serif;
    font-size: clamp(20px, 4vw, 25px);
    margin-bottom: 5px;
    text-align: center;
    font-weight: 700;
    color: #000;
}

.title .underline {
    width: clamp(120px, 35vw, 200px);
    height: auto;
    display: block;
    margin: 0 auto 10px;
}



.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 5px;
}



/* 🔥 Mobile Responsive */
@media (max-width: 767px) {
    .about-us {
        padding: 40px 0px;
        text-align: center;
    }

    .about-img {
        margin-bottom: 30px;
    }

    .about-content h1 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 16px;
        text-align: justify;
    }

}

/* Section */
.facility {
    padding: 50px 0;
    overflow: hidden;
}

.facility-slider {
    width: 100%;
    overflow: hidden;
}

.facility-track {
    display: flex;
    gap: 20px;
    /* padding: 0px 0px 20px 0px; */
    width: max-content;
    /* IMPORTANT */
    will-change: transform;
}

.facility-box {
    width: 400px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.facility-box:hover {
    transform: translateY(-8px);
}

.facility-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.facility-content {
    padding: 20px;
    text-align: center;
}

.facility-content h2 {
    font-family: 'Cinzel', sans-serif;
    font-size: 25px;
    margin-bottom: 10px;
}

.facility-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #000;
}

/* Tablet */
@media (max-width: 991px) {
    .facility-box {
        width: 350px;
    }

    .about-content p {
        font-size: 17px;
        text-align: justify;
    }


}

.facility-slider {
    position: relative;
}

/* Buttons wrapper */
.facility-controls {
    position: absolute;
    bottom: 0px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Buttons */
.facility-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #2e7d32;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facility-btn:hover {
    background: #1c4b1e;
    /* transform: scale(1.05); */
}


/* Mobile */
@media (max-width: 767px) {
    .facility-box {
        width: 240px;
    }

    .facility-content h2 {
        font-size: 18px;
    }

    .facility-content p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .facility-box {
        width: 300px;
    }
}




.property {
    padding:80px 0px 40px 0;
    /* background: #fff; */
}

/* Image wrapper */
.property-img {
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
}

.property-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Large images */
.property-img.large img {
    min-height: 350px;
}

/* Hover effect */
.property-img:hover img {
    /* transform: scale(1.08); */
}

/* Tablet */
@media (max-width: 991px) {
    .property {
        padding: 60px 0;
    }

    .property-img img,
    .property-img.large img {
        min-height: 260px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .property {
        padding: 50px 0;
    }

    .property-img img,
    .property-img.large img {
        min-height: 220px;
    }
}

.offer-section {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
    color: #fff;
}


.offer-section h1 {
    color: #fff !important;
}

/* Background video */
.offer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Overlay */
.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Offer items */
.offer-icon {
    text-align: center;
    margin: 50px 0px 0px 0px;
}

.offer-icon img {
    width: 70px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.offer-icon h2 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Cinzel', sans-serif;
}

/* Tablet */
@media (max-width: 991px) {
    .offer-section {
        padding: 80px 0;
    }

    .offer-icon img {
        width: 60px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .offer-section {
        padding: 60px 0;
    }

    .offer-icon h2 {
        font-size: 14px;
    }
}

/* =========================
   EXPLORE SECTION
========================= */

.explore {
    padding: 40px 0;
}

.explore-boxes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    height: 400px;
}

/* =========================
   EXPLORE ITEM
========================= */

.explore-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;

    transition: flex 1.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Expand active */
.explore-item.active {
    flex: 2;
}

/* Image */
.explore-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.6s ease;
}

/* Optional zoom */
/* .explore-item:hover img {
    transform: scale(1.08);
} */

/* =========================
   DARK OVERLAY
========================= */

.explore-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Show overlay */
.explore-item:hover::after,
.explore-item.active::after {
    opacity: 1;
}

/* =========================
   CAPTION
========================= */

.explore-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    color: #fff;

    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
}

/* Show caption */
.explore-item:hover .explore-caption,
.explore-item.active .explore-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
.explore-caption h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.explore-caption p {
    margin: 4px 0 0;
    font-size: 14px;
    opacity: 0.85;
}

/* =========================
   BUTTON
========================= */

/* Button wrapper */
.learn-more {
    text-align: center;
    margin-top: 20px;
}

/* Button */
.more-btn {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-decoration: none;
    letter-spacing: 1px;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    border-radius: 10px;
    background: transparent;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover fill effect */
.more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2e7d32;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover state */
.more-btn:hover {
    color: #ffffff;
    background-color: #2e7d32;
}

.more-btn:hover::before {
    transform: scaleX(1);
}

/* Mobile */
@media (max-width: 768px) {
    .more-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .explore-boxes {
        gap: 10px;
        height: 320px;
        margin-top: 10px;
    }

    .explore-caption h4 {
        font-size: 16px;
    }

    .explore-caption p {
        font-size: 13px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .explore-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        height: auto;
    }

    .explore-item {
        height: 260px;
        flex: unset;
        transition: none;
    }

    .explore-item.active {
        flex: unset;
    }

    /* Always visible overlay & caption */
    .explore-item::after {
        opacity: 1;
    }

    .explore-caption {
        opacity: 1;
        transform: translateY(0);
    }

    .explore-caption h4 {
        font-size: 16px;
    }

    .explore-caption p {
        font-size: 13px;
    }
}


.spices {
    position: relative;
    padding: 150px 0;
    background-image: url('images/spices-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
}

.spices h1 {
    color: #fff;
}

.spices .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.spices .container {
    position: relative;
    z-index: 2;
}

.spices .title p {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.spices-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* gap: 20px; */
}

.spices-images img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin: 0px auto;
}

.spices-images img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .spices-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .spices .title h4 {
        font-size: 19px;
    }

    .spices-images img {
        height: auto;
        margin: 10px auto;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .spices {
        padding: 40px 0px;
    }

    /* .spices-images {
        grid-template-columns: 1fr;
    } */

    .spices-images img {
        height: auto;
        margin: 10px auto;
    }

    .spices .title h4 {
        font-size: 17px;
    }

}

.clients {
    padding: 100px 0;
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Client card */
.client-box {
    min-width: 415px;
    height: 200PX;
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}


/* Quote icon */
.quote-icon i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

/* Text */
.client-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Client info */
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.client-info span {
    font-size: 12px;
    color: #888;
}

/* Buttons */
.clients-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

.client-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #2e7d32;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.client-btn:hover {
    background: #1a471c;
    transform: scale(1.1);
}


@media (max-width: 991px) {
    .clients {
        padding: 70px 0;
    }

    .client-box {
        min-width: 380px;
        padding: 20px;
    }

    .client-text {
        font-size: 15px;
    }
}


@media (max-width: 575px) {
    .clients {
        padding: 50px 0;
    }

    .clients-track {
        gap: 16px;
    }

    .client-box {
        min-width: 408px;
        padding: 10px;
        height: auto;
    }

    .client-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .client-info img {
        width: 42px;
        height: 42px;
    }

    .client-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* ---------- CONTACT SECTION ---------- */
.contact {
    position: relative;
    padding: 80px 0;
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    color: #fff;
}

.contact h1 {
    color: #ffffff;
}

.title p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

/* Contact details */

.contact-details {
    margin-bottom: 40px;
    text-align: left;
    margin-left: 100px;
    margin-top: 25px;
}

.contact-details p {
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.contact-details i {
    color: #C69849;
    width: 25px;
    height: auto;
    font-size: 25px;
    margin: 0px !important;
}

/* Form */
.contact-form {
    /* padding: 30px; */
    /* border-radius: 18px; */
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #C69849;
    outline: none;
}

/* Submit button */
.submit-btn {
    background: #4D9887;
    color: #fff;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #35675b;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 992px) {
    .contact .row {
        gap: 20px;
    }

    .contact .col-6 {
        width: 100%;
    }

    .contact-form {
        padding: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }


    .title p {
        font-size: 16px !important;
        text-align: justify;
        margin-bottom: 20px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-form {
        padding: 0px;
    }

    .submit-btn {
        margin-top: 0px;
    }

    .contact-details {
        text-align: left;
        margin: 0px auto;
    }
}

footer {
    position: relative;
    padding: 50px 0px 10px 0px;
    background-image: url('images/footer\ bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* color: #fff; */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Logo */
.f-logo img {
    max-width: 100%;
}

/* Footer details */
.footer-details p {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 18px;
}

.footer-details i {
    color: #0E5F4D;
    margin-right: 10px;
    font-size: 25px;
}

/* Navigation links */
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.links a {
    color: #000000;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 17px;
    text-transform: uppercase;
}

.links a:hover {
    color: #0E5F4D;
}

/* Social media icons */
.social-medias {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-medias a {
    text-decoration: none;
    /* REMOVE BLUE LINE */
}


.social-medias i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #08352b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.social-medias i:hover {
    color: #0E5F4D;
    border: 1px solid #0E5F4D;
    background-color: #ffffff;
}

/* Copyright */

.copyright p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    background-color: #ffffff;
}

.copyright a {
    color: #006952;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-weight: 600;
}

.copyright a:hover {
    color: #fab300;
}

/* =======================
   Responsive Breakpoints
======================= */

@media (min-width: 768px) {

    .footer-details {
        max-width: 600px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 15px 20px;
    }

    .footer-details p {
        font-size: 14px;
    }

    .links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .copyright p {
        font-size: 13px;
    }
}


/* GETAWAY SECTION */
.Getaway {
    position: relative;
    padding: 80px 0;
    background: url("images/Getaway-bg.jpg") center/cover no-repeat;
}

.Getaway::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.Getaway .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.Getaway .title h1 {
    color: #fff;
}

/* ROW */
.getaway-row {
    align-items: center;
    margin-top: 50px;
}

/* VIDEO */
.get-video video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* LIST */
.get-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.get-list li i {
    font-size: 22px;
    color: #ffffff;
    /* background-color: #1c4b1e; */

    width: 50px;
    height: 50px;
    min-width: 50px;
    border: #ffffff 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.get-list li h1 {
    font-size: 18px;
    margin: 0 0 0px;
    font-weight: 600;
    color: #fff;
}

.get-list li p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .getaway-row {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .get-video video {
        height: 300px;
    }

    .get-list li h1 {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .Getaway {
        padding: 40px 0;
    }

    .get-video video {
        height: auto;
        border-radius: 14px;
    }

    .get-list li {
        gap: 14px;
    }

    .get-list li i {
        font-size: 24px;
    }
}


/* about us page */

.the-villa {
    padding: 40px 0;
}

.the-villa .title {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.villa-pg {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0 auto !important;
    max-width: 1000px !important;
    text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
    .the-villa {
        padding: 60px 0;
    }


    .villa-pg {
        font-size: 16.5px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .the-villa {
        padding: 45px 0px;
    }

    .villa-pg {
        font-size: 15px;
        line-height: 1.7;
    }
}


.different {
    position: relative;
    padding: 50px 0;
    /* background-image: url('images/different\ bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    /* height: 500px; */
}

.different .row {
    margin-bottom: 20px;
}

.dif-img img {
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    border-radius: 5px;
}


.different p {
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
}

/* Tablet */
@media (max-width: 992px) {
    .different {
        padding: 60px 0;
    }

    .dif-img img {
        height: 360px;
    }



    .different p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .different {
        padding: 45px 15px;
    }

    .different .row {
        margin-bottom: 40px;
    }

    .dif-img {
        padding: 0px;
    }

    .dif-img img {
        height: 260px;
        margin-bottom: 20px;
    }

    .different .title {
        padding: 0;
        text-align: center;
    }

    .different p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ================= VILLA DETAILS ================= */

.villa-details {
    position: relative;
    background: url("images/villa\ bg.jpg") center center / cover no-repeat;
    padding: 80px 20px;
    display: flex;
    align-items: center;
}

/* Overlay */
.villa-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Keep content above overlay */
.villa-details .container {
    position: relative;
    z-index: 2;
}

/* White Content Box */
.villa-box {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    background: #ffffff;
    padding: 50px 30px;
    /* border-radius: 12px; */
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


/* Icons Section */
.villa-icons {
    margin-top: 50px;
}

/* Icon Box */
.villa-icons div {
    text-align: center;
    padding: 20px 10px;
}

/* Icon Image */
.villa-icons img {
    width: clamp(40px, 6vw, 55px);
    margin-bottom: 12px;
}

/* Icon Text */
.villa-icons p {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 500;
    margin: 0;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .villa-box {
        padding: 45px 25px;
    }

    .villa-icons {
        margin-top: 40px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .villa-details {
        padding: 60px 15px;
    }

    .villa-box {
        padding: 35px 20px;
        /* border-radius: 10px; */
    }

    .villa-icons .col-6 {
        width: 50%;
    }

    .villa-icons img {
        width: 40px;
    }
}



/* SECTION */
.accommodation {
    padding: 60px 0;
}

/* ROW */
.accommodation-row {
    margin-top: 40px;
}

/* LIST RESET */
.accommodation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* CARD */
.accommodation-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #f7f9fc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ICON BOX */
.accommodation-list .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accommodation-list .icon i {
    font-size: 20px;
}

/* ICON COLORS */
.icon.green { background: #e8f5e9; color: #2e7d32; }
.icon.light-green { background: #e0f2f1; color: #00695c; }
.icon.olive { background: #f1f8e9; color: #558b2f; }
.icon.sand { background: #fff3e0; color: #ef6c00; }
.icon.sky { background: #e3f2fd; color: #1565c0; }

/* TEXT */
.accommodation-list .text h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.accommodation-list .text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* HOVER */
@media (hover: hover) {
    .accommodation-list li:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    }
}

/* TABLET */
@media (max-width: 991px) {
    .accommodation {
        padding: 40px 0;
    }

    .accommodation-row {
        margin-top: 30px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .accommodation-list li {
        padding: 14px 16px;
        gap: 12px;
    }

    .accommodation-list .icon {
        width: 42px;
        height: 42px;
    }

    .accommodation-list .icon i {
        font-size: 18px;
    }

    .accommodation-list .text h4 {
        font-size: 15px;
    }

    .accommodation-list .text p {
        font-size: 13px;
    }
}



.local {
    padding: 40px 0px;
}

.wynd-pg {
    text-align: justify !important;
}

.sernity {
    padding: 60px 0;
    background: #f8f8f8;
}

.sernity-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sernity-img {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    margin: 10px 0px;
}

.sernity-img::-webkit-scrollbar {
    display: none;
}

.sernity-img img {
    min-width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.sernity-img img:hover {
    transform: scale(1.05);
}

/* Navigation buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.left {
    left: -10px;
}

.nav-btn.right {
    right: -10px;
}

/* Mobile */
@media (max-width: 576px) {
    .sernity-img img {
        min-width: 240px;
        height: 180px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
    }
}


.root.map {
    width: 100%;
    /* padding: 60px 0; */
    background-color: #fff;
    text-align: center;
}

.root.map img {
    width: 100%;
    /* max-width: 1100px; */
    height: auto;
    /* border-radius: 14px; */
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); */
}

/* Tablet */
@media (max-width: 992px) {
    .root.map {
        padding: 45px 20px;
    }

    .root.map img {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .root.map {
        padding: 15px 15px;
    }

    .root.map img {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
}


/* experience page */


.nature {
    padding: 40px 0;
}

.nature-row {
    row-gap: 40px;
}

.nature-box {
    position: relative;
    /* background: url("images/texture-01.jpg") center/cover no-repeat; */
    background-color: #fff;
    padding: 40px;
    color: #000000;
    height: 380px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    text-align: center;
    border-radius: 5px;
}


.nature-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.nature-box p {
    font-size: 17px;
    line-height: 1.6;
}

.nature-img {
    padding: 0px;
}

.nature-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 5px;
}

/* Tablet */
@media (max-width: 992px) {
    .nature {
        padding: 60px 0;
    }

    .nature-box {
        padding: 20px;
        margin: 5px auto 5px auto;
    }

    .nature-img img {
        height: 320px;
        margin: 5px auto 5px auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nature {
        padding: 45px 15px;
    }

    .nature-row {
        row-gap: 5px;
    }

    .nature-box {
        padding: 10px;
        text-align: center;
        margin: 5px auto 5px auto;
    }

    .nature-box h2 {
        font-size: 22px;
    }

    .nature-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .nature-img img {
        height: 240px;
        margin: 5px auto 5px auto;
    }

    /* Force image first on mobile for better UX */
    .nature-row>div:nth-child(even) {
        order: -1;
    }
}


/* SECTION */
.evening {
    padding: 40px 10px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

/* CARD */
.evening-box {
    max-width: 425px;
    margin: auto;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* IMAGE MASK */
.evening-boximg {
    width: auto;
    /* height: 175px; */
    margin-bottom: 10px;
}

.evening-boximg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* Mask for Chrome, Edge, Safari */
    /* -webkit-mask-image: url("images/Vector shape.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%; */

    /* Standard */
    /* mask-image: url("images/Vector shape.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%; */
}

/* TEXT */
.evening-text h2 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.evening-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #000000;
}

.evening-text ul {
    list-style: disc;
    padding-left: 18px;
    text-align: left;
    /* display: inline-block; */
}

.evening-text ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .evening-boximg {
        height: 220px;
    }
}


/* ================= EVENING EXPERIENCE ================= */
.evening-exp {
    padding: 40px 0;
}

/* CAROUSEL */
.evening-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD */
.evening-card {
    min-width: 33.333%;
    padding: 10px;
}

.card-image {
    overflow: hidden;
    /* border-radius: 10px; */
}

.card-image img {
    width: 100%;
    /* height: 260px; */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.evening-card:hover img {
    transform: scale(1.08);
}

.card-content {
    background: #ffffff;
    padding: 10px;
    /* margin-top: -40px; */
    /* border-radius: 10px; */
}

.card-content h2 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.card-content p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    text-align: center;
}

/* BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

.carousel-btn:hover {
    background: #c9a24d;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .evening-card {
        min-width: 50%;
    }

    .card-image img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .evening-exp {
        padding: 50px 0;
    }

    .section-title h1 {
        font-size: 26px;
    }

    .evening-card {
        min-width: 100%;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}


/* ================= AMENITIES ================= */
.amenites {
    padding: 40px 0;
    /* background: #ffffff; */
}


/* BOX */
.amenites-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.4s ease;
    width: 360px;
    margin: 0px auto;
}

.amenites-box:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12); */
}

/* TITLE */
.amenites-box h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.amenites-box h2::after {
    content: "";
    width: 75px;
    height: 2px;
    background: #c9a24d;
    display: block;
    margin: 8px auto 0px auto;
}

/* LIST */
.amenites-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenites-box ul li {
    font-size: 17px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.amenites-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a24d;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 991px) {
    .amenites {
        padding: 60px 0;
    }

    .amenites-box {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .amenites {
        padding: 20px 0;
    }

    .amenites-box {
        padding: 20px;
        text-align: center;
        margin: 10px auto;
        width: 330px !important;
    }

    .amenites-box ul li {
        text-align: left;
        font-size: 14px;
    }
}


.garden {
    padding: 40px 0;
}

/* Image */
.garden-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Content */
.garden-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List */
/* .garden-list {
    list-style: none;
    padding: 0;
} */

.garden-list ul {
    padding: 0px;
}


.garden-list li {
    /* padding: 10px 20px; */
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0px;
}

/* Tablet */
@media (max-width: 991px) {
    .garden {
        padding: 20px 0;
    }

    .garden-img {
        margin-bottom: 30px;
        padding: 0px;
    }

    .garden-content {
        padding: 0px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .garden {
        padding: 20px 15px;
    }

    .garden-content p {
        font-size: 15px;
    }

    .garden-list {
        justify-content: center;
    }
}


/* gallery page */

.gallery {
    padding: 40px 0;
}

/* ===========================
   TABS
=========================== */
.gallery-tabs {
    margin: 35px 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid #2c6e49;
    background: transparent;
    color: #2c6e49;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
    background: #2c6e49;
    color: #ffffff;
}

/* ===========================
   GALLERY GRID
=========================== */
.gallery-grid {
    margin-top: 30px;
}

.gal-img {
    margin-bottom: 24px;
    cursor: pointer;
}

.gal-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gal-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 12px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.lightbox .close {
    top: 20px;
    right: 30px;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}

.lightbox span:hover {
    color: #2c6e49;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .gal-img img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gal-img img {
        height: 200px;
        border-radius: 5px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease;
}

.lightbox .close {
    top: 20px;
    right: 30px;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}

.lightbox span:hover {
    color: #2c6e49;
}

/* Mobile */
@media (max-width: 576px) {

    .lightbox .prev,
    .lightbox .next {
        font-size: 28px;
    }
}



/* ===============================
   WAYANAD SECTION
================================ */
.wayanad {
    padding: 40px 0;
}

/* Card */
.famous-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover */
.famous-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.famous-box img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

/* Text */
.famous-text {
    padding: 16px;
}

.famous-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.famous-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.famous-text span {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Tablet */
@media (max-width: 768px) {
    .famous-box img {
        height: 240px;
    }

    .famous-text h3 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .wayanad {
        padding: 40px 0;
    }

    .famous-box {
        border-radius: 16px;
    }

    .famous-box img {
        height: 220px;
    }

    .famous-text h3 {
        font-size: 18px;
    }

    .famous-text p,
    .famous-text span {
        font-size: 13px;
    }
}


.promise {
    position: relative;
    padding: 125px 0;
    background: url("images/promise.jpg") center/cover no-repeat;

}

.promise .title h1 {
    color: #fff;
}

.promise .title .promise-pg {
    color: #fff;
}


/* Feature List */
.promise-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.promise-list li {
    padding: 10px 22px;
    border-radius: 30px;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

/* .promise-list li:hover {
    background: #111;
    color: #fff;
} */

/* Tablet */
@media (max-width: 991px) {
    /* .promise h1 {
        font-size: 28px;
    } */
}

/* Mobile */
@media (max-width: 576px) {
    .promise {
        padding: 60px 15px;
    }

    /* .promise h1 {
        font-size: 24px;
    } */

    .villa-pg {
        font-size: 15px;
    }

    .promise-list {
        gap: 12px;
    }
}




/* Section */
.reach {
    padding: 40px 0;
}


.reach-pg {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-top: 20px;
}

/* Row */
.reach .row {
    display: flex;
    /* gap: 30px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Box */
.reach-box {
    width: 275px;
    background: #ffffff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reach-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.reach-box i {
    font-size: 40px;
    color: #2f7d32;
    margin-bottom: 18px;
}

/* Text */
.reach-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.reach-box p {
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 5px;
}

.time-block {
    margin: 0px;
    padding: 0px;
}

.time-block:last-child p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .col-4 {
        width: 48%;
    }
}

@media (max-width: 575px) {
    .col-4 {
        width: 100%;
        margin-bottom: 10px;
    }

    .reach {
        padding: 60px 0;
    }

    .reach-box {
        padding: 35px 20px;
        margin: 10px auto;
    }
}

/* Section */
.Message {
    padding: 40px 0;
}

/* Image */
.Message-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Form layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 10px;
}

/* Inputs */
.Message-form input,
.Message-form textarea {
    width: 100%;
    padding: 12px 4px;
    border: none;
    border-bottom: 1.5px solid #ccc;
    background: transparent;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Full width textarea */
.Message-form textarea {
    grid-column: span 2;
    resize: none;
}

/* Focus effect */
.Message-form input:focus,
.Message-form textarea:focus {
    border-bottom-color: #2f7d32;
    box-shadow: 0 2px 0 rgba(47, 125, 50, 0.6);
}

/* Placeholder */
.Message-form input::placeholder,
.Message-form textarea::placeholder {
    color: #000;
}

/* Button */
.submit-btn {
    margin-top: 10px;
    padding: 14px 35px;
    background: #2f7d32;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: #256628;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .col-6 {
        width: 100%;
    }

    .Message-form-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .Message-form textarea {
        grid-column: span 1;
    }
}


.maps {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 0px;
}

/* Image */
.maps img {
    width: 100%;
    height: 100% !;
    object-fit: cover;
    display: block;
}

/* Button */
.maps-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 34px;
    background: rgba(47, 125, 50, 0.9);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover */
.maps-btn:hover {
    background: rgba(37, 102, 40, 0.95);
    transform: translateX(-50%) translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .maps {
        max-height: 300px;
    }

    .maps-btn {
        font-size: 13px;
        padding: 12px 26px;
        bottom: 15px;
    }
}


/* ANIMATION STYLES */
.svg-section {
    position: relative;
    width: 100%;
    height: auto;
    /* ⬅ reduced from 100vh */
    min-height: 520px;
    /* safety for small phones */
    max-height: 900px;
    /* prevents ultra-tall screens */
    overflow: hidden;
}

.svg-section svg {
    width: 100%;
    height: 100%;
    display: block;
}


.scrollElement {
    position: absolute;
    height: 6000px;
    width: 100%;
    top: 0;
    z-index: 4;
}


/* Floating Button Wrapper */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Phone Button */
.phone-btn {
    background: #0b5ed7;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Hover Effects */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Icon Fix */
.float-btn i {
    line-height: 1;
}

/* 📱 Mobile Responsive */
@media (max-width: 576px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}