:root {
    --colorGolden: #d4af37;
    --colorGoldenDark: #8b6914;
    --colorMaroon: #612142;
    --colorBrownDark: #3d1a3d;
    --colorLightGolden: #e0c589 ;
    --colorLightGoldenbg: #faf6ef;
    --bgGolden: #faf6ef;
    --bgGoldenSecond: #f7f0e6;
    --btnBrown: #3d1a3d;
    --textBrown: #3d1a3d;
    --primary-grad: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #d4af37 30%, #8b6914 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #8b6914 62.5%, #8b6914 100%);
    --dark-grad: radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #8b6914 8%, #D1B464 25%, #8b6914 62.5%, #8b6914 100%);
    --colorPurple: #3d1a3d;
    --colorPurpleDark: #2a0f2a;
}

.blur-digits {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    display: inline;
    user-select: none;
}

.text-grad {
    color: var(--colorGolden);
    background-image: var(--primary-grad);
    background-position-x: center;
    background-position-y: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-origin: ;
    background-color: ;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.color-white {
    color: #fff;
}

.color-black {
    color: #000;
}

.golden-color {
    color: var(--colorGolden);
}

.effetMoveGradient,
.effetMoveGradient:hover {
    text-shadow: 0px 3px 6px var(--colorGolden);
    background: var(--primary-grad);
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    color: var(--colorBtn);
    border: none;
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.effectScale {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* golden pulse button start */
.call-to-action-button .btn {
    background-color: #d19e02 !important;
    animation: golden-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
}

.call-to-action-button .btn:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 158, 2, 0.6);
}

@keyframes golden-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 4px 15px rgba(209, 158, 2, 0.7);
        transform: translateY(-3px);
    }
}

@-webkit-keyframes golden-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 4px 15px rgba(209, 158, 2, 0.7);
        transform: translateY(-3px);
    }
}

/* golden pulse button end */

/* pulse button start */
.download-btn {
    background: var(--colorBrownDark);
    border: 1px solid var(--colorGolden) !important;
    border-radius: 4px !important;
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    margin-left: 5px;
    animation: pulse-button 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.download-btn:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.7);
    background: var(--colorBrownDark);
}

@keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        /* gold */
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

@-webkit-keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        /* gold */
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

/* pulse button end */

.brown-btn {
    /* background-color: #025baa !important; */
    background: var(--colorBrownDark);
    border: 1px solid var(--colorGolden);
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    margin-left: 5px;
    animation: brown-pulse-button 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes brown-pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        /* gold */
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

@-webkit-keyframes brown-pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        /* gold */
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

.brown-btn:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.7);
    /* gold */
}

.about-img {
    width: 85%;
    height: auto;
    border: 8px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0;
    display: inline-block;
    overflow: hidden;
}

/* Zoom in–zoom out animation on image */
.about-img img {
    width: 100%;
    border-radius: 5px;
    /* Apply zoom animation */
    /* animation: zoomInOut 5s ease-in-out infinite alternate; */

    /* Keep zoom centered */
    /* transform-origin: center; */

    /* Improve performance */
    /* will-change: transform; */
}


/* Keyframes for smooth zoom animation effect */
@keyframes zoomInOut {

    /* Normal size */
    from {
        transform: scale(1);
    }

    /* Slight zoom-in for luxury feel */
    to {
        transform: scale(1.2);
    }
}

/* ================================
   ABOUT IMAGE SWITCH CONTAINER
================================ */
.about-img-switch {
    width: 85%;
    height: 600px;
    border: 12px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

/* ================================
   IMAGE BASE STYLE
================================ */
.about-img-switch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: absolute;
    inset: 0;
    transition: opacity 1.2s ease-in-out;
    animation: zoomInOut 8s ease-in-out infinite alternate;
    transform-origin: center;
    will-change: transform, opacity;
}

/* ================================
   SMOOTH FADE SWITCH
================================ */

/* Image 1 */
.about-img-switch .img1 {
    animation:
        zoomInOut 8s ease-in-out infinite alternate,
        fadeSmooth1 10s ease-in-out infinite;
}

/* Image 2 */
.about-img-switch .img2 {
    animation:
        zoomInOut 8s ease-in-out infinite alternate,
        fadeSmooth2 10s ease-in-out infinite;
}

/* Smooth fade keyframes */
@keyframes fadeSmooth1 {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeSmooth2 {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.why-buy-card ul li {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

#highlights {
    position: relative;
}

.imgdiv::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    height: 29.5%;
    width: 15%;
    background: url(../images/vectorimg.webp);
    /* z-index: -1; */
}

#highlights .topimg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
    width: 76%;
    margin-bottom: 18%;
    transition: all 0.5s ease;
    animation: floatImageUp 5s ease-in-out infinite;

}

@keyframes floatImageUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

#highlights .topimg:hover {
    transform: scale(1.5);
}

#highlights .bottomimg {
    position: absolute;
    right: 0%;
    bottom: -45px;
    border: 10px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 60%;
    transition: all 0.5s ease;
    animation: floatImageDown 6s ease-in-out infinite;
}

@keyframes floatImageDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

#highlights .bottomimg:hover {
    transform: scale(1.5);
}


#gallery {
    padding: 50px 0px;
}

#amenities {
    padding: 50px 0px;
}


#pricelist {
    padding: 50px 0px;
}


#floorplan {
    padding: 50px 0px;
    height: 300px;
    background-color: var(--colorBrownDark);
    /* background-color: #6b5c34; */
    /* background: linear-gradient(135deg, var(--colorPrimary), var(--colorSecondary)); */
    margin-bottom: 300px;
    background-image: url(../images/background-pattern.png);
}

/* #floorplan .container {
    padding: 0 80px;
} */

#floorplan .item_wrap {
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}

