/* ==========================================================================
   Typography — two families only: Gilroy (headings) + Optima (body copy).
   Both are self-hosted from assets/fonts/ so there is no third-party
   font request. Icons come from Font Awesome only.
   ========================================================================== */

/* --- Gilroy: headings/display --- */
@font-face {
    font-family: "Gilroy";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: local("Gilroy Light"), url("../fonts/Gilroy-Light.woff") format("woff");
}

@font-face {
    font-family: "Gilroy";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: local("Gilroy"), url("../fonts/Gilroy-Regular.woff") format("woff");
}

@font-face {
    font-family: "Gilroy";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: local("Gilroy Medium"), url("../fonts/Gilroy-Medium.woff") format("woff");
}

@font-face {
    font-family: "Gilroy";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: local("Gilroy Bold"), url("../fonts/Gilroy-Bold.woff") format("woff");
}

@font-face {
    font-family: "Gilroy";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: local("Gilroy Heavy"), url("../fonts/Gilroy-Heavy.woff") format("woff");
}

/* --- Optima: body copy --- */
@font-face {
    font-family: "Optima";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: local("Optima"), url("../fonts/Optima-Regular.woff") format("woff");
}

@font-face {
    font-family: "Optima";
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    src: local("Optima Italic"), url("../fonts/Optima-Italic.woff") format("woff");
}

@font-face {
    font-family: "Optima";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: local("Optima Medium"), url("../fonts/Optima-Medium.woff") format("woff");
}

@font-face {
    font-family: "Optima";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: local("Optima Bold"), url("../fonts/Optima-Bold.woff") format("woff");
}

:root {
    /* Single source of truth for typography across the LP */
    --font-body: "Optima", "Palatino Linotype", Palatino, Georgia, serif;
    --font-display: "Gilroy", "Segoe UI", Helvetica, Arial, sans-serif;

    /* Keep Bootstrap components (dropdowns, tooltips, toasts) on the same stack */
    --bs-body-font-family: var(--font-body);
    --bs-font-sans-serif: var(--font-body);
}

/* Every heading uses Gilroy, whatever the section-level rules say */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-display);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Form controls and buttons do not inherit the body font by default */
body,
input,
select,
textarea,
button,
.btn,
.form-control,
.accordion-button,
.navbar,
.modal {
    font-family: var(--font-body);
}

img,
video {
    width: 100%;
    height: auto;
    object-fit: cover;
}


body::-webkit-scrollbar {
    width: 0.5em;
    background-color: #206B51;
    border-left: none;
}

body::-webkit-scrollbar-thumb {
    background-color: #CD872E;
    outline: 1px solid #206B51;
    border-radius: 15px;
}

body {
    background-color: #fff;
    color: #000;
    font-weight: 400;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
}

/* Preloader */

/* Preloader end */

.fix_head {
    position: fixed;
    top: 0;
    left: 0;
    padding: 25px 0 15px;
    z-index: 999;
    width: 100%;
}

/* Brand sits in the bar's vertical centre - strip Bootstrap's inline padding
   and margin so the link box is exactly the logo, not logo + line-box slack */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.navbar-brand img {
    width: clamp(120px, 12vw, 190px);
}

.navbar-nav .nav-item a {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff !important;
}

.navbar-nav .nav-item {
    text-align: center;
}

