* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
}

:root {
    --drk-down: #bd9a68;
    --brwon: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34, #FBF5B7, #AA771C);
    --light-cream: #f9faf1;
    --dark-gray: #363636;
}

@font-face {
    font-family: BarlowCondensed-Medium;
    src: url(../fonts/BarlowCondensed-Medium.ttf);
}

@font-face {
    font-family: BarlowCondensed-Regular;
    src: url(../fonts/BarlowCondensed-Regular.ttf);
}

@font-face {
    font-family: EBGaramond-Regular;
    src: url(../fonts/EBGaramond-Regular.ttf);
}

h1 {
    font-family: EBGaramond-Regular;
}

h2 {
    font-family: BarlowCondensed-Medium;
}

p {
    font-family: BarlowCondensed-Regular;
    letter-spacing: 1.0px;
}

.banner {
    position: relative;
}


 .my-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #363636; /* choose your color */
    z-index: 99;
    padding: 10px 10px;
    box-shadow: 0px 0px 10px #0000004d;
}

.my-nav .navbar-nav {
    margin-left: auto;
    align-items: center;
}

.devloper-logo {
    max-width: 115px;
    filter: brightness(1.2);
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(255 255 255);
}

.nav-content {
    background: var(--brwon);
}

.nav-content .nav-link {
    padding: 5px;
}

.my-nav .nav-link {
    font-family: EBGaramond-Regular;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgb(255 255 255);
}

.nav-content span {
    background: var(--dark-gray);
    padding: 8px;
    display: inline-block;
}

.nav-content span img {
    max-width: 24px;
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(35 34 31 / 70%) 0%, rgb(0 0 0 / 43%) 100%);
    z-index: 2;
}

.banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: #fff;
    text-align: center;
}