/* #floorplan .img_sec img {
    border-radius: 5px;
} */
#floorplan .img_sec {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* Image */
#floorplan .img_sec img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

#floorplan .img_sec:hover img {
    transform: scale(1.05);
}

/* Dark overlay */
#floorplan .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            /* rgba(212,175,55,0.4), */
            rgb(247 227 163 / 82%),
            rgba(0, 0, 0, 0.8));
    z-index: 1;
    pointer-events: none;
}

/* Optional hover polish */
#floorplan .img_sec:hover .img-overlay {
    background: var(--colorBrownDark);
}

/* Centered text */
#floorplan .view-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;

    /* Capsule styling */
    padding: 10px 26px;
    border-radius: 999px;
    border: 1.5px solid #d4af37;
    color: var(--colorBrownDark);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;

    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-align: center;
}
@media (max-width: 768px) {
    #floorplan .view-text { font-size: 12px; padding: 8px 16px; }
}

#floorplan .img_sec:hover .view-text::after {
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

#floorplan .title {
    background-color: var(--colorBrownDark);
    /* background-color: #5c4719; */
    /* background: linear-gradient(135deg, #00a3d3 0%, #00c9e0 100%); */
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    font-weight: 400;
}


#location {
    padding: 50px 0px;
    padding-bottom: 0px !important;
}

.location-map {
    background: var(--primary-grad);
    border: 1px solid var(--colorBrownDark);
    border-radius: 5px;
    padding: 3px;
    overflow: hidden;
}

.location-map .map {
    overflow: hidden;
    border-radius: 4px;
    /* border: 8px solid var(--colorLightGolden); */
}

.location-map img {
    width: 100%;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.location-map img:hover {
    scale: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.connectivity-list { margin-top: 10px; display: flex; flex-direction: column; }
.conn-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(212,175,55,0.2); }
.conn-item:first-child { border-top: 1px solid rgba(212,175,55,0.2); }
.conn-place { font-size: 13px; color: #555; letter-spacing: 0.3px; }
.conn-time { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #d4af37; font-weight: 600; }

/* Location Tabs */
.loc-tabs { gap: 8px; flex-wrap: wrap; border: none; }
.loc-tabs .nav-link {
  background: #faf6ef;
  border: 1px solid rgba(212,175,55,0.3);
  color: #3d1a3d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.loc-tabs .nav-link:hover { background: rgba(212,175,55,0.15); border-color: #d4af37; }
.loc-tabs .nav-link.active {
  /* background: var(--colorBrownDark); */
  background: linear-gradient(135deg, #d4af37, #8b6914);
  border-color: transparent;
  color: #fff;
}
.tab-content .tab-pane { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
  .loc-tabs .nav-link { font-size: 10px; padding: 6px 12px; }
  .conn-time { font-size: 18px; }
  .conn-place { font-size: 12px; }
}

/* Banner BSP Info */
.banner-bsp-info {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
  margin: 10px 0;
  animation: bspGlow 2s ease-in-out infinite;
}

@keyframes bspGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(212,175,55,0.5), 0 0 30px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.7);
  }
}

.mobile-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #3d1a3d;
}

/* Mobile Price Highlight */
.mobile-price-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #3d1a3d;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(61,26,61,0.08));
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 8px;
  padding: 1px 10px;
  margin-bottom: 16px;
  display: inline-block;
  animation: priceShine 2.5s ease-in-out infinite;
}

@keyframes priceShine {
  0%, 100% {
    box-shadow: 0 0 5px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(212,175,55,0.5), 0 0 35px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.8);
    transform: scale(1.03);
  }
}

.banner-bsp-info span {
  color: var(--colorGolden);
  font-size: 16px;
  letter-spacing: 0.2px;
  text-align: left;
}

/* Call Us Anytime */
.call-anytime { display: flex; align-items: center; gap: 16px; }
.call-icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #d4af37, #8b6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(212,175,55,0.25);
}
.call-icon-box:hover { transform: scale(1.08); }
.call-icon-box i,.call-icon-box svg { color: #fff !important; font-size: 20px; }
.call-info { display: flex; flex-direction: column; }
.call-label { font-size: 11px; color: #888; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 2px; }
.call-number { font-size: 16px; color: #3d1a3d; font-weight: 700; text-decoration: none; letter-spacing: 0.1px; }
.call-number:hover { color: #d4af37; }

.location-points {
    list-style: none;
    padding: 20px;
    margin: 0;
}

/* Amenity Icon Cards */
.amenities-card-section { padding: 60px 0; background: #fff; }
.amenities-main-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: #3d1a3d; margin-bottom: 8px; }
.amenities-main-title em { color: #d4af37; font-style: italic; }
.amenities-gold-line { width: 50px; height: 3px; background: #d4af37; margin: 12px auto 20px; }
.amenities-desc { font-size: 14px; color: #777; line-height: 1.8; margin: 0 auto; }
.amenity-icon-card {
  /* background: #f8f7f4; */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.amenity-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61,26,61,0.08);
  border-color: rgba(212,175,55,0.3);
}
.amenity-emoji { font-size: 42px; margin-bottom: 14px; line-height: 1; }
.amenity-card-title { font-size: 14px; font-weight: 700; color: #3d1a3d; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.amenity-card-desc { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 0; }

@media (max-width: 768px) {
  .amenities-card-section { padding: 40px 0; }
  .amenities-main-title { font-size: 26px !important; }
  .amenity-icon-card { padding: 20px 14px 18px; }
  .amenity-emoji { font-size: 32px; }
  .amenity-card-title { font-size: 12px; }
  .amenity-card-desc { font-size: 11px; }
}

.location-points li {
    /* display: flex; */
    display: inline-block;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #6b6a6a;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.location-points li:last-child {
    border-bottom: none;
}

.location-points .icon {
    font-size: 14px;
    line-height: 1.4;
}

.location-points strong {
    color: #2c2c2c;
    font-weight: 600;
}


/* new gallery section start  */

.luxury-slider-section {
    color: #fff;
    /* font-family: 'Poppins', sans-serif; */
}

.luxury-slider .g-slide {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.luxury-slider .g-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    filter: brightness(0.9) contrast(1.05);
}

.luxury-slider .g-slide:hover img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.1);
}

.luxury-slider .owl-nav {
    padding-top: 20px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: #757070 !important;
    border: none;
    padding: 0 !important;
    margin: 10px;
}

.owl-next,
.owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    line-height: 1.2;
}

.owl-next span,
.owl-prev span {
    font-size: 28px;
    line-height: 1.2;
}

/* new gallery section end  */


.faq-section {
    padding: 50px 0px;
    background-color: transparent;
    background-image: url('../images/background-pattern.png');
    background-size: cover;
    background-position: center;
}

#about {
    padding: 50px 0px;
}

.consulting img {
    height: 25px;
    width: auto;
}

/* Responsive Styles */
@media screen and (max-width:567px) {
    #about {
        padding: 30px 0px !important;
    }

    #highligts {
        padding: 30px 0px !important;
    }

    #gallery {
        padding: 30px 0px !important;
    }

    #amenities {
        padding: 30px 0px !important;
    }


    #floorplan {
        padding: 30px 0px !important;
    }

    #location {
        padding: 30px 0px !important;
        padding-bottom: 0px !important;
    }

    #specification {
        padding: 30px 0px !important;
        padding-bottom: 0px !important;
    }


    #question {
        padding: 30px 0px !important;
    }



}