/* ---- Header alignment: keep the menu on one line at every resolution ---- */
@media (min-width: 992px) {

    /* Bootstrap's navbar container wraps by default - stop it, and widen it
       so the 9 menu items are not crammed into the 1140px default */
    .fix_head>.container {
        flex-wrap: nowrap;
        align-items: center;
        gap: clamp(12px, 1.6vw, 40px);
        max-width: 96%;
        width: 96%;
        padding-left: clamp(10px, 1.5vw, 30px);
        padding-right: clamp(10px, 1.5vw, 30px);
    }

    .fix_head>.container>.col-xl-2,
    .fix_head>.container>.col-md-2 {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
    }

    .fix_head .navbar-collapse {
        flex: 1 1 auto;
        min-width: 0;
        /* guaranteed clearance so the centred menu can never touch a logo */
        padding: 0 clamp(8px, 1vw, 24px);
    }

    .fix_head .navbar-nav {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .fix_head .navbar-nav .nav-item {
        flex: 0 0 auto;
    }

    /* Scale type and padding with the viewport so nothing ever drops a line
       and the row never grows wider than the middle column */
    .fix_head .navbar-nav .nav-item a {
        font-size: clamp(12px, 1.05vw, 16px);
        padding: 0.5rem clamp(6px, 0.75vw, 16px);
        white-space: nowrap;
        line-height: 1.2;
    }

    .fix_head .logo-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    /* Size both logos by HEIGHT, not width - their aspect ratios differ
       (left ~4:1, right ~6.7:1), so equal widths made them look mismatched
       and the default/sticky swap shifted the bar's height */
    .fix_head .navbar-brand img {
        height: clamp(30px, 2.6vw, 44px);
        width: auto;
    }

    .fix_head .logo-container img {
        height: clamp(18px, 1.7vw, 28px);
        width: auto;
    }
}

/* Tightest desktop range - shrink logos/links so the menu clears both logos */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .fix_head>.container {
        gap: 8px;
    }

    .fix_head .navbar-nav .nav-item a {
        font-size: 11.5px;
        padding: 0.5rem 5px;
    }

    .fix_head .navbar-brand img,
    .fix_head .logo-container img {
        height: auto;
        width: 105px;
    }
}

.sticky .navbar {
    background-color: #fff;
    box-shadow: 2px 2px 5px #414141;
    transition: 0.3s ease-in-out;
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #000 !important;
}

/* header logo */

/* Default logo visible, sticky logo hidden */
.default-logo {
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.sticky-logo {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

/* When the header is sticky */
header.sticky .default-logo {
    display: none;
}

header.sticky .sticky-logo {
    display: block;
}

/* header logo */

/*****************  *******************************/
.section__banner {
    width: 100%;
    position: relative;
}

.section__banner .carousel-control-prev,
.section__banner .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: background 0.3s ease;
}

.section__banner .carousel-control-prev:hover,
.section__banner .carousel-control-next:hover {
    background: #CD872E;
    border-color: #CD872E;
}

.section__banner .carousel-control-prev-icon,
.section__banner .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.section__banner .carousel-indicators {
    margin-bottom: 15px;
}

.section__banner .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 1;
}

.section__banner .carousel-indicators .active {
    background-color: #CD872E;
    border-color: #CD872E;
}

@media (max-width: 767px) {

    .section__banner .carousel-control-prev,
    .section__banner .carousel-control-next {
        width: 36px;
        height: 36px;
        margin: 0 8px;
    }

    .section__banner .carousel-control-prev-icon,
    .section__banner .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .section__banner .carousel-indicators {
        margin-bottom: 8px;
    }

    .section__banner .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}

.over__section {
    width: 100%;
    background: url(../images/bg.webp) center no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

.over__div,
.conf_div,
.flr_div,
.vir__div {
    margin-bottom: 18px;
}

.over__div h2,
.conf_div h2,
.flr_div h2,
.abt_div h2,
.cont__box h2,
.vir__div h2 {
    font-family: var(--font-display);
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.over__div h2 {
    color: #CD872E;
}

.over__div p {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 32px;
    letter-spacing: 0.32px;
    padding-top: 15px;
}

.over_dwnld {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 2% 0;
    cursor: pointer;
}

.over_dwnld img {
    width: 4%;
}

.over_dwnld h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: #206B51;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Desktop overview: copy on the left, lead form on the right */
.over__div--left h2,
.over__div--left p {
    text-align: left;
}

.over_dwnld--left {
    justify-content: flex-start;
    padding-top: 3%;
}

.over_dwnld--left img {
    width: 8%;
}

.over_form_box {
    background: #206B51;
    border-radius: 10px;
    padding: 35px 30px;
}

.over_form_title {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.over_form_sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.over_form_box .sub_btn {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: #206B51;
    background-color: #fff !important;
    border-radius: 15px;
    border: 1px solid #fff;
    width: fit-content;
    padding: 10px 20px;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.over_form_box .sub_btn:hover,
.over_form_box .sub_btn:focus {
    color: #fff;
    background-color: transparent !important;
}

/*************** Project Highlights ***************/

.high__sec {
    width: 100%;
    padding: 50px 0 80px;
    position: relative;
}

.high__sec .sec__high {
    padding-top: 0;
}

.sec__high {
    padding-top: 50px;
}

.high_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-top: 15%
}

.high_box img {
    width: 80px;
}

.high_box p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #000;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    margin: 0;
}

/**************************** Configuration *******************************/

.config__sec {
    width: 100%;
    background: url(../images/Config.webp) center no-repeat;
    background-size: cover;
    padding: 50px 0 100px;
    position: relative;
}

.conf_div h2 {
    color: #fff;
}

.config_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #fff;
    position: absolute;
    width: 95%;
    bottom: -9%;
    left: 2%;
}

.conf_area h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: #CD872E;
    line-height: 32.4px;
}