.banner-text .project-name {
    font-size: 38px;
    text-transform: capitalize;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.banner-text .banner-typo {
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 25px;
}

.banner .carousel-control-next,
.banner .carousel-control-prev {
    width: 4%;
    opacity: 1;
    background: var(--brwon);
    z-index: 4;
    height: 6%;
    top: 93%;
    border: 1px solid var(--dark-gray);
    left: 45%;
    border-radius: 6px;
}

.banner .carousel-control-next {
    left: 50%;
}

.banner .carousel img {
    animation: banner-ani 7000ms ease backwards infinite;
    width: 100%;
}

@keyframes banner-ani {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/*.drop-in-1 {animation: drop-in 1200ms ease 200ms backwards;}
.drop-in-2 { animation: drop-in 1200ms ease 500ms backwards;}
.drop-in-3 { animation: drop-in 1200ms ease 800ms backwards;}
.drop-in-4 { animation: drop-in 1200ms ease 1100ms backwards;}
.drop-in-5 { animation: drop-in 1200ms ease 1400ms backwards;}
   
   @keyframes drop-in {
    from {
     opacity: 0;
     transform: translateY(-100px);
    }
    to {
     opacity: 1;
     transform: translate(0px);
    }
   }*/

.drop-in {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease;
}

.drop-in.show {
    opacity: 1;
    transform: translateY(0);
}

.banner-loc {
    margin-bottom: 25px;
}

.banner-loc p {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.banner-inner-loca {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
}

.banner-inner-loca img {
    max-width: 26px;
    margin: 0 22px;
}

.banner-inner-loca span {
    background: #fff;
    width: 20%;
    height: 2px;
    display: block;
}

.key-high ul {
    list-style-type: none;
    font-family: BarlowCondensed-Regular;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.key-high ul li {
    max-width: 33%;
    width: 33%;
    font-size: 18px;
    letter-spacing: 1px;
}

.key-high ul li:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.price-bann h2 {
    width: fit-content;
    background: var(--brwon);
    padding: 8px 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 29px;
    margin: auto;
    position: relative;
    border-radius: 8px;
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite, rocking 3s ease infinite;
    color: #000
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

.key-high {
    margin: 30px 0;
}

.form-box {
    position: fixed;
    right: 0;
    width: 21%;
    bottom: 0;
    z-index: 8;
    background: var(--light-cream);
    transition: 0.50s;
}

.from-banner {
    padding: 28px;
}

.form_inner input {
    height: 46px;
    margin-bottom: 13px;
    border: 1px solid var(--dark-gray);
}

.top_form {
    background: var(--brwon);
    cursor: pointer;
    color: #fff;
    text-align: center;
    padding: 7px 0px;
    position: absolute;
    top: -44px;
    width: 100%;
    left: 0;
}

.top_form h2 {
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.top_form h2 span {
    display: inline-block;
    margin-left: 10px;
}

.top_form h2 span img {
    max-width: 27px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(1);
}

.enquire-btn {
    background: var(--brwon);
    color: #000 !important;
    width: 100%;
    letter-spacing: 2px;
    font-size: 19px;
    text-transform: uppercase;
    font-family: BarlowCondensed-Medium;
    margin-bottom: 10px;
    border: none;
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite, rocking 3s ease infinite;
}

 

/*    .over-ani-l{
        opacity: 0;
        transform: translateX(-100px);
        transition: 1s;
    }
    .my-ani{
        opacity: 1;
        transform: translateX(0);
    }
    .over-ani-r{
        opacity: 0;
        transform: translateX(100px);
        transition: 1s;
    }
    .my-ani-1{
        opacity: 1;
        transform: translateX(0);
    }
*/

 

.high-icon img {
    max-width: 80px;
}

.high-main {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.high-box:nth-child(1)::before,
.high-box:nth-child(4)::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 7.5%;
    height: 70%;
    width: 1px;
    background: #ffffff63;
}

.cnter-line {
    width: 100%;
    height: 1px;
    background: #ffffff63;
    margin: 9px 0 17px 0;
}

.highlight .overhead {
    border-right: 1px solid #ffffff63;
    height: 100%;
}

.high-text {
    padding-left: 20px;
}

.high-box {
    display: flex;
    flex: 0 0 calc(47% - 5px);
    width: calc(50% - 5px);
    margin: 10px;
    position: relative;
}

.high-icon img {
    max-width: 45px;
}

.high-text h1 {
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--drk-down);
}

.high-text p {
    color: var(--light-cream);
}

.price-list {
    padding: 100px 0;
    position: relative;
    background: var(--light-cream);
}

.price-list .overhead {
    text-align: center;
}

.price-list .overhead p {
    color: var(--drk-down);
    letter-spacing: 3px;
    font-size: 30px;
}

.price-list .overhead h1 {
    font-size: 37px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 49px;
    color: var(--dark-gray);
    margin-bottom: 80px;
}

/* UPDATED: Centered 3 BHK / 4 BHK â€” no icon */
.price-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 12px 0;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.price-icon h3 {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* REMOVED unnecessary old icon & background overlay */
.price-icon img,
.price-icon::before {
    display: none;
}

.price-box {
    background: #fff;
    padding-bottom: 30px;
    border-radius: 10px;
    border: 1px solid var(--drk-down);
}

.typo-out {
    text-align: center;
    margin: 45px 0;
    position: relative;
}

.typo-out::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: var(--dark-gray);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.typo-out::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: var(--dark-gray);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.price-box .typo {
    width: 60%;
    margin: auto;
}

.price-box .typo h1 {
    font-size: 21px;
    letter-spacing: 0.5px;
    color: var(--dark-gray);
    text-transform: uppercase;
    border-bottom: 1px solid #ebe5e5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price-box .typo-1 h2 {
    color: var(--drk-down);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;  /* Center the text */
    width: 100%;         /* Make sure it stretches full width */
    display: block;
}

.my-from-btn {
    text-align: center;
}

.my-from-btn .enquire-btn {
    width: 70%;
}

.amenities {
    position: relative;
    background: var(--dark-gray);
}

.amenities .container {
    max-width: 100%;
}

.amenities .ami-main-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 0;
}

.amenities .ami-main-box .ami-box {
    width: 28%;
    text-align: center;
}

.amenities .ami-main-box .ami-box h2 {
    color: var(--drk-down);
    letter-spacing: 2px;
    font-size: 28px;
}

.flip-box-front h2 {
    color: var(--drk-down);
    letter-spacing: 2px;
    font-size: 28px;
}

.amenities .ami-main-box .ami-box .img-icon {
    border: 1px solid var(--drk-down);
    display: inline-block;
    padding: 60px;
    margin: 23px 0;
    border-radius: 10px;
}

.amenities .ami-main-box .ami-box.active .img-icon {
    background-color: var(--light-cream);
    transition: 0.50s;
}

.amenities .ami-main-box .ami-box.active h2 {
    color: var(--light-cream);
    transition: 0.50s;
}

.amenities .img-icon img {
    max-width: 68%;
}

.mt_ami {
    margin-top: 60px;
}

.ami-bg {
    background-image: url(../images/b1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bounce {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.bounce-inner {
    background: var(--light-cream);
    padding: 64px 36px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    /* border-radius: 243px 250px 250px 250px; */
    position: relative;
}

.amenities .overhead p {
    color: var(--drk-down);
    letter-spacing: 3px;
    font-size: 20px;
    text-transform: uppercase;
}

.amenities .overhead h1 {
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 49px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.ami-backgorund {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.flip-box {
    background-color: transparent;
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin-bottom: 114px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.img-icon {
    border: 1px solid var(--drk-down);
    display: inline-block;
    padding: 60px;
    margin: 23px 0;
    border-radius: 10px;
}

.flip-box-front {
    color: #e7e1e1;
}

.flip-box-back {
    background: var(--light-cream);
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.bounce {
    animation: ami-bouce 1200ms ease 1400ms alternate-reverse infinite;
}

@keyframes ami-bouce {
    from {
        transform: translateY(-10px);
    }
    to {
        transform: translate(0px);
    }
}

.floor-plan {
    padding: 100px 0;
    position: relative;
    background: var(--light-cream);
}

.floor-plan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/floor-plan-bg.png);
    background-repeat: no-repeat;
    opacity: 0.2;
}

.floor-plan .overhead p {
    color: var(--drk-down);
    letter-spacing: 3px;
    font-size: 20px;
    text-transform: uppercase;
}

.floor-plan .overhead h1 {
    font-size: 37px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 49px;
    color: var(--dark-gray);
}

.floor-key ul {
    list-style-type: circle;
    padding-left: 15px;
    margin-top: 30px;
}

.floor-key ul li {
    font-family: BarlowCondensed-Medium;
    letter-spacing: 1px;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-gray)
}

.floor-key ul li span {
    color: var(--drk-down);
    width: 146px;
    display: inline-block;
}

.floor-img-main .nav-item .nav-link {
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
    font-family: BarlowCondensed-Medium;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--drk-down);
    background-color: transparent;
    border-bottom: 1px solid var(--brwon);
    border-radius: 0;
}

.floor-text-main {
    padding-right: 20px;
}

.floor-img-main .nav {
    margin-bottom: 34px;
}

.location {
    padding: 100px 0;
    position: relative;
    background: var(--dark-gray);
}

.location::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/skyline.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
    z-index: 0;
}

.location .container {
    max-width: 80%;
}

.location .overhead {
    text-align: center;
}

.location .overhead p {
    color: var(--drk-down);
    letter-spacing: 3px;
    font-size: 20px;
    text-transform: uppercase;
}

.location .overhead h1 {
    font-size: 37px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 49px;
    color: var(--light-cream);
    margin-bottom: 80px;
}

.location-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.loc-box {
    display: flex;
    padding: 17px;
    width: 100%;
    margin: 7px;
    background-image: url(../images/highlight-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.loc-num {
    margin-right: 20px;
}

.loc-text p span {
    color: var(--drk-down);
}

.loc-num h1 {
    background: var(--dark-gray);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
    margin-bottom: 0;
    font-size: 21px;
}

.location-img {
    height: 100%;
}

.loc-text p {
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.location-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery {
    padding: 100px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/gallery-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    background-color: var(--light-cream);
}

.main-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-start: 1;
    gap: 20px;
}

.gallery-box.box1 {
    grid-area: 1 / 1 / 2 / 2;
}

.gallery-box.box2 {
    grid-area: 2 / 1 / 3 / 2;
}

.gallery-box.box3 {
    height: 100%;
    grid-area: 1 / 2 / 3 / 3;
}

.gallery-box,
.gallery-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery .overhead p {
    color: var(--drk-down);
    letter-spacing: 3px;
    font-size: 20px;
    text-transform: uppercase;
}

.gallery .overhead h1 {
    font-size: 37px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 49px;
    color: var(--dark-gray);
}

.footer {
    background-image: url(../images/b1.webp);
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    background-size: cover;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #070707;
}

.footer .container,
.small-footer .container {
    max-width: 80%;
}

.footer .over-head h1 {
    margin-bottom: 15px;
    font-size: 35px;
    color: var(--light-cream);
    text-transform: uppercase;
}

.footer .over-head p {
    color: #fff;
    font-size: 20px;
    line-height: 34px;
}

.contact-us-ul {
    list-style: none;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-us-ul li {
    font-size: 20px;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    /* margin-bottom: 40px; */
    margin-right: 20px;
    flex-direction: column;
    text-align: center;
    width: 25%;
    gap: 6px;
}

.contact-us-ul li .contact-details-icon {
    width: 60px;
    height: 60px;
    margin-right: 0px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-ul li .contact-details-icon img {
    width: 39px;
}

.contact-us-ul li p {
    font-size: 20px;
    color: #ffffff;
    display: grid;
    letter-spacing: 1px;
}

.contact-us-ul li p span {
    color: var(--drk-down);
    font-size: 18px;
}

.contact-us-ul li p a {
    color: #fff;
}

.flip-box-back h2 {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.footer-line {
    background: #ffffff73;
    height: 1px;
    width: 100%;
    z-index: 2;
    position: relative;
    margin-top: 40px;
}

.footer-head {
    margin-top: 30px;
}

.footer-head h1 {
    color: #fff;
    letter-spacing: 2px;
    font-size: 23px;
    margin-bottom: 14px;
}

.footer-text p {
    color: #fff;
    letter-spacing: 1px;
}

.footer-text ul {
    list-style-type: none;
}

.footer-text ul li {
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-text ul li a {
    color: #fff;
}

.footer-form {
    background: var(--light-cream);
    padding: 40px;
    max-width: 79%;
    margin-left: auto;
    border-radius: 7px;
}

.form_inner .form-group {
    margin-bottom: 21px;
}

.form_inner .form-group input {
    height: 50px;
    border: 1px solid var(--drk-down);
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, 0);
}

.gallery-btn {
    width: 28%;
    margin: auto;
    margin-top: 30px;
}

.form-btn {
    width: 100%;
    background: var(--dark-gray);
    height: 50px;
    color: var(--light-cream) !important;
    letter-spacing: 0.5px;
    margin-bottom: 12px
}

.small-footer {
    text-align: center;
    padding: 40px 0;
    background: #191919;
    color: #fff;
}

.btm-foot {
    margin-bottom: 3px;
}

.btm-foot a {
    color: #fff;
}

.mobile-section {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.my-modal button.close {
    position: absolute;
    right: 0;
    max-width: 40px;
    top: 0;
    background: var(--brwon);
    opacity: 1;
    padding: 8px;
}

.form-txt {
    text-align: center;
}

.contact-detail .foo-box {
    margin-bottom: 30px;
}

.contact-detail .foo-box h2 {
    display: grid;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 27px;
}

.contact-detail .foo-box h2 span {
    margin-bottom: 10px;
    color: var(--drk-down);
}

.contact-detail .foo-box h2 span img {
    width: 21px;
    margin-right: 7px;
}

.contact-detail .foo-box h2 a {
    color: #000;
}

.contact-detail .footer-form {
    padding: 36px;
    max-width: 100%;
    background-color: var(--drk-down);
}

.contact-detail .about-text h1 {
    font-size: 33px;
    color: #fff;
    margin-bottom: 9px;
    text-align: center;
}

.platter-page {
    background-color: var(--light-cream);
    position: relative;
    z-index: 12;
}

.platter-page .myslide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.platter-page .price-box {
    flex: 0 0 32%;
    width: calc(33% - 10px);
}

.platter-page::before {
    opacity: 0.3;
    z-index: -1;
}

.platter-page .overhead h1 {
    color: var(--dark-gray);
}

.iti {
    width: 100%;
    margin-bottom: 12px;
}

/*.phone-whats {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9993;
}*/

.phone-whats .whatsapp {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 9999;
}

.phone-whats .phone {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
}

.phone-whats .fixedIcons {
    background-color: var(--light-cream);
    border-radius: 50%;
    padding: 8px;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #29a71a;
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}

.phone-whats .fixedIcons img {
    width: 40px;
}

.d-v {
    display: block;
}

.m-v {
    display: none;
}

.floor-img-main .tab-pane {
    position: relative;
}

.frm-btn {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.price-icon span {
    width: 50%;
    text-align: left;
    background: var(--dark-gray);
}

.pop-up .modal-body {
    display: flex;
    flex-wrap: wrap;
}

.pop-up .modal-body .modal-img,
.pop-up .modal-body .pop-form {
    width: 50%;
}

.pop-form {
    padding-left: 15px;
}

.pop-up .modal-body .modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-up .modal-dialog {
    max-width: 900px;
}

@media only screen and (min-width: 900px) {
    .my-nav.navbar-hover .collapse ul li {
        position: relative;
        margin: 0 11px;
    }
    .my-nav.navbar-hover .collapse ul li:hover>ul {
        display: block
    }
    .my-nav.navbar-hover .collapse ul ul {
        position: absolute;
        top: 90%;
        left: 0;
        display: none
    }
    .my-nav.navbar-hover .collapse ul ul ul {
        position: absolute;
        top: 0;
        left: 100%;
        display: none
    }
}

@media(max-width: 1500px) {
    .banner .carousel img {
        height: 100vh;
    }
    .banner-text {
        width: 40%;
    }
    .banner-loc p {
        font-size: 16px;
    }
    .banner-inner-loca span {
        width: 15%;
    }
    .banner-text .project-name {
        font-size: 33px;
        margin-bottom: 20px;
    }
    .banner-text .banner-typo {
        letter-spacing: 2px;
        font-size: 20px;
    }
    .key-high {
        margin: 22px 0;
    }
    .banner-loc {
        margin-bottom: 17px;
    }
    .over-text p {
        font-size: 17px;
    }
    .price-list .overhead h1 {
        margin-bottom: 60px;
    }
    .amenities .ami-main-box .ami-box .img-icon {
        padding: 45px;
    }
    .amenities .ami-main-box .ami-box img {
        max-width: 53%;
    }
    .amenities .ami-main-box .ami-box h2 {
        font-size: 24px;
    }
    .amenities .overhead h1 {
        margin-bottom: 0;
    }
    .location,
    .price-list,
    .overview,
    .floor-plan,
    .gallery {
        padding: 70px 0;
    }
    .loc-box {
        padding: 10px;
    }
    .location .overhead h1 {
        margin-bottom: 50px;
    }
    .loc-text h1 {
        font-size: 24px;
    }
    .footer .over-head h1 {
        margin-bottom: 15px;
        font-size: 25px;
    }
    .contact-us-ul li p {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .form_inner .form-group input,
    .form-btn {
        height: 40px;
    }
    .overview h1 {
        font-size: 38px;
        line-height: 53px;
    }
    .overview .overhead p {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .over-1 h2 {
        font-size: 41px;
    }
    .over-1 {
        margin-top: 54px;
        padding-bottom: 25px;
    }
    .price-box .typo h1 {
        font-size: 25px;
    }
    .footer-form {
        margin: auto;
        padding: 31px;
        max-width: 92%;
    }
    .location .container {
        max-width: 90%;
    }
    .form_inner input {
        height: 43px;
    }
    .m-site-about-img {
        height: 400px;
    }
    .flip-box {
        width: 207px;
        height: 218px;
        margin: 10px 10px 58px 10px;
    }
    .img-icon {
        padding: 50px;
        margin: 23px 0;
    }
    .location-text-main {
        display: grid;
        align-items: center;
    }
    .mid-text {
        padding: 0 50px;
    }
    .devloper-logo {
        max-width: 95px;
    }
    .footer .over-head p {
        font-size: 15px;
        line-height: 29px;
    }
}

@media(max-width: 1400px) {
    .devloper-logo {
        max-width: 85px;
    }
    .amenities .ami-main-box .ami-box {
        width: 32%;
    }
    .footer-head h1 {
        font-size: 19px;
    }
    .form-txt h1 {
        font-size: 30px;
    }
    .amenities .overhead h1 {
        font-size: 29px;
        line-height: 40px;
    }
    .flip-box {
        width: 197px;
        height: 105px;
    }
    .over-img img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    .typo-out {
        margin: 30px 0;
    }
    .typo-out::before,
    .typo-out::after {
        height: 80%;
    }
    .img-icon {
        padding: 20px;
        margin: 10px 0;
    }
    .amenities .img-icon img {
        max-width: 42%;
    }
    .flip-box-back h2 {
        font-size: 18px;
    }
    .flip-box-front h2 {
        font-size: 23px;
    }
    .loc-num h1 {
        width: 33px;
        height: 33px;
        font-size: 18px;
    }
    .loc-num {
        margin-right: 8px;
    }
    .location-img {
        padding: 0px;
    }
    .form_inner .form-group {
        margin-bottom: 12px;
    }
}

@media(max-width: 768px) {
    .location-img {
        padding: 0;
    }
    .over-img img {
        height: 100%;
    }
    .gallery-btn {
        width: 78%;
    }
    .my-nav {
        position: relative;
        background-color: var(--dark-gray);
    }
    .nav-fixd {
        position: fixed;
    }
    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255 / 100%);
    }
    .navbar-light .navbar-toggler-icon {
        filter: invert();
    }
    .devloper-logo {
        max-width: 66px;
    }
    .banner::before {
        background: unset;
        content: unset
    }
    .banner .carousel-control-next,
    .banner .carousel-control-prev {
        width: 10%;
        height: 14%;
        top: 82%;
        left: 10px;
    }
    .banner .carousel-control-next {
        left: 15%;
    }
    .banner .carousel img {
        height: 218px;
        object-fit: cover;
    }
    .my-nav-in {
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
        background: var(--dark-gray);
    }
    .banner-text {
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        transform: unset;
        color: #000;
        padding: 10px;
        margin-bottom: 20px;
    }
    .banner-inner-loca span {
        background: var(--drk-down);
    }
    .banner-inner-loca img {
        filter: invert();
        margin: 0 13px;
    }
    .banner-text .project-name {
        font-size: 24px;
        margin-bottom: 14px;
        letter-spacing: 1px;
        color: var(--drk-down);
    }
    .banner-loc {
        margin-bottom: 14px;
    }
    .banner-text .banner-typo {
        letter-spacing: 1px;
        font-size: 20px;
        margin-bottom: 14px;
    }
    .key-high ul {
        list-style-type: circle;
        padding-left: 68px;
    }
    .key-high ul li {
        max-width: 60%;
        width: 59%;
        font-size: 16px;
        text-align: left;
    }
    .price-bann h2 {
        padding: 8px 24px;
        letter-spacing: 2px;
        font-size: 21px;
    }
    .form-box {
        position: relative;
        width: 100%;
    }
    .top_form {
        position: relative;
        top: 0;
    }
    .key-high {
        margin: 13px 0;
    }
    .overview {
        margin-top: 50px;
    }
    .overview::before {
        background-position: left;
    }
    .overhead {
        text-align: center;
    }
    .overview .overhead p {
        font-size: 16px;
        margin-bottom: 2px;
    }
    .overview h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .over-text {
        margin-top: 15px;
        padding-left: 15px;
        line-height: unset;
        text-align: center;
    }
    .mid-text {
        padding-left: 0px;
        padding: 0px 40px;
    }
    .over-text p {
        font-size: 18px;
        margin-bottom: 11px;
    }
    .over-1 {
        margin-top: 25px;
        padding-bottom: 25px;
    }
    .highlight .overhead {
        border-right: unset;
    }
    .highlight .overhead p,
    .price-list .overhead p,
    .amenities .overhead p,
    .floor-plan .overhead p,
    .location .overhead p {
        font-size: 26px;
        margin-bottom: 2px;
    }
    .highlight .overhead h1,
    .price-list .overhead h1,
    .floor-plan .overhead h1,
    .location .overhead h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .high-box {
        flex: 0 0 calc(100% - 0px);
        width: calc(100% - 0px);
        margin: 0px;
        align-items: flex-start;
        margin-bottom: 20px;
        border-bottom: 1px solid #ffffff2b;
    }
    .high-box:nth-child(1)::before,
    .high-box:nth-child(4)::before {
        content: unset;
    }
    .high-main {
        margin-top: 26px;
    }
    .high-icon img {
        max-width: 34px;
    }
    .cnter-line {
        display: none;
    }
    .high-text h1 {
        font-size: 18px;
    }
    .high-text p {
        font-size: 17px;
    }
    .floor-key ul li span {
        width: auto;
    }
    .price-box {
        margin-bottom: 30px;
    }
    .ami-bg {
        order: -1;
    }
    .amenities .overhead h1 {
        font-size: 18px;
        line-height: 30px;
    }
    .bounce-inner {
        padding: 45px 36px;
        /* border-radius: 172px 172px 172px 172px; */
        margin: 22px 0;
    }
    .amenities .ami-main-box {
        padding: 36px 0;
    }
    .amenities .ami-main-box .ami-box {
        width: 50%;
    }
    .mt_ami {
        margin-top: 0;
    }
    .amenities .ami-main-box .ami-box img {
        max-width: 40%;
    }
    .amenities .ami-main-box .ami-box .img-icon {
        padding: 19px;
        margin: 5px;
    }
    .amenities .ami-main-box .ami-box h2 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .flip-box {
        width: 139px;
        height: 136px;
        margin: 10px 10px 19px 10px;
    }
    .img-icon {
        padding: 26px;
    }
    .flip-box-front h2 {
        letter-spacing: 1px;
        font-size: 16px;
    }
    .flip-box-back {
        padding: 0 7px;
    }
    .flip-box-back h2 {
        font-size: 15px;
    }
    .ami-backgorund {
        height: 29%;
    }
    .floor-text-main {
        padding-right: 0px;
    }
    .floor-img-main .nav {
        margin-bottom: 25px;
        justify-content: space-between;
        border-top: 1px solid #bf9d6d63;
        padding-top: 7px;
    }
    .floor-img-main .nav-item .nav-link {
        margin-right: 0px;
    }
    .floor-key {
        display: flex;
        justify-content: center;
    }
    .floor-key ul li:nth-child(1),
    .floor-key ul li:nth-child(2) {
        display: none;
    }
    .location .container {
        max-width: 100%;
    }
    .loc-box {
        padding: 12px;
        width: 100%;
        margin: 0px 0px;
        margin-top: 20px;
    }
    .loc-num {
        margin-right: 12px;
    }
    .loc-text h1 {
        font-size: 20px;
    }
    .loc-num h1 {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .main-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-column-start: 1;
    }
    .gallery-box.box1 {
        grid-area: 1 / 1 / 2 / 5;
    }
    .gallery-box.box2 {
        grid-area: 2 / 1 / 3 / 3;
    }
    .gallery-box.box3 {
        grid-area: 2 / 3 / 3 / 5;
    }
    .gallery-box.box4 {
        grid-area: 3/ 1/4/3;
    }
    .gallery-box.box5 {
        grid-area: 3/ 3/4/5;
    }
    .gallery .overhead p {
        font-size: 24px;
        margin-bottom: 2px;
    }
    .gallery .overhead h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .footer .container,
    .small-footer .container {
        max-width: 100%;
    }
    .footer {
        padding: 70px 0;
    }
    .footer-form {
        padding: 18px;
        max-width: 100%;
    }
    .contact-us-ul li .contact-details-icon {
        min-width: 60px;
    }
    .footer-head h1 {
        font-size: 17px;
        letter-spacing: 1px;
    }
    .mobile-section {
        display: inline-flex;
        z-index: 9;
        background: var(--light-cream);
        justify-content: space-around;
    }
     
    .mobile-section a {
        background: var(--brwon);
        color: #000;
        margin: 5px;
        font-size: 13px;
        padding: 8px;
        width: 100%;
    }
    .nav-content {
        margin-bottom: 20px;
    }
    .small-footer {
        padding-bottom: 60px;
    }
    .location-img img {
        height: 254px;
    }
    .gallery-box,
    .gallery-box img {
        height: 87px;
    }
    .home-page .form-box {
        position: fixed;
        right: -80%;
        width: 80%;
    }
    .home-page .carousel img {
        height: 100vh;
        object-fit: cover;
    }
    .over-1 h2 {
        font-size: 30px;
    }
    .home-page::before {
        content: '';
        background: linear-gradient(180deg, rgb(35 34 31 / 70%) 0%, rgb(0 0 0 / 43%) 100%);
    }
    .home-page .banner-text {
        top: 30%;
        color: #fff;
        position: absolute;
    }
    .home-page .carousel-control-next,
    .home-page .carousel-control-prev {
        width: 11%;
        height: 8%;
    }
    .home-page-over {
        margin-top: 0;
    }
    .home-page-platter .owl-nav {
        text-align: center;
    }
    .testimonial {
        padding: 70px 0;
    }
    .testimonial .overhead p {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .testimonial .overhead h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .testimonial .overhead {
        margin-bottom: 40px;
    }
    .dropdown,
    .dropleft,
    .dropright,
    .dropup {
        text-align: center;
    }
    .dropdown-item {
        text-align: center;
    }
    .m-site-about-img {
        height: 400px;
    }
    .contact-detail {
        margin-top: 0;
    }
    .platter-page .price-box {
        flex: 0 0 100%;
        width: calc(100% - 10px);
    }
    .platter-page {
        margin-top: 50px;
    }
    .contact-us-ul li {
        width: 27%;
    }
    .footer .contact {
        text-align: center;
    }
    .amenities .img-icon img {
        max-width: 60%;
    }
    .location,
    .price-list,
    .overview,
    .floor-plan,
    .gallery,
    .highlight {
        padding: 58px 0;
    }
    .price-list .overhead h1 {
        margin-bottom: 40px;
    }
    .d-v {
        display: none;
    }
    .m-v {
        display: block;
    }
    .pop-up .modal-body .modal-img,
    .pop-up .modal-body .pop-form {
        width: 100%;
    }
    .desktop-contact {
    margin-left: 15px;
}

.desktop-contact img {
    vertical-align: middle;
}

@media(max-width: 768px) {
    .desktop-contact {
        display: none !important;
    }
}
}
 .whatsapp-sticky{
    position: fixed;
    bottom: 120px; /* increase spacing from footer */
    right: 20px;
    width: 340px;
    z-index: 9999999; /* higher than footer overlay */
    cursor: pointer;
}

.whatsapp-sticky img{
    width: 100%;
    height: auto;
    display: block;
}

@media(max-width:768px){
    .whatsapp-sticky{
        width:260px;
        bottom:150px;
        right:10px;
    }
}

.overview-section-new {
    padding: 70px 0;
    background: #fafafa;
}

.overview-left-new h4 {
    font-size: 28px;
    font-weight: 600;
    color: #363636;
    margin-bottom: 10px;
}

.overview-left-new h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.overview-left-new p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.overview-left-new .overview-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px 22px;
    background: #1C2D37;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.overview-left-new .overview-btn img {
    width: 22px;
    margin-left: 8px;
}

@media(max-width: 768px) {
    .overview-btn {
        margin-bottom: 20px !important;
    }
}

.highlight-img-section img {
    width: 100%;
    border-radius: 10px;
}

.highlight-section-new {
    padding: 10px 0;
    background: #ffffff;
}

.section-head {
    font-size: 28px;
    color: #363636;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-head-para {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.highlight-img-new img {
    width: 100%;
    border-radius: 10px;
}

@media(max-width: 768px) {
    .highlight-img-new img {
        margin-bottom: 20px !important;
    }
}


.highlight-text-new .high-points-new {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
}

.highlight-text-new .high-points-new img {
    width: 22px;
    margin-right: 10px;
    margin-top: 4px;
}

.highlight-text-new .high-points-new p {
    font-size: 17px;
    color: #444;
    margin: 0;
}

.high-view-more {
    display: inline-flex;
    align-items: center;
    background: #1C2D37;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
}

.high-view-more img {
    width: 33px;
    margin-left: 17px;
}

.desktop-contact .nav-link-custom {
    background: #25d366; 
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.unit-box {
    background: #e7e2d4;
    width: 100%;
    max-width: 380px;
    margin: 40px auto;
    border-radius: 12px;
    position: relative;
    padding-top: 40px;
}

.unit-tab {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2b33;
    padding: 10px 50px;   /* Increased left & right padding */
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 4px solid #fff;
    white-space: nowrap;  /* Prevent text from breaking */
}

.unit-body {
    padding: 25px 25px 35px;
    text-align: center;
}

.unit-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1e2b33;
    margin-bottom: 20px;
}

.unit-details {
    text-align: center;
    margin: 0 auto;
    max-width: 260px;
    border-top: 1px solid #c7c2b5;
    padding-top: 20px;
}

.unit-details p {
    font-size: 18px;
    margin: 8px 0;
    color: #1e2b33;
}

.unit-details span {
    font-weight: 700;
}

.unit-btn {
    margin-top: 25px;
    background: #1e2b33;
    border: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.unit-btn:hover {
    background: #0f181d;
}

<style>
    /* Smaller image on desktop */
    .plan-box img {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        display: block;
    }

    @media (min-width: 1200px) {
        .plan-box img {
            max-width: 650px;
        }
    }

    /* Active button - use website primary color */
    .floor-plan-sec .btn-outline-primary.active-btn {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    
.mobile-section {
    display: none;
}

/* Show only on Mobile */
@media (max-width: 768px) {
    .mobile-section {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        background: var(--light-cream);
        z-index: 9999;
        padding: 6px 5px;
    }

    .mobile-section a {
        background: var(--brwon);
        color: #000;
        margin: 5px;
        font-size: 12.7px;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    body {
        padding-bottom: 70px; /* prevent content hiding */
    }
}
</style>

<style>
.price-bann {
    text-align: center;
    margin-top: 20px;
}

/* Highlight Price Box */
.price-highlight {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 20px;
    display: inline-block;
    background: #dbc37a;
    color: #000;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Grid Layout */
.price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Individual Boxes */
.price-item {
    padding: 8px 20px;
    background: #dbc37a;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hover Effect */
.price-item:hover {
    background: #000;
    color: #dbc37a;
}
</style>
<style>
/* Navbar Background */
.my-nav {
    background: #2d2d2d;
    padding: 15px 0;
}

/* Menu Links */
.my-nav .nav-link {
    color: #fff !important;
    margin: 0 12px;
    font-weight: 500;
}

/* Small blue phone near logo (desktop) */
.desktop-small-call {
    color: #1e88ff;
    font-size: 16px;
    margin-left: 10px;
}

/* Big Green Call Button (Desktop) */
.green-call-btn {
    background: #2ecc71;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hide mobile call on desktop */
.mobile-cta {
    display: none;
}

/* ===========================
   MOBILE DESIGN
=========================== */

@media (max-width: 767px) {

    /* Hide desktop elements */
    .desktop-contact,
    .desktop-small-call {
        display: none !important;
    }

    /* Show mobile round call */
    .mobile-cta {
        display: block;
        margin: 0 10px;
    }

    .call-btn {
        width: 38px;
        height: 38px;
        background: #000;
        color: #ff7a00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* ===== LOCATION INFO SECTION ===== */
.location-info-section {
    padding: 80px 0;
    background: #f5f3ee;
    position: relative;
}

.location-info-section .container {
    max-width: 900px;
}

/* Each block */
.info-block {
    padding: 40px 0;
}

/* Heading area */
.info-heading {
    margin-bottom: 18px;
}

/* Small tag above heading */
.info-tag {
    display: inline-block;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: BarlowCondensed-Medium;
}

/* Main heading */
.info-heading h2 {
    font-size: 30px;
    color: #1e2b33;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: BarlowCondensed-Medium;
}

/* Gold underline */
.heading-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34);
    border-radius: 4px;
    margin-bottom: 5px;
}

/* Paragraph */
.info-block p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    font-family: BarlowCondensed-Regular;
    letter-spacing: 0.6px;
    text-align: justify;
}

/* Divider between blocks */
.info-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #bd9a68, transparent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .location-info-section {
        padding: 50px 0;
    }

    .info-heading h2 {
        font-size: 22px;
    }

    .info-block p {
        font-size: 16px;
    }

    .info-block {
        padding: 28px 0;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: #1e2b33;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(images/skyline.png);
    background-size: cover;
    background-position: bottom;
    opacity: 0.05;
    z-index: 0;
}

.faq-section .container {
    max-width: 860px;
    position: relative;
    z-index: 1;
}

/* Overhead */
.faq-overhead {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-family: BarlowCondensed-Medium;
}

.faq-overhead h2 {
    font-size: 34px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: BarlowCondensed-Medium;
}

.faq-overhead p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.faq-heading-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34);
    border-radius: 4px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(189, 154, 104, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active,
.faq-item:hover {
    border-color: #bd9a68;
}

/* Question Row */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 15px;
}

.faq-question h3 {
    font-size: 17px;
    color: #fff;
    font-family: BarlowCondensed-Medium;
    letter-spacing: 0.6px;
    margin: 0;
    line-height: 1.4;
}

.faq-item.active .faq-question h3 {
    color: #d4a84b;
}

/* Plus / Minus Icon */
.faq-icon {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(189, 154, 104, 0.15);
    border: 1px solid #bd9a68;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd9a68;
    font-size: 13px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34);
    color: #000;
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-family: BarlowCondensed-Regular;
    margin: 0;
    border-top: 1px solid rgba(189, 154, 104, 0.2);
    padding-top: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-overhead h2 {
        font-size: 24px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-question {
        padding: 15px 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 15px;
    }
}


.amenities > .container > .text-center h2{
    color: #fff;
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: capitalize;
}

@media(max-width:768px){
    .amenities > .container > .text-center h2{
        font-size: 26px;
        line-height: 36px;
    }
}
</style>