.project-info-section {
    display: none;
}

.container {
    max-width: 1280px;
}

header {
    /* background-color:#fff;  */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: all .5s;
    padding: 10px 0;
}

.darkHeader {
    background-color: #000
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.project-logo {
    width: 400px;
}

.luxury-logo {
    max-width: 130px
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
    font-family: 'system-ui';
    padding: 10px 11px;
    font-weight: 700;
    width: auto;
    display: inline-block
}

.menu ul li a:hover {
    background-color: #d19e02
}

.fixed-header .menu ul li a {
    color: #000;
    font-weight: 600;
}

.menu ul li a:hover {
    border-bottom: 2px solid var(--colorSecondary);
    background-color: transparent;
}

/* HOME BANNER STYLES for video */
.home-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* VIDEO layer */
.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK overlay */
.home-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.35); */
    z-index: 1;
}

/* TEXT & CONTENT */
.home-banner>.container,
.home-banner>.container-fluid {
    position: relative;
    z-index: 2;
}

.banner-form {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 410px;
    border-radius: 5px;
    border: 5px solid #e1dfdf;
}

.home-banner .form_section {
    padding: 28px 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border-radius: 5px; */
    /* border: 5px solid #f1eeee; */
    z-index: 999;
    background: linear-gradient(135deg, #fff, #b8a157, #8a6e2f);
    /* background: linear-gradient(135deg, #f7e7a9, #907d3f, #8a6e2f); */
}

.home-banner .form_section .text_form.form-control {
    height: 36px;
    padding: 3px 30px !important;
    background: none;
    color: #000 !important;
    border: transparent;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: transparent;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: transparent;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    height: 42px;
    padding: 12px 30px 12px 50px !important;
}

.home-banner .form_section .text_form.form-control::placeholder {
    color: #000;
    opacity: 1;
}

.home-banner .form_section .text_form.form-control:-ms-input-placeholder {
    color: #000;
}

.home-banner .form_section .text_form.form-control::-ms-input-placeholder {
    color: #000;
}

.home-banner .form_section .text_form.form-control:focus {
    color: #000;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}

.home-banner .form_section .form_title {
    font-size: 21px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 20px;
    text-align: center;
}

.home-banner .form_section .icon-inside {
    position: absolute;
    width: 50px;
    height: 44px;
    left: 5px;
    top: 0;
    pointer-events: none;
    font-size: 18px;
    font-size: 1.125rem;
    color: var(--colorGoldenDark);
    opacity: .9;
    z-index: 3;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.banner-cnt {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 15px;
    z-index: 1;
}

.project-configurations h1 {
    color: #fff;
    font-size: 42px;
    font-family: 'poppinsbold';
}

.project-configurations p {
    font-size: 18px;
    color: #fff;
    font-family: 'poppinsbold';
}

.configuration-item {
    padding-right: 20px;
}

.configuration-item h4 {
    color: #d19e02;
    font-size: 20px;
    font-family: 'poppinssemibold';
    text-transform: uppercase;
}

.configurations-size {
    position: relative;
}

.banner-configurations-site-visit {
    display: flex;
    align-items: center;
}

.banner-configurations {
    display: flex;
}

.configurations-size::after {
    content: "";
    background-color: gainsboro;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 10px;
    bottom: 0;
}

.project-configurations .configuration-item p {
    margin: 0;
}

.project-configurations .configuration-item p span {
    color: #d19e02;
}

.btn {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #d19e02;
    padding: 10px 30px;
}

.project-site-visit {
    display: flex;
    align-items: center;
}

.project-info-item {
    text-align: center;
    padding-top: 30px;
    height: 100%;
}

.project-info-item h3 {
    color: #232323;
    font-size: 16px;
    margin: 10px 0;
    font-weight: 700;
}

.project-info-item p {
    color: #232323;
    font-size: 14px;
}

.project-info-border {
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.inner-title h2 {
    color: #2a2a2a;
    font-size: 36px;
    /* font-weight: 600; */

}

.inner-title p {
    color: #1c1b1b;
    font-size: 17px !important;
    line-height: 1.8em;
    text-align: center;

}

.trans-btn {
    color: #fff !important;

}

.prosummary ul li {
    font-size: 15px;
    margin: .5rem;
    color: #6b6a6a;
    font-weight: 500;
    text-align: center;
}

.prosummary ul li strong {
    color: #2d2d2d;
}

#floor-plan .project-site-visit a:hover {
    color: #fff;
}

.about-video {
    position: relative;
    height: 100%;
}

.about-video::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
}

.img-box {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: inline-block;
    background-position: 100% 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
}

.highlight-div {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.highlight-div h3 {
    background-color: #d19e02;
    color: #fff;
    font-size: 20px;
    padding: 20px 32px;
    margin: 0 0 30px 0;
}

.price-card {
    /* background: #f7f0e6; */
    background: #f9f5ee;
    color: #2e2d2d;
    padding: 1.5rem;
    border: 1px solid #d0cac1;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card .price-category {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--textBrown);
}


.table.table-bordered tr th,
.table.table-bordered tr td {
    color: #000;
    border: 2px solid #eaeff0;
    text-align: center;
    font-size: 18px;
    font-family: 'Calibri', sans-serif !important
}

.table.table-bordered tr th {
    background-color: var(--colorBlueDark);
    color: #fff;
    opacity: .9;
    font-size: 20px;
}

@media screen and (max-width:567px) {

    .table.table-bordered tr th,
    .table.table-bordered tr td {
        font-size: 10px;
    }

    #btnidi {
        font-size: 10px !important;
    }
}

.accodion_content span {
    font-family: 'Calibri', sans-serif !important
}


.highlight-div ul {
    list-style: none;
    width: 100%;
    display: inline-block;
    padding-right: 10px;
}

.highlight-div ul li {
    color: #666666;
    font-size: 16px;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}

.highlight-div ul li::before {
    position: absolute;
    content: '\f00c';
    left: 0px;
    top: 0px;
    color: #d19e02;
    font-size: 18px;
    font-weight: 400;
    font-family: 'FontAwesome';
}

.highlight-image {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    margin: 0 0 50px 0;
}

.section-title h2 {
    font-size: 36px;
    color: #2a2a2a;
    line-height: 1em;
    font-weight: 600;
}

.gray-background {
    background-color: #2a2a2a;
}

.gray-background .inner-title h2 {
    color: #fff;
}

.gray-background .inner-title p {
    color: #fff;
}

.floor-plan-section .container-fluid {
    padding: 0;
}

.features-section .container-fluid {
    padding: 0;
}

#gallery .container-fluid {
    padding: 0;
}

.location-advantage-section .container-fluid {
    padding: 0;
}

.floor-plan {
    background-color: #fff;
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-plan-img {
    box-shadow: 0px 0 5px gainsboro;
    text-align: center;
    padding: 15px;
    width: 100%;
}

.floor-plan-cnt {
    padding: 45px;
    height: 100%;
    display: flex;
    align-items: center;
}

.inner-title {
    width: 100%;
}

.inner-title .project-site-visit {
    margin: 40px 0 0 0;
}

.featured-inner h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 25px;
    border-left: 6px solid #d19e02;
}

.featured-inner p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
    padding-left: 30px;
}