.conf_area p {
    font-weight: 500;
    font-size: 20px;
    color: #282B32;
    margin: 0;
}

.know_btn img {
    width: 27%;
}

.know_btn p {
    color: #206B51;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/**************************** Vitual **********************************/

.virtual__Sec {
    width: 100%;
    background: url(../images/virtual.webp) center no-repeat;
    background-size: cover;
    background-color: #6c757d;
    background-blend-mode: multiply;
    padding: 70px 0;
}

.vir__div h2 {
    color: #fff;
}

.virtual_btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1.5px;
    background-color: #206B51;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
}

/**************************** Amenities **********************************/

.ameni__sec {
    width: 100%;
    background: url(../images/ameni-bg.webp) center no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

.ameni_left {
    position: absolute;
    top: 30%;
    left: -3%;
    width: 11%;
}

.ameni_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 175px;
}

.ameni_box img {
    width: 20% !important;
    margin-bottom: 20px;
}

.ameni_box p {
    font-size: 14px;
    color: #000;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.ameni__sec .owl-theme .owl-nav button {
    position: absolute;
    top: 45%;
}

.ameni__sec .owl-theme .owl-nav button.owl-prev {
    left: -8%;
}

.ameni__sec .owl-theme .owl-nav button.owl-next {
    right: -8%;
}

.ameni__sec .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.ameni__sec .owl-theme .owl-nav button {
    margin: 0;
    padding: 0;
}

.ameni__sec .owl-theme .owl-nav button img {
    width: 70%;
}

/**************************** Gallery **********************************/

.gal__sec {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: url(../images/Config.webp) center no-repeat;
    background-size: cover;
}

/* tabs ccs */

.nav-tabs {
    border-bottom: transparent;
}

.nav-tabs .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: #FFF;
    line-height: 22.5px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom-color: #fff;
}

/* tabs css end */

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    width: 100%;
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* ---- Gallery arrows: same button as the Amenities slider ---- */
.gal__sec .swiper-button-next,
.gal__sec .swiper-button-prev {
    width: 48px;
    height: 48px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    /* solid white disc so the gold arrow stays visible over photography */
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 78%;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gal__sec .swiper-button-prev {
    left: 18px;
    background-image: url(../images/left-g.webp);
}

.gal__sec .swiper-button-next {
    right: 18px;
    background-image: url(../images/right-g.webp);
}

.gal__sec .swiper-button-next:hover,
.gal__sec .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.08);
}

/* Swiper's default chevron glyph - replaced by the arrow image above */
.gal__sec .swiper-button-next::after,
.gal__sec .swiper-button-prev::after {
    content: none;
}

.gal__sec .swiper-button-disabled {
    opacity: 0.7;
}

/* Owl arrows in the Interior / Amenities tabs - same button again */
.gal__sec .main-slider .owl-nav .prev,
.gal__sec .main-slider .owl-nav .next {
    height: 48px;
    width: 48px;
    top: 50%;
    transform: translateY(-50%);
    /* solid white disc so the gold arrow stays visible over photography */
    background: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.gal__sec .main-slider .owl-nav .prev img,
.gal__sec .main-slider .owl-nav .next img {
    width: 78%;
    height: auto;
}

.gal__sec .main-slider .owl-nav .prev {
    left: 18px;
}

.gal__sec .main-slider .owl-nav .next {
    right: 18px;
}

.gal__sec .main-slider .owl-nav .prev:hover,
.gal__sec .main-slider .owl-nav .next:hover {
    transform: translateY(-50%) scale(1.08);
}

.gal__sec .main-slider .owl-nav button,
.gal__sec .main-slider .owl-nav button:hover,
.gal__sec .main-slider .owl-nav button:focus {
    background: transparent !important;
    outline: none;
}


/* Swiper end */

/* Owl */

.main-slider {
    width: 100%;
    /* .owl-nav is absolutely positioned - without this it anchors to the section */
    position: relative;
}

.main-slider .owl-item {
    padding: 0;
    position: relative;
    opacity: 0.5;
}

.main-slider .owl-item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: auto;
}

