@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;family=Lexend+Deca:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Kumbh+Sans:wght,YOPQ@100..900,300&amp;display=swap");

@font-face {
    font-family: "Grenda";
    src: url("../fonts/Grenda.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "hagin";
    src: url("../fonts/HaginCapsMedium.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

/* FIX: Center logo + text perfectly */
.preloader .animation-preloader {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* FIX: Logo alignment */
.preloader .animation-preloader img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
}

/* OPTIONAL: spacing for text */
.preloader .txt-loading {
    margin-top: 10px;
}

/*  */
body.loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center container */
.preloader .animation-preloader {
    width: 100%;
    text-align: center;
}

/* 🎯 VIDEO STYLE (NOT FULL WIDTH) */
.preloader video {
    width: 85%;
    /* 👈 control size here (try 80–90%) */
    max-width: 950px;
    /* 👈 prevents too large on big screens */
    height: auto;
    /* border-radius: 10px; */
    /* optional smooth look */
}

/* DEVICE SWITCH */
.vd {
    display: block;
}

.vm {
    display: none;
}

@media (max-width: 767px) {

    .preloader video {
        width: 90%;
        /* slightly bigger on mobile */
        max-width: 100%;
    }

    .vd {
        display: none;
    }

    .vm {
        display: block;
    }
}

/*  */
.header__logo {
    width: 170px;
}

.hero-sec-padding {
    padding: 130px 0 0 0;
}

.ptb-110-60 {
    padding: 45px 0 60px 0;
}

.ptb-60 {
    padding: 60px 0;
}

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

.ft-size {
    font-size: 20px !important;
}

.ft-size-38 {
    font-size: 38px !important;
}

.ft-style {
    font-size: 20px;
    font-weight: 900;
}

.ptb-10-60 {
    padding: 10px 0 60px;
}

.ft-22 {
    font-size: 22px !important;
}

.ft-26 {
    font-size: 20px !important;
}

.ptb-60-30 {
    padding: 40px 0 30px;
}

.ixl-about-two-content p {
    padding: 0 !important;
}

/*  */
/* .ixl-hero-two {
    position: relative;
    overflow: hidden;
}

.ixl-hero-two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/bnr/bannner-1.jpg') center/cover no-repeat;
    z-index: -1;
    animation: heroZoom 18s ease-in-out infinite alternate;
    transform: scale(1);
}

@media (max-width: 768px) {
    .ixl-hero-two::before {
        background: url('../img/bnr/bannner-1.jpg') center/cover no-repeat;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translateX(0px);
    }

    50% {
        transform: scale(1.08) translateX(-10px);
    }

    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

.ixl-hero-two-content {
    position: relative;
    z-index: 2;
} */

/*  */
/* SECTION BACKGROUND (Pattern only) */
.gallery-section {
    position: relative;
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #ffffff, rgb(255 255 255));
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

/* CARD STYLE (glass effect for contrast) */
.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* BORDER GLOW */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* TEXT VISIBILITY */
.gallery-section h1 {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* TITLE OVERLAY */
.gallery-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    letter-spacing: 0.5px;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover .gallery-title {
    padding-bottom: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* OPTIONAL: ADD ICON STYLE */
.gallery-title::before {
    content: "● ";
    color: #EC1C24;
    font-size: 14px;
}

/* SMOOTH TEXT FADE */
.gallery-title {
    opacity: 0.9;
}

.gallery-item:hover .gallery-title {
    opacity: 1;
}


/*  */

.ff-t-lo {
    width: 190px;
}

.cus-social-icons {
    display: flex;
    gap: 15px;
}

.cus-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #263070;
    transition: 0.3s;
}

.cus-icon a i {
    font-size: 18px !important;
}

.cus-icon:hover {
    background: #ec1c24;
    color: #fff;
}

.new-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 400px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #263070;
}

.form-group {
    margin-bottom: 15px;
}

.new-form input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
}

.new-form input:focus {
    border-color: #263070;
    box-shadow: 0 0 0 2px rgba(62, 87, 149, 0.1);
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* BHK */
.bhk-select {
    display: flex;
    gap: 10px;
}

.bhk-pill input {
    display: none;
}

.bhk-pill span {
    display: block;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
}

.bhk-pill:nth-child(1) span {
    border-color: #ed9b2e;
}

.bhk-pill:nth-child(2) span {
    border-color: #5A9638;
}

.bhk-pill input:checked+span {
    background: #263070;
    color: #fff;
    border-color: #263070;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

#captcha-question {
    font-weight: 700;
    font-size: 18px;
    color: #263070;
    letter-spacing: 3px;
    background: #f4f6fb;
    padding: 10px 15px;
    border-radius: 8px;
}

#captcha-answer {
    max-width: 120px;
}

/* Button */
.submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #042f9c, #263070);
}

/* Mobile */
/* @media (max-width: 576px) {
    .bhk-select {
        flex-direction: column;
    }
} */

.ixl-hero-two-wrapper h1 {
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(62, 87, 149, 0.3);
}

/*  */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ec1c24;
}

/* Card Design */
/* SECTION */
/* WRAPPER */
.amenities-wrap {
    width: 100%;
    background: #f4f6fb;
    padding: 60px 20px;
}

.amenities-container {
    max-width: 1200px;
    margin: auto;
}

.amenities-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #263070;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.amenity-item {
    height: 170px;
    background: #f4f6fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* Remove right border on 5th column */
.amenity-item:nth-child(5n) {
    border-right: none;
}

/* Remove bottom border on last row */
.amenity-item:nth-last-child(-n+5) {
    border-bottom: none;
}

.amenity-shape {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 140px;
    opacity: 0.15;
    z-index: 1;
}

.amenity-icon {
    width: 85px;
    height: 85px;
    background: #f4f6fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2;
}

.amenity-icon i {
    color: #ec1c24;
    font-size: 40px;
}

.amenity-text {
    font-size: 18px;
    font-weight: 500;
    color: #263070;
    z-index: 2;
}

/* Highlight Card */
.highlight {
    background: #263070;
}

.highlight .amenity-text {
    color: #fff;
}

.highlight .amenity-icon {
    background: #ec1c24;
}

.highlight .amenity-icon i {
    color: #263070;
}

/* Tablet - 3 columns */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenity-item:nth-child(5n),
    .amenity-item:nth-last-child(-n+5) {
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .amenity-item:nth-child(3n) {
        border-right: none;
    }

    .amenity-item:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-item {
        height: 150px;
    }

    .amenity-item:nth-child(5n),
    .amenity-item:nth-child(3n),
    .amenity-item:nth-last-child(-n+5),
    .amenity-item:nth-last-child(-n+3) {
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .amenity-item:nth-child(2n) {
        border-right: none;
    }

    .amenity-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .amenity-icon {
        width: 55px;
        height: 55px;
    }

    .amenity-icon i {
        font-size: 20px;
    }

    .amenity-text {
        font-size: 13px;
    }

    .amenity-shape {
        width: 100px;
    }
}

/*  */
/* Floating container */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

/* Common button style */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-decoration: none;
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25D366;
}

/* Call */
.float-btn.call {
    background: #ec1c24;
}

/* Hover effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* Center floating button */
.floating-enquiry {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: none;
}

/* Button style */
.floating-enquiry a {
    display: inline-block;
    background: #ec1c24;
    color: #fff;
    padding: 12px 30px;
    border-radius: 20px 20px 0 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* Hover */
.floating-enquiry a:hover {
    transform: translateY(-3px);
}

@media (max-width: 786px) {
    .ptb-110-60 {
        padding: 40px 0 60px 0;
    }

    .floating-enquiry {
        display: block;
    }

    /* .floating-contact {
        display: none;
    } */

    p {
        font-size: 17px;
    }
}

.text-red {
    color: #ec1c24 !important;
}

.contact-section-custom .row {
    align-items: stretch;
}

.contact-section-custom .col-lg-3 {
    display: flex;
}

.contact-section-custom .map-img-box {
    width: 100%;
    height: 100%;
}

.contact-section-custom .map-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* optional */
}

/*  */
/* CSS */
.banner-slider {
    position: relative;
    overflow: hidden;
}

.slider .slide {
    height: 100%;
    position: relative;
}

/* Images */
.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Default */
.desktop-banner {
    display: block !important;
}

.mobile-banner {
    display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-slider .slider .slide .desktop-banner {
        display: none !important;
    }

    .banner-slider .slider .slide .mobile-banner {
        display: block !important;
    }

    .slider .slide {
        height: 100%;
    }
}

/* Zoom effect */
.slick-current img {
    /* transform: scale(1.1); */
    transition: transform 8s ease;
}

/* Dots styling */
.slick-dots {
    position: absolute !important;
    bottom: 10px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    z-index: 10;
    gap: 10px;
}

.slick-dots li {
    width: 14px;
    height: 14px;
}

.slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #283273;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #ec1c24;
    transform: scale(1.3);
}