.featured-inner {
    margin-top: 35px;
}

.gray-background .inner-title ul {
    padding: 0;
    list-style: none;
    color: #fff;
    margin: 0;
}

.gray-background .inner-title ul li {
    font-size: 16px;
    font-weight: 500;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}

.gray-background .inner-title ul li::before {
    content: '\f00c';
    font-size: 16px;
    font-weight: 400;
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #d19e02;
}

.location-map-div {
    height: 100%;
}

.call-to-action-section {
    background-color: var(--colorBlueDark);
    padding: 40px 0;
}

.call-to-action-button {
    text-align: right;
}

.call-to-action-button .btn {
    background-color: #fff;
    color: white;
    border-color: #fff;
}

.call-to-action-cnt p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.top-footer {
    position: relative;
    padding: 50px 0px 50px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-footer::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #f6f3ef;
}

.top-footer .container {
    position: relative;
}

.about-developer h3 {
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #3d1a3d;
}

.about-developer p {
    color: #6b6a6a;
}

.location-detail {
    padding: 30px 30px;
    /* background-color: #2c2c2c; */
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.location-detail h4 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
}

.location-item {
    margin-top: 30px;
}

.location-item h5 {
    font-size: 22px;
}

.location-item p {
    margin: 0;
    font-size: 14px;
}

.location-item p a {
    color: #fff;
    text-decoration: none;
}

.form-footer {
    padding: 2px !important;
    border-radius: 5px;
    border: 1px solid #b8a157;
    background: linear-gradient(135deg, #fff, #b8a157, #b8a157);
}

.form-footer h4 {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    font-family: serif !important;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
}

textarea.form-control {
    min-height: 50px;
    resize: none;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
    border: 2px solid #fff;
    background-color: transparent;
    /* color: #fff; */
}

.form-footer .form-control {
    border-bottom: 1px solid #000 !important;
    border: none;
    padding-top: 10px;
    border-radius: 0px;
    font-size: 20px;
}

.countryCode {
    position: absolute;
    width: 100px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 57%;
    border: 0;
    background-color: transparent;
    z-index: 1;
    color: #000;
}

.countryCode~.form-control {
    padding-left: 120px;
}

.countryCode option {
    color: #000;
}

.form-control::placeholder {
    color: #000;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #fff;
}

.form-control::-ms-input-placeholder {
    color: #fff;
}

.form-control:focus {
    /* color: #fff; */
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.mid-footer {
    background-color: #2a2a2a;
    padding-top: 30px;
    width: 100%;
    display: inline-block;
}

.footer-menu {
    margin-bottom: 15px;
}

.footer-menu h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 6px solid white;
    text-align: left;
}

.footer-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    display: inline-block;
}