.main-slider .center {
    opacity: 1;
    transform: scale(1.005);
    transition: 0.5s ease-in-out;
    z-index: 999;
}

.main-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
}

.main-slider .owl-nav .prev {
    position: absolute;
    height: 70%;
    width: 8%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.main-slider .owl-nav .next {
    position: absolute;
    height: 70%;
    width: 8%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.main-slider .owl-thumbs {
    text-align: center;
    display: table;
    width: 100%;
}

.main-slider .owl-thumb-item {
    width: 20%;
    height: 150px;
    border: none;
    background: none;
    padding: 0;
    opacity: 0.7;
    overflow: hidden;
}

.main-slider .owl-thumb-item img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.main-slider .owl-thumb-item.active {
    opacity: 1;
}

.main-slider .owl-thumb-item.active img {
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    display: block;
    background-color: black;
}

/* Owl end */

/*********************** Floor *********************************/

.floor__sec {
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.flr_div h2 {
    color: #CD872E;
}

.floor__sec .nav-tabs .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: #CD872E;
    line-height: 22.5px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-right: 15px;
}

.floor__sec .nav-tabs .nav-item.show .nav-link,
.floor__sec .nav-tabs .nav-link.active {
    background-color: transparent;
    color: #CD872E;
    border: none;
    border-bottom: 1px solid #CD872E;
}

.floor__sec .nav-tabs .nav-link:focus,
.floor__sec .nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom-color: #CD872E;
}

.flr_img img {
    filter: blur(2px);
    cursor: pointer;
}

.floor__sec .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.floor__sec .owl-theme .owl-nav button img {
    width: 70%;
}

/*********************** Connectivity *********************************/
.loc__sec {
    width: 100%;
    background: url(../images/ameni-bg.webp) center no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

.accordion-item {
    border: none;
    background-color: transparent;
}

.accordion-button {
    background-color: transparent !important;
    border-bottom: 1px solid #206B51;
}

.accordion-button p {
    font-family: var(--font-display);
    color: #206B51;
    font-size: 24px;
    text-transform: capitalize;
}

.accordion-body p {
    color: #282B32;
    font-size: 16px;
    text-transform: capitalize;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0 !important;
}

.accordion-button:focus {
    border-bottom: 1px solid #206B51 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/down.webp);
    transform: none;
}

.accordion-button::after {
    background-image: url(../images/up.webp);
}

/************************* About ***************************/

.abt__section {
    width: 100%;
    padding: 0 0 60px;
    position: relative;
}

.abt__sec {
    margin-top: 8%;
}

.abt_div h2 {
    color: #CD872E;
}

.abt_div p {
    color: #282B32;
    font-size: 16px;
    line-height: 32px;
}

.abt_know {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 2% 0;
    cursor: pointer;
}

.abt_know img {
    width: 9%;
}

.abt_know p {
    font-weight: 500;
    font-size: 16px;
    color: #206B51;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/************************* contact ***************************/

.cont__sec {
    width: 100%;
    background: url(../images/Config.webp) center no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.cont__box h2 {
    color: #FFF;
    margin-bottom: 8px;
}

.cont__box .cont__subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.contbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 15px;
    padding: 10px 24px;
    transition: background-color 0.3s ease;
}

.contbtn:hover,
.contbtn:focus {
    background-color: transparent;
}

.contbtn img {
    width: 22px;
}

.contbtn span {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: #206B51;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contbtn:hover span,
.contbtn:focus span {
    color: #fff;
}

/************************* Footer ***************************/

.footer__sec {
    width: 100%;
    background: url(../images/ameni-bg.webp) center no-repeat;
    background-size: cover;
    /* extra bottom padding clears the floating CTA buttons */
    padding: 10px 0 110px;
    position: relative;
}

.footer_left {
    position: absolute;
    bottom: 0;
    left: -4%;
    width: 14%;
}

.foo_logo img {
    width: 25%;
}

.foo_desc p {
    color: #282B32;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}

.rear {
    font-weight: bold;
}

.cpy_rght p {
    font-weight: 500;
    font-size: 18px;
    color: #282B32;
    text-align: center;
}

/*********************Modal *******************************/

.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    background: #206B51;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 25px;
    color: #fff;
}

.modal-body p {
    font-size: 16px;
    color: #fff;
}

.modal-body .sub_btn {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: #206B51;
    background-color: #fff !important;
    border-radius: 15px;
    border: 1px solid #fff;
    width: fit-content;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-body .sub_btn:hover,
.modal-body .sub_btn:focus {
    color: #fff;
    background-color: transparent !important;
}

.modal-body .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(1);
}

.modal-body .input-group-addon i {
    margin-top: 5px;
}

.form-group {
    min-height: 65px;
}

.modal-tagline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px !important;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.input-group-addon p {
    color: #FFF;
    font-size: 15px;
}

.form-control {
    border: 1px solid #fff !important;
    background-color: transparent !important;
    color: #fff !important;
    border-radius: 0;
}

.modal-body .form-control::placeholder,
.over_form_box .form-control::placeholder,
.cont__box .form-control::placeholder {
    color: #fff !important;
    opacity: 1;
}

.input-group>.form-control:focus {
    box-shadow: none !important;
    background: transparent !important;
}

/* Scoped to label - jQuery Validate also puts .error on the input itself */
label.error {
    color: red;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    display: block;
    text-align: left;
    margin-top: 4px;
}

/* Plain red is unreadable on the green modal / contact panel */
.modal-body label.error,
.over_form_box label.error,
.cont__box label.error {
    color: #FFD5D5;
}

.form-control.error {
    border-color: #FFD5D5 !important;
}

/**************Thank You  **************************/

.you__Sec {
    width: 100%;
    position: relative;
    background: url(../images/Config.webp) center no-repeat;
    background-size: cover
}

.thank_wrap {
    background-color: #3e3e3e17;
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 10% 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border: 1px solid #CD872E;
}

.check_sign {
    background: #CD872E;
    padding: 20px;
    height: 100px;
    width: 100px;
    border: 3px solid #CD872E;
    border-radius: 50%;
    margin: 0 auto;
}

.check_sign i {
    font-size: 55px;
    color: #fff;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 25px;
    color: #fff;
}

.section-title h2 span {
    color: #CD872E;
}

.oops-greet,
.oops-subtitle {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
}

.go_txt {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    background-color: transparent !important;
    border-radius: 15px;
    border: 1px solid #CD872E;
    width: fit-content;
    padding: 10px 20px;
    margin: 15px auto 0;
}

/*******  ***********/

.btn_dwnld {
    position: fixed;
    bottom: 5px;
    left: 15px;
    width: fit-content;
    padding: 10px 20px;
    background-color: #125742;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    border: none;
    z-index: 1;
}

.btn_enq {
    position: fixed;
    bottom: 5px;
    right: 15px;
    width: fit-content;
    padding: 10px 20px;
    background-color: #3e3e3e;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    border: none;
    z-index: 1;
}

.whats_div {
    position: fixed;
    right: 0;
    top: 50%;
    background-color: #B88C43;
    width: fit-content;
    padding: 10px;
    text-align: center;
    z-index: 1;
}

.whats_div img {
    width: 85%;
    position: relative;
    top: -2px;
}

.phone_div {
    position: fixed;
    right: 0;
    top: 57%;
    background-color: #B88C43;
    width: fit-content;
    padding: 10px;
    text-align: center;
    z-index: 1;
}

.phone_div img {
    width: 85%;
    position: relative;
}

/*************** Fixed bottom CTAs ***************/

/* On desktop the wrapper is a no-op: the two buttons keep their own
   fixed positioning in opposite bottom corners. On mobile (responsive.css)
   it becomes a flex row so they sit side by side instead. */
.cta_bar {
    display: contents;
}

.cta_float {
    position: fixed;
    bottom: 22px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 26px;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta_float i {
    font-size: 15px;
}

.cta_float:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.cta_brochure {
    left: 22px;
    background-color: #206B51;
}

.cta_brochure:hover {
    background-color: #17513d;
}

/* "Download Brochure" on desktop, "Brochure" once the bar goes side-by-side */
.cta_label_short {
    display: none;
}

.cta_call {
    right: 22px;
    background-color: #CD872E;
}

.cta_call:hover {
    background-color: #b0731f;
}

#pageloader {
    background: rgba(255, 255, 255, 0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999;
    top: 0;
}

#pageloader img {
    left: 50%;
    width: 100px;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}

/*  */