.slick-dots li button:hover {
    background-color: #ec1c24;
    transform: scale(1.2);
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dotted.slick-slider {
    margin-bottom: unset !important;
}

.wd-1000 {
    width: 1200px;
    max-width: 1400px;
}

/*  */
.modal-dialog {
    max-width: 420px;
}

.modal-content {
    position: relative;
    background: transparent;
}

#bookingModal .btn-close {
    position: absolute;
    top: -35px;
    /* move upward */
    right: -12px !important;
    /* move to right edge */
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal backdrop (dark overlay) */
.modal-backdrop {
    z-index: 10500 !important;
}

/* Modal container */
.modal {
    z-index: 10600 !important;
}

.text-blue {
    color: #263070;
}

.modal-dialog-centered {
    justify-content: center !important;
}

/* Make SweetAlert appear above modal */
.swal2-container {
    z-index: 20000 !important;
}

/*  */
/* Box */
.feature-box {
    text-align: center;
    padding: 20px;
}

/* Wrapper */
.icon-wrapper {
    perspective: 1000px;
    display: inline-block;
}

/* Flip */
.icon-flip {
    width: 90px;
    height: 90px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

/* .feature-box:hover .icon-flip {
    transform: rotateY(180deg) scale(1.05);
} */

/* Front & Back */
.icon-front,
.icon-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
}

/* Colors */
.icon-front {
    background: #f2f2f2;
}

.icon-back {
    background: #ec1c24;
    transform: rotateY(180deg);
}

/* Icon (only first one uses image, others optional) */
.icon-front img,
.icon-back img {
    width: 50px;
    height: 50px;
    /* filter: brightness(0) invert(1); */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Text */
.feature-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #263070;
    line-height: 1.5;
}

/* Responsive */
@media (min-width:760px) {
    .vd {
        display: block;
    }

    .vm {
        display: none;
    }
}


@media (max-width: 768px) {
    .icon-flip {
        width: 80px;
        height: 80px;
    }

    .feature-text {
        font-size: 17px;
    }

    .vm {
        display: block;
    }

    .vd {
        display: none;
    }
}

.bglight-white {
    background-color: #f2f2f2;
}

.ft-style {
    font-family: "Grenda" !important;
}

.ft-28 {
    font-size: 28px !important;
}

/*  */
.floorplan-btn {
    background: #EC1C24;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.floorplan-btn:hover {
    background: #263070;
    color: #fff;
}

/*  */

.video-wrapper {
    width: 600px;
    height: 340px;
    /* reduced height */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}
/*  */