.footer-menu ul li {
    width: auto;
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    padding: 0 0 0 12px;
}

/*.footer-menu ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #777;
    border-radius: 100%;
    transform: translateY(-50%);
}*/
.footer-menu ul li a {

    text-decoration: none;

    font-family: system-ui;
    display: block;
    font-size: 12px;
    margin-left: 10px;
    opacity: 1;

}

.rera-strip ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

.rera-strip {
    background-color: #696969;
    padding-top: 10px;
}

.rera-strip ul li {
    padding: 0 15px;
    text-align: center;
    font-size: 13px;
    border-right: 1px solid #fff;
    width: auto;
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
}

.rera-strip ul li:last-child {
    border-right: 0;
}

.footer-para p {
    text-align: justify;
    margin-top: 16px;
    font-size: 13px;
}

.btm-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btm-footer .copyright {
    font-size: 13px;
}

.social-icons a {
    background-color: #0f57a3;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: inline-flex;
    border-radius: 100%;
    color: #fff;
    margin: 0 0 0 10px;
}

.btm-footer {
    /* background-color: rgb(211 209 209); */
    padding: 15px 0;
}

.modal-body .top-footer {
    padding: 15px 0px 15px;
}

.close {
    padding: 0;
    position: absolute;
    right: 5px;
    top: 0px;
    z-index: 9;
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
}

.modal-body .top-footer {
    padding: 15px 0px 15px;
    background-attachment: inherit;
}

.modal-body {
    padding: 0;
}

.modal-content {
    border: 0;
    padding: 5px;
}

