/* Common Sticky Button Styles */
/* .sticky-btn {
    position: fixed;
    right: 40px;
    font-size: 14px;
    padding: 5px 10px;
    z-index: 9999;
    transform: rotate(-90deg);
    transform-origin: right top;
    background-color: #f05b27 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    border: 1px solid #000 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #f05b27 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.sticky-enquire {
    top: 188px;
}

.sticky-brochure {
    top: 324px;
} */

/* Common Sticky Button Styles */
.sticky-btn {
    position: fixed;
    right: 40px;
    font-size: 14px;
    padding: 5px 10px;
    z-index: 9999;
    transform: rotate(-90deg);
    transform-origin: right top;
    text-transform: uppercase;
    border: 1px solid #000 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Desktop Buttons */
.sticky-enquire {
    top: 188px;
    background-color: #f05b27 !important;
    color: #ffffff !important;
}

.sticky-brochure {
    top: 324px;
    background-color: #f05b27 !important;
    color: #ffffff !important;
}

.sticky-btn:hover {
    background-color: #f05b27 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Mobile Buttons */
.sticky-enquire-mobile {
    top: 188px;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #f05b27 !important;
    border: 1px solid #f05b27 !important;
}

.sticky-brochure-mobile {
    top: 324px;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #f05b27 !important;
    border: 1px solid #f05b27 !important;
}

.sticky-enquire-mobile:hover,
.sticky-brochure-mobile:hover {
    background-color: #f05b27 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Responsive: Hide desktop sticky on mobile, show mobile sticky only on mobile */
@media (max-width: 767.98px) {
    .sticky-btn.d-none.d-md-block {
        display: none !important;
    }

    .sticky-btn.d-block.d-md-none {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .sticky-btn.d-none.d-md-block {
        display: block !important;
    }

    .sticky-btn.d-block.d-md-none {
        display: none !important;
    }
}


/*  */
/* --- Sticky Bottom Form --- */
/* Sticky Form Container */
.sticky-bottom-form {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.4s ease;
    font-family: "Arial", sans-serif;
}

/* Toggle button */
.sticky-toggle {
    background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    /* border-top-left-radius: 8px;
    border-top-right-radius: 8px; */
}

/* Collapse inner form */
.sticky-bottom-form.collapsed .sticky-bottom-form-inner {
    display: none;
}

/* Inner form container */
.sticky-bottom-form-inner {
    padding: 10px 20px;
}

/* Form Row Layout */
.form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Fields */
.form-group {
    flex: 0.3;
}

.sm-form-control {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Submit Button */
.submitBtn {
    background: #f05b27;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submitBtn:hover {
    background-color: #f05b27;
}

/* Error Message */
.error-msg1 {
    color: #f05b27;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Missed Call section in same row */
.missed-call {
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .form-group,
    .submit-wrapper,
    .missed-call {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .missed-call {
        white-space: normal;
        flex-direction: column;
    }

    .submitBtn {
        width: 100%;
    }

    .sticky-toggle {
        font-size: 14px;
        padding: 8px;
    }
}


/*  */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.carousel-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: center;
    padding: 0;
    opacity: 0;
    z-index: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.carousel-item.active {
    opacity: 1 !important;
    z-index: 10 !important;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-caption {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    transition: opacity 0.4s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    opacity: 0;
    z-index: 2;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.carousel-caption h5 {
    font-size: 18px;
    margin: 5px 0 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.carousel-caption p {
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ced4da;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots span.active {
    background-color: #f05b27;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }

    .carousel-item {
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
    }

    .carousel-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 15px;
    }

    .carousel-caption {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .carousel-caption h5 {
        font-size: 14px;
    }

    .carousel-caption p {
        font-size: 12px;
    }
}

/*  */
.ul-check li {
    color: #000 !important;
}

.w-200 {
    width: 200px;
}

.d-sign {
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
}

.ml-4 {
    margin-left: 20px;
}

/*  */
.form-area {
    position: absolute;
    top: 24%;
    right: 100px;
    width: 340px;
    z-index: 99;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.text-light .form-underline,
.dark-scheme .form-underline {
    color: #000000;
    border-bottom-color: rgb(0 0 0 / 37%);
}


@media (max-width: 768px) {
    .form-area {
        display: none;
    }
}

/* Show mobile form only on mobile */
.form-area-mobile {
    display: none;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

@media (max-width: 768px) {
    .form-area-mobile {
        display: block;
    }
}

/*  */
/* .location-icons-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
} */

.location-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: auto;
}

.location-icon {
    flex: 0 0 calc(33.333% - 30px);
    /* 3 in a row with gap */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-icon img {
    width: 100%;
    max-width: 100px;
    height: 80px;
    object-fit: contain;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-icon p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.location-icon:hover {
    transform: scale(1.05);
}

.location-icon:hover img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 0;
}

/* For mobile (max-width: 576px) — 2 per row, no gap */
@media (max-width: 576px) {
    .location-icons-wrapper {
        gap: 0 !important;
    }

    .location-icon {
        flex: 0 0 50%;
        padding: 10px 0;
    }
}

/* Tablets — 2 per row with spacing */
@media (max-width: 992px) and (min-width: 577px) {
    .location-icon {
        flex: 0 0 calc(50% - 30px);
    }
}


/*  */
.masterplan-container {
    position: relative;
    display: inline-block;
    width: 80%;
    max-width: 300px;
}

.masterplan-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    filter: blur(1.5px) grayscale(80%) brightness(0.95);
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 1.5px 6px rgba(0, 0, 0, 0.12);
}

.masterplan-container:hover .masterplan-img {
    filter: blur(0px) grayscale(0%) brightness(0.6);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.download-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 120px;
    padding: 8px 16px;
    text-align: center;
    background: #f05b27;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.masterplan-container:hover .download-btn {
    opacity: 1;
    pointer-events: auto;
}


/*  */
.text-orange {
    color: #f05b27 !important;
}

.smaller #mainmenu a {
    color: #f05b27 !important;
}

.text-white-h {
    color: #ffffff !important;
    font-size: 40px !important;
    line-height: 45px !important;
}

/*  */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    display: inline-block;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/*  */
/* Button Styling */
.btn-enquire-custom {
    display: inline-block;
    background-color: #f05b27;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-enquire-custom:hover {
    background-color: #d34f20;
}

/* Popup Modal */
.popup-custom-modal {
    display: none;
    position: fixed;
    z-index: 10010;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-custom-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.popup-custom-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Title */
.popup-custom-title {
    margin-bottom: 20px;
    color: #f05b27;
}

/* Inputs & Textarea */
#customEnquiryForm input,
#customEnquiryForm textarea {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

#customEnquiryForm input:focus,
#customEnquiryForm textarea:focus {
    border-bottom: 2px solid #f05b27;
}

/* Submit Button */
.popup-custom-submit {
    background-color: #f05b27;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.popup-custom-submit:hover {
    background-color: #d34f20;
}

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

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

/*  */
input::placeholder,
textarea::placeholder {
    color: #000 !important;
    opacity: 1;
    /* Ensure full visibility in all browsers */
}

/* For cross-browser compatibility */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #000 !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #000 !important;
}

/*  */

.call-float {
    position: fixed;
    bottom: 80px;
    /* sits just above WhatsApp */
    left: 20px;
    z-index: 10000;
    display: inline-block;
    background-color: #f05b27;
    /* brand orange */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
}

.call-float i {
    font-size: 28px;
    color: #fff;
}

.call-float {
    display: none;
}

/* Only show on mobile */
@media (max-width: 768px) {
    .call-float {
        display: block;
    }
}

/*  */
#preloader {
    position: fixed;
    z-index: 9999;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    /* fade-out transition */
}

#preloader img {
    width: 100px;
    height: auto;
    animation: fadeInZoom 1.5s ease-in-out infinite alternate;
}

@keyframes fadeInZoom {
    from {
        opacity: 0.4;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/*  */

.bg-align {
    /* background-repeat: no-repeat; */
    background-position: 0% 80%;
}

/*  */
a.btn-custom-slide {
    background: var(--primary-color);
    color: var(--btn-color);
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    letter-spacing: var(--btn-letter-spacing);
    padding: var(--btn-padding);
    text-decoration: var(--btn-text-decoration);
    text-transform: var(--btn-text-transform);
    border-radius: var(--btn-rounded);
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    outline: 0;
    overflow: hidden;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

a.btn-custom-slide::before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.btn-custom-slide:hover {
    background-color: #000;
    color: #fff;
}

a.btn-custom-slide:hover::before {
    opacity: 1;
    transform: translateY(0);
}


/*  */

.m-hide {
    display: block !important;
}

@media (max-width: 768px) {
    .m-hide {
        display: none !important;
    }

    .m-show {
        display: block !important;
    }

    .mbl-pd-0 {
        padding: 0 !important;
    }

    .swiper-inner {
        top: 58px;

    }

    .bg-align {
        background-position: 20% 80% !important;
    }
}

/*  */
.ft-30 {
    font-size: 31px !important;
}

/*  */

.d-sign {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}

.w-200 {
    width: 200px;
}

@media (max-width: 768px) {
    .m-row-reverse {
        flex-direction: column-reverse !important;
        display: flex !important;
    }

    .d-sign {
        width: 100%;
        margin-bottom: 30px;
        padding: 15px;
    }

    .d-sign img {
        margin-bottom: 15px;
    }

    .highlight-slide img {
        border-radius: 10px;
    }
}

.w-120px {
    width: 120px;
}

.pt-25 {
    padding-top: 25px;
}

/*  */

.arcadia-testimonial-item .arcadia-testimonial-img {
    width: unset !important;
}

.arcadia-testimonials-section {
    padding: 10px 0 40px 0;
    background: #181818;
}

.arcadia-testimonials-title {
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.arcadia-testimonials-owl .arcadia-testimonial-item {
    background: #d1d1d1;
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    margin: 10px 0;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arcadia-testimonials-owl .arcadia-testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 18px;
    /* border: 3px solid #f05b27; */
}

.arcadia-testimonials-owl .arcadia-testimonial-text {
    color: #000;
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-style: italic;
    flex: 1;
}

.arcadia-testimonials-owl .arcadia-testimonial-name {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.arcadia-testimonials-owl .owl-dots .owl-dot span {
    background: #000 !important;
    opacity: 0.5;
}

.arcadia-testimonials-owl .owl-dots .owl-dot.active span {
    background: #f05b27 !important;
    opacity: 1;
}

@media (max-width: 991px) {
    .arcadia-testimonials-section {
        padding: 20px 0 45px 0;
    }

    .arcadia-testimonials-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .arcadia-testimonials-owl .arcadia-testimonial-item {
        padding: 24px 10px 18px 10px;
        min-height: 280px;
    }

    .arcadia-testimonials-owl .arcadia-testimonial-img {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }
}

/*  */

.w-auto {
    width: auto !important;
}

.bg-orange {
    background-color: #d34f20 !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.bg-black {
    background-color: #181818 !important;
}

.mt-55 {
    margin-top: 70px;
}

.pt-80-d-m {
    padding-top: 80px;
}

/*  */
.bg-or {
    background-color: #e9f3fc;
    margin-right: 15%;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    padding: 10px 10px 10px 90px;
}

.bg-bl {
    background-color: #f9fdfc;
    margin-left: 15%;
    padding: 10px 90px 10px 10px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

@media (max-width: 991.98px) {

    .bg-or,
    .bg-bl {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 20px !important;
        padding: 16px 16px 16px 16px !important;
    }

    .responsive-bg {
        flex-direction: column !important;
    }

    .pt-mb-20 {
        margin-top: 20px !important;
    }

    .pt-80 {
        padding-top: 44px;
    }
}

@media (max-width: 767.98px) {

    .bg-or,
    .bg-bl {
        border-radius: 12px !important;
        padding: 10px 8px !important;
    }

    .d-sign img {
        width: 120px !important;
    }

    .lead {
        font-size: 1rem;
    }

    .mbl-view-colm {
        flex-direction: column;
    }

    .mbl-sz-378 {
        width: 370px;
    }

    h2 {
        font-size: 30px;
    }

    .pt-80-d-m {
        padding-top: 30px;
    }

    .mbl-sz-360 {
        width: 360px;
    }

}

@media (max-width: 575.98px) {

    .bg-or,
    .bg-bl {
        border-radius: 8px !important;
        padding: 8px 4px !important;
    }

    .d-sign img {
        width: 90px !important;
    }

    .lead {
        font-size: 0.95rem;
    }
}

.h-45 {
    height: 45px;
}

.h-62 {
    height: 62px;
}

.p-40 {
    padding: 0 40px;
}

a.bgh:hover,
.bgh:hover,
a.bgh.btn-line:hover {
    color: #f05b27 !important;
    background: #000000e0 !important;
}

.p-top {
    margin-top: 5px;
}

/* carousel-custom */
.carousel-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.carousel-items {
    position: relative;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 300px;
}

.carousel-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    border-radius: 50%;
}

.carousel-nav .prev {
    left: 10px;
}

.carousel-nav .next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .active {
    background: #333;
}

.pt-135-pb-30 {
    padding: 135px 0 30px 0;
}



.img-550 {
    width: 550px;
}

.bb-1px {
    border-bottom: 1px solid rgb(0 0 0 / 25%);
}

.bb-1px.smaller {
    border-bottom: 1px solid rgb(0 0 0 / 25%);
}

.f-24 {
    font-size: 24px !important;
}


@media (min-width: 1193px) and (max-width:1278px) {
    .form-area {
        position: absolute;
        top: 22%;
        right: 47px;
        width: 320px;

    }
}

@media (min-width: 1158px) and (max-width:1192px) {
    .form-area {
        position: absolute;
        top: 17%;
        right: 46px;
        width: 280px;

    }
}



/* Show mobile form and mobile images only between 786px and 1158px */
@media (min-width: 786px) and (max-width: 1158px) {
    .form-area {
        display: none !important;
    }

    .form-area-mobile {
        display: block !important;
    }

    /* .swiper-inner[data-bgimage*="HM1.jpg"],
    .swiper-inner[data-bgimage*="HM2.jpg"] {
        display: block !important;
    } */



    .form-area-mobile {
        display: block !important;
        width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*  */


#popupImageWrapper .popup-custom-content {
    padding: 3px !important;
}

#popupImageWrapper .popup-custom-close {
    position: absolute;
    top: -21px;
    right: -25px;
    background-color: #F05F2C;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: none;
}

.img-text-pop {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 8px;
    z-index: 10;
    width: 80%;
    text-align: center;
}

/*  */