.call-to-action-section .logo {
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.call-to-action-section .logo img {
    max-width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.fix-mobile-strip {
    display: none;
}

a.whatsapp {
    background-color: #2fb842;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    left: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 2;
}

@media only screen and (max-width: 1320px) {
    .container {
        max-width: 1230px;
    }
}

@media only screen and (max-width: 1279px) {
    .rera-strip ul li {
        padding: 0 7px;
    }

    a.whatsapp {
        font-size: 20px;
        width: 44px;
        height: 44px;
    }

    .project-configurations {
        padding-left: 45px;
    }

    .project-configurations h1 {
        font-size: 35px;
    }

    .project-configurations p {
        font-size: 16px;
    }

    .configuration-item h4 {
        font-size: 18px;
    }

}

@media only screen and (max-width: 1199px) {
    .menu ul li a {
        font-size: 11px;
        padding: 20px 10px;
    }

    .highlight-div h3 {
        font-size: 18px;
        padding: 15px 32px;
        margin: 0 0 15px 0;
    }

    .highlight-div ul li {
        font-size: 14px;
        padding-left: 30px;
        margin-bottom: 5px;
    }

    .same-section {
        margin-bottom: 35px;
    }

    .inner-title h2 {
        font-size: 30px;
    }

    .inner-title p {
        font-size: 14px;
    }

    .featured-inner h4 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-left: 10px;
        border-left: 5px solid #d19e02;
    }

    .featured-inner p {
        font-size: 14px;
        padding-left: 15px;
        line-height: 1.6em;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .project-configurations h1 {
        font-size: 30px;
    }

    .banner-configurations-site-visit {
        width: auto;
        display: inline-block;
    }

    .configuration-item {
        padding-right: 18px;
    }

    .project-site-visit {
        margin: 12px 0 0 0;
    }

}

@media only screen and (max-width: 991px) {
    .button_container {
        position: absolute;
        top: 30%;
        right: 0;
        height: 10px;
        width: 27px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }

    .button_container:hover {
        opacity: 0.7;
    }

    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #fff;
    }

    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }

    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #fff;
    }

    .button_container span {
        background: #fff;
        border: none;
        height: 2px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
    }

    .button_container span:nth-of-type(2) {
        top: 11px;
    }

    .button_container span:nth-of-type(3) {
        top: 22px;
    }

    .overlay {
        position: fixed;
        background: black;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s, height 0.35s;
        overflow: hidden;
        z-index: 9;
    }

    .overlay.open {
        opacity: 0.9;
        visibility: visible;
        height: 100%;
    }

    .overlay.open li {
        -webkit-animation: fadeInRight 0.5s ease forwards;
        animation: fadeInRight 0.5s ease forwards;
        -webkit-animation-delay: 0.35s;
        animation-delay: 0.35s;
    }

    .overlay.open li:nth-of-type(2) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .overlay.open li:nth-of-type(3) {
        -webkit-animation-delay: 0.45s;
        animation-delay: 0.45s;
    }

    .overlay nav {
        position: relative;
        height: 70%;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        height: 100%;
    }

    .overlay ul li {
        display: block;
        position: relative;
        opacity: 0;
        margin: 0 0 15px 0;
    }

    .overlay ul li a {
        display: block;
        position: relative;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        font-size: 25px;
        padding: 0;
        font-weight: 400;
    }

    .menu ul li a:hover {
        background-color: transparent;
    }

    .overlay ul li a:hover:after,
    .overlay ul li a:focus:after,
    .overlay ul li a:active:after {
        width: 100%;
    }

    .overlay ul li a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0%;
        transform: translateX(-50%);
        height: 3px;
        background: #fff;
        transition: 0.35s;
    }

    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }

        100% {
            opacity: 1;
            left: 0;
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }

        100% {
            opacity: 1;
            left: 0;
        }
    }

    .project-info-item p {
        font-size: 13px;
    }

    .project-info-item h3 {
        font-size: 12px;
    }

    .luxury-logo {
        display: none;
    }

    .same-section {
        margin-bottom: 25px;
    }

    .inner-title h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .inner-title .project-site-visit {
        margin: 15px 0 0 0;
    }

    .about-video {
        height: 400px;
        margin-top: 20px;
    }

    .highlight-image {
        display: none;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .form-footer h4 {
        font-size: 26px;
    }

    header {
        padding: 15px 0;
    }

    /* .home-banner {
        padding-top: 45px;
    } */
    .project-configurations h1 {
        font-size: 30px;
    }

    .project-configurations p {
        font-size: 16px;
    }

    .project-configurations p {
        font-size: 13px;
    }

    .btn {
        font-size: 13px;
        padding: 8px 10px;
    }

    a.whatsapp {
        bottom: 14px;
    }

    .banner-text {
        position: relative;
        padding: 0;
        color: #000;
        background-color: rgb(249, 245, 234);
        width: 100%;
        border-radius: 2px;
        text-align: center;
        opacity: 0.9;
    }

    .banner-text .info-text {
        padding: 20px;
        text-align: center;
    }

    .banner-text h1 {
        font-size: 32px;
        font-weight: 600;
    }

    .banner-text p {
        font-size: 11px;
    }

    .banner-text .eoi-card {
        margin-top: 20px;
        padding: 10px;
        background-color: #e1f1f6;
        /* background-color: #eee; */
        border-radius: 2px;
    }

    .payment-plan-card {
        margin-top: 12px;
        padding: 7px;
        color: #fff;
        background-color: var(--colorSecondary);
        letter-spacing: 0.8px;
        font-weight: 500;
        text-align: center;
        border-radius: 3px;
    }

    .sticky_icon {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .sticky_icon ul li {
        background-color: #cbbb85;
        /* background-color: #544a3a; */
        padding: 14px 0;
        text-align: center;
        border-right: 2px solid #8a6e2f;
        /* border-right: 2px solid #c6c6c6; */
    }

    .sticky_icon ul li a {
        color: #000;
    }
}

@media only screen and (max-width: 767px) {
    #floorplan {
        margin-bottom: 230px;
    }

    #floorplan .container {
        padding: 0;
    }

    .project-info-section {
        display: block;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .overlay-img-right {
        position: absolute;
        top: 95px;
        right: 0px;
        height: 20%;
        width: 25%;
    }

    a.whatsapp {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .overlay ul li a {
        font-size: 22px;
    }

    .btm-footer .container {
        display: block;
        text-align: center;
    }

    .copyright {
        margin-bottom: 10px;
    }

    .logo {
        text-align: center;
        margin: 0 0 15px 0;
    }

    .call-to-action-cnt {
        text-align: center;
        margin: 0 0 15px 0;
    }

    .call-to-action-button {
        text-align: center;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .form-footer h4 {
        font-size: 20px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .fix-mobile-strip {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        box-shadow: 0 0 5px #696969;
    }

    .fix-mobile-strip ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    .fix-mobile-strip ul li {
        width: 50%;
        text-align: center;
    }

    .fix-mobile-strip ul li a {
        display: block;
        text-decoration: none;
        color: #fff;
        background-color: #0f57a3;
        padding: 10px;
        font-size: 16px;
    }

    .btm-footer {
        padding: 15px 0 59px 0;
    }

    .banner-cnt {
        display: none;
    }

    .home-banner-img {
        display: block;
        height: 270px;
        padding-top: 50px;
    }

    .home-banner {
        background-image: none;
        height: 250px;
    }

    header {
        /* background-color: #fff; */
        background-color: transparent;
    }

    .project-rera-mobile {
        position: absolute;
        left: 15px;
        bottom: 0px;
        display: block;
        z-index: 2;
        color: #fff;
    }
}


@media only screen and (max-width: 575px) {
    .overlay ul li a {
        font-size: 20px;
    }

    .project-configurations {
        border: 15px solid rgba(255, 255, 255, 0.20);
        padding: 15px;
    }

    .configuration-item {
        text-align: left;
        margin: 0 0 12px 0;
    }

    .configurations-size::after {
        width: 100%;
        height: 1px;
        right: 0;
        bottom: 4px;
    }

    .configuration-item h4 {
        font-size: 18px;
    }

    .configuration-item h4 {
        margin: 0;
    }

    .project-configurations h1 {
        font-size: 20px;
        margin: 0;
    }

    .btn {
        font-size: 13px;
        padding: 8px 15px;
        letter-spacing: 1px;
    }

    .inner-title p {
        font-size: 13px;
        line-height: 1.5em;
        text-align: justify !important;
    }

    .about-video {
        height: 250px;
    }

    .highlight-div h3 {
        font-size: 16px;
        padding: 15px;
    }

    .highlight-div ul {
        padding-left: 15px;
    }

    .highlight-div ul li {
        font-size: 13px;
        padding-left: 25px;
    }

    .section-title h2 {
        font-size: 20px;
        padding: 0 15px;
    }

    .section-title {
        margin: 0 0 20px 0;
    }

    .floor-plan-cnt {
        padding: 15px;
    }

    .inner-title h2 {
        font-size: 20px;
    }

    .featured-inner {
        margin-top: 20px;
    }

    .featured-inner h4 {
        font-size: 16px;
    }

    .gray-background .inner-title ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .rera-strip ul li {
        border-right: 0;
    }

    .project-info-item .icon {
        max-width: 50px;
        height: auto;
        margin: 0 5px 0 0;
    }

    .fix-mobile-strip ul li a {
        font-size: 14px;
    }

    .project-info-border {
        border-right: 0;
        border-bottom: 1px solid #e6e6e6;
        flex: auto;
    }

    .project-info-item {
        padding-top: 10px;
        padding-bottom: 10px;
        height: auto;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .project-info-item h3 {
        margin: 0 0 5px 0;
    }

    .project-info-item p {
        margin-bottom: 0;
    }

    .project-info-item-txt h3 {
        width: auto;
        display: inline-block;
    }

    .project-info-item-txt p {
        width: auto;
        display: inline-block;
    }

    a.whatsapp {
        font-size: 18px;
        width: 41px;
        height: 41px;
    }

    .same-section {
        margin-bottom: 15px;
    }
}






@media screen and (max-width:567px) {
    .tabcontent {
        padding: 0px !important;
    }

    #slides {
        max-width: 100% !important;
    }
}


#frame {
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
    text-align: center;
}

#frame input[type=radio] {
    display: none;
}

#frame label {
    cursor: pointer;
    text-decoration: none;
}



#overflow {
    width: 100%;
    overflow: hidden;
}

#frame1:checked~#slides .inner {
    margin-left: 0;
}

#frame2:checked~#slides .inner {
    margin-left: -100%;
}

#frame3:checked~#slides .inner {
    margin-left: -200%;
}

#frame4:checked~#slides .inner {
    margin-left: -300%;
}

#slides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 400%;
    line-height: 0;
    height: 300px;
}

#slides .frame {
    width: 25%;
    float: left;
    display: inline-table;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: BLACK;
}



#controls {
    margin: -180px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
}

#controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .4;
}

#controls label:hover {
    opacity: 1;
}

#frame1:checked~#controls label:nth-child(2),
#frame2:checked~#controls label:nth-child(3),
#frame3:checked~#controls label:nth-child(4),
#frame4:checked~#controls label:nth-child(1) {
    background:
        url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
    float: right;
    margin: 0 -50px 0 0;
    display: block;
}

#frame1:checked~#controls label:nth-last-child(2),
#frame2:checked~#controls label:nth-last-child(3),
#frame3:checked~#controls label:nth-last-child(4),
#frame4:checked~#controls label:nth-last-child(1) {
    background:
        url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
    float: left;
    margin: 0 0 0 -50px;
    display: block;
}

#bullets {
    margin: 10px 0 0;
    text-align: center;
}

#bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #ccc;
    margin: 0 10px;
}



@media screen and (max-width: 900px) {

    #frame1:checked~#controls label:nth-child(2),
    #frame2:checked~#controls label:nth-child(3),
    #frame3:checked~#controls label:nth-child(4),
    #frame4:checked~#controls label:nth-child(1),
    #frame1:checked~#controls label:nth-last-child(2),
    #frame2:checked~#controls label:nth-last-child(3),
    #frame3:checked~#controls label:nth-last-child(4),
    #frame4:checked~#controls label:nth-last-child(1) {
        margin: 0;
    }

    #slides {
        max-width: calc(100% - 140px);
        margin: 0 auto;
    }
}



.tab {
    overflow: hidden;


    text-align: center;
}

@media screen and (max-width:567px) {
    #pidd {
        padding: 0px !important;
    }
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;

    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    text-align: center;
    color: grey;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: black;
}

/* Create an active/current tablink class */
.tab button.active {

    border-bottom: 1px solid black;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    padding-top: 50px;
    border-top: none;
    text-align: center;
}

@media screen and (max-width:567px) {

    .smart_home.mapsect .row {
        flex-direction: column-reverse;
    }
}


.accordion {
    border-radius: 1px;
    color: #444;
    /* cursor: pointer; */
    padding: 14px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 13px;
    transition: 0.4s;
    margin-top: -10px;
}

.active,
.accordion:hover {
    background-color: #fff0;
    border: 1px solid white
}


.panel {
    padding: 0px 10px !important;
    background-color: #f2f2f2;
    max-height: 0;
    overflow: hidden;
    font-family: sans-serif;
    transition: max-height 0.2s ease-out;
}

@media screen and (max-width:567px) {
    #wmobile {
        height: 270px !important;
    }

    #jdhs {
        margin-left: 70px !important;
    }

    #uidid {
        margin-top: 0px !important;
        padding: 0px !important;
    }

    #bantextid {
        font-size: 30px !important;
    }
}

#aliid {
    font-family: 'Calibri', sans-serif !important;
    font-size: 16px;
    padding: 8px;
}


#iframehw {
    height: 600px;
    width: 100%;
}

@media screen and (max-width:567px) {
    #iframehw {
        width: 100%;
        height: 300px !important;
    }

    #maing {
        font-size: 26px !important;
        padding-top: 20px;
    }

    .progallery {
        padding: 0px;
    }

    #picture-features {
        padding: 0px;
    }

    #h44id {
        font-size: 18px !important;
    }
}

#maing {
    color: #3d1a3d;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    padding: 5px 0px;
    margin-top: -5px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 15px;
}

#maing em, #maing i, #maing span.gold {
    color: #d4af37;
    font-style: italic;
}

#maing::after,
#maing::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: none;
}

#maing::before {
    border-bottom: 3px solid #d4af37;
    width: 50px;
    bottom: -5px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 40%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
    transform:rotate(360deg);}*/
.Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.Youtube {
    background-color: black;
    color: white;
}


.Instagram {
    background-color: #FD1D1D;
    color: #FFF;
}


.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}



.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 10px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappBounce 2s infinite ease-in-out;
}

.float-whatsapp:hover {
    animation: none;
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

.my-float {
    margin-top: 0px;
}

.float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 10px;
    background-color: #007bff;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappBounce 2s infinite ease-in-out;
}

.float-call:hover {
    animation: none;
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.1);
}


#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}


.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}

.form-control {
    padding: 10px !important;
}


@media screen and (max-width:567px) {
    .bgptn {
        padding: 0px 10px !important;
    }

    .bgptn1 {
        padding: 0px 0px !important;
    }

}

.bgptn {
    padding: 0px 100px;
}

.bgptn1 {
    padding: 0px 100px;
}

.site-footer {
    position: relative;
    background: linear-gradient(135deg, #2c112c, #2c112c);
    color: #000;
    overflow: hidden;
}

.footer-line-art {
    position: absolute;
    inset: 0;
    background:
        url('../images/footer-bg.jpg') top center / 100% auto no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
    width: 100%;
}

.footer-content {
    position: relative;
    padding: 50px 20px 10px 20px;
    z-index: 2;
}

.footer-content p,
.footer-content span,
.footer-content a {
    color: #dad9d9;
    letter-spacing: 1.01px;
}
.moreless-button {
    display: inline-block;
    color: #c7c7c7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

/* FOOTER CSS STARTS HERE */
.copyright p {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-family: 'poppinssemibold';
}


@media only screen and (max-width: 768px) {
    .configurations .info-card {
        padding: 12px 0;
        margin: 20px 0;
    }

    .about-facts ul li {
        padding: .5rem;
        font-size: 14px;
        width: 45%;
    }

    .why-buy-card .why-title {
        font-size: 22px !important;
    }

    .why-buy-card ul li {
        font-size: 16px;
    }

    .about-img {
        /* height: 200px; */
        width: 100%
    }

    #floorplan {
        height: auto;
        margin-bottom: 0;
    }

    .sports-section {
        padding: 30px 0 !important;
    }

    .sports-image img {
        height: 200px !important;
    }

    .sports-card {
        padding: 15px !important;
        margin-left: 0 !important;
    }

    .about-developer h3 {
        font-size: 24px !important;
    }

    .float-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 5px;
        right: 10px;
    }
    .float-call {
        width: 60px;
        height: 60px;
        bottom: 5px;
        left: 10px;
    }

    footer {
        padding-bottom: 50px;
    }

    .copyright p {
        font-size: 12px;
    }

}

/* Pill Button Styling */
.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--colorBrownDark);
    /* background: linear-gradient(135deg, #00a3d3 0%, #00c9e0 100%); */
    color: #fff;
    padding: 5px 7px 5px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--colorLightGolden);
    border: none;
    cursor: pointer;
}

.pill-btn:hover {
    box-shadow: 0 6px 20px var(--colorGolden);
    transform: translateY(-2px);
}

.pill-text {
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    margin-left: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pill-btn:hover .pill-icon {
    transform: scale(1.1);
}

.pill-icon svg {
    width: 20px;
    height: 20px;
}

/* Download Icon Animation */
@keyframes bounceDownload {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

.fa-download.animate-flip {
    animation: bounceDownload 1.5s infinite ease-in-out;
    display: inline-block;
}

/* End of Pill Button Styling */


/* Site Visit Section */
.site-visit-section {
    position: relative;
    background: url("../images/site-visit-bg.jpg") center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Dark gradient overlay */
.site-visit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75));
    z-index: 1;
}

/* Content wrapper */
.site-visit-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-left: auto;
    padding: 40px 20px;
    color: #fff;
}

/* Heading */
.lux-title {
    font-size: 38px;
    font-weight: 500;
    color: #d4af37;
    /* gold tone */
    margin-bottom: 16px;
}

/* Text */
.lux-text {
    font-size: 16px;
    line-height: 1.7;
    color: #f2f2f2;
    margin-bottom: 32px;
}

/* Button */
.site-visit-btn {
    display: inline-block;
    padding: 12px 38px;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #fedb37, #c89b3c);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
    animation: pulse-button 2s ease-in-out infinite;
    transition: all 0.35s ease;
}

.site-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.65);
    color: #000;
}

/* End of site-visit section */

/* Sports Section */
.sports-section {
    background: #f7f0e6;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Curved background */
.sports-section::before {
    content: "";
    position: absolute;
    width: 72%;
    height: 100%;
    background: #e4dbcf;
    border-radius: 0 300px 300px 0;
    left: 0;
    top: 0;
    z-index: 0;
}

/* Layout */
.sports-wrapper {
    /* max-width: 1200px; */
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

/* Image */
.sports-image {
    flex: 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.sports-image img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    animation: zoomInOut 5s ease-in-out infinite alternate;

    /* Keep zoom centered */
    transform-origin: center;

    /* Improve performance */
    will-change: transform;
}

.sports-image .carousel-item {
    overflow: hidden;
    border-radius: 20px;
}

.sports-image .carousel-item img {
    animation: sportZoomInOut 12s ease-in-out infinite alternate;
}

@keyframes sportZoomInOut {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

/* Content */
.sports-content {
    flex: 1;
    z-index: 2;
}

.sports-content h2 {
    font-size: 36px;
    font-weight: 400;
    color: #3d1a3d;
    margin-bottom: 30px;
}

/* Card */
.sports-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 520px;
    margin-left: -100px;
}

.sports-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3d1a3d;
    text-align: center;
}

/* sports section end */
.sports-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.sports-box-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

/* Individual box */
.sport-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 18px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
}

/* Hover effect */
.sport-box:hover {
    /* transform: translateY(-6px); */
    /* box-shadow: 0 16px 35px rgba(0,0,0,0.15); */
    border-color: #d4af37;
    /* gold accent */
    color: #3d1a3d;
}

.sport-box i {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
    color: #c2a766;
}


/* Base layout */
.sports-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Reverse layout for alternate section */
.sports-section.reverse .sports-wrapper {
    flex-direction: row-reverse;
}

.sports-section.reverse .sports-card {
    margin-right: -100px;
}


/* Mobile & tablet stacking */
@media (max-width: 991px) {
    .sports-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    /* Ensure image always comes first on mobile */
    .sports-image {
        order: 1;
        width: 100%;
    }

    .sports-content {
        order: 2;
        width: 100%;
    }
}