.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 90px;
}

.navbar {
    padding: 5px 0;

}

.nav-item .nav-link {
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
    padding: 0 25px !important;
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: end;
    background: rgba(25, 21, 21, 0.6);
    padding-bottom: 150px;
    z-index: 2;
}

.banner-text p {
    font-size: 25px;
    margin-bottom: 55px;
}

.banner-text h1 {
    font-size: 65px;
    font-weight: 500;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 30px;
    margin-top: 25px;
    background: #00000005;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-card p {
    margin-bottom: 0;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    background: linear-gradient(0deg, rgba(189, 131, 42, 1) 0%, rgba(219, 177, 62, 1) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
}

.rera-sec {
    margin-top: 70px;


}

.rera-sec p {
    padding: 10px 25px;
    display: inline-block;
    border-radius: 50px;
    --blue: #3AB4F2;
    --blue-glow: rgb(20 172 217 / 87%);
    background: linear-gradient(to right, #3AB4F2, #00A8CC);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    transition: 0.3s ease-in;
}

.rera-sec:hover p {
    box-shadow: 0 0 0 1px rgb(143 231 255), 0 8px 24px rgb(12 170 212), inset 0 1px 0 rgba(0, 204, 255, 0.35);
}

.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 21, 21, 0.6);
    /* opacity: 0.3; */
    z-index: 1;
}

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 250.625em;
    height: 23.8em;
    background: url(../images/overaly-layer.png) 0 100% repeat-x;
    -webkit-animation: cloudLoop 80s linear infinite;
    animation: cloudLoop 80s linear infinite;
    z-index: 2;
    pointer-events: none;
    height: 43.75em;
}

@-webkit-keyframes cloudLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0)
    }
}

@keyframes cloudLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0)
    }
}

.footer {
    background: var(--black);
    padding-top: 50px;
    padding-bottom: 170px;
}

.copyright-sec {
    padding: 25px 0;
    border-top: 1px solid #ffffff61;
}

.glow-button {
    --blue: #3AB4F2;
    --blue-glow: rgb(20 172 217 / 87%);
    background: linear-gradient(to right, #3AB4F2, #00A8CC);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 75px;
    z-index: 999;

    /* Initial box-shadow setup */
    box-shadow: 0 0 0 1px rgb(143 231 255), 0 8px 24px rgb(12 170 212), inset 0 1px 0 rgba(0, 204, 255, 0.35);

    /* Animation applied to the box-shadow (glow) */
    animation: glow-animation 1.5s ease-in-out infinite;
    display: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.glow-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.6),
        0 12px 32px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(0, 217, 255, 0.45);
}

/* Glow animation to make it breathe */
@keyframes glow-animation {
    0% {
        box-shadow: 0 0 0 1px rgb(143 231 255), 0 8px 24px rgb(12 170 212), inset 0 1px 0 rgba(0, 204, 255, 0.35);
    }

    50% {
        box-shadow: 0 0 12px 4px rgb(143 231 255), 0 12px 48px rgb(20 172 217), inset 0 1px 0 rgba(0, 204, 255, 0.55);
    }

    100% {
        box-shadow: 0 0 0 1px rgb(143 231 255), 0 8px 24px rgb(12 170 212), inset 0 1px 0 rgba(0, 204, 255, 0.35);
    }
}

.aurezza-logo img {
    height: 90px;
}

.aurezza-logo {
    margin-bottom: 25px;
}

.aurezza-block p {
    color: #ffffff61;
}

.aurezza-block {
    margin-bottom: 35px;
}

.godrej-block {
    padding: 35px;
    border: 1px solid #ffffff61;
    border-radius: 30px;
}

.footer h4 {
    color: #3AB4F2;
    margin-bottom: 15px;
}

.footer .call-ul li a {
    color: #ffffff61;

}

.footer .call-ul li a i {
    color: #3AB4F2;

}

.footer .call-ul li {
    margin-bottom: 5px;
}

.visit-form {
    position: fixed;
    z-index: 999;
    bottom: 120px;
    right: 75px;
    background: var(--primary-color);
    /* background: #fff; */
    padding: 35px;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-width: 450px;
    border-bottom: 5px solid #3AB4F2;
    transition: 0.3s ease-in-out;
}

.visit-form h2 {
    font-size: 25px;
    color: var(--primary-color);
}

.visit-form form label {
    color: #ffffff;
}

.visit-form form label span {
    color: rgb(255 91 91);
}

.visit-form form input,
.visit-form form select {
    height: 50px;
    border-radius: 50px;
    background-color: #e8faff;
    border: 1px solid #ffffff00;
}

.visit-form form input:focus,
.visit-form form select:focus {
    border: 1px solid #3AB4F2;
    background-color: #e8faff;
    box-shadow: none;
}

.whatsapp-btn {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    background: #25D366;
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 10px;
}

.visit-form form .btn {
    padding: 10px 25px;
    /* background: linear-gradient(0deg, rgba(189, 131, 42, 1) 0%, rgba(219, 177, 62, 1) 100%); */
    /* background: var(--primary-color); */
    background: linear-gradient(to right, #3AB4F2, #00A8CC);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
}

.visit-form.hidden {
    opacity: 0;
    visibility: hidden;
}

.config-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.config-bx {
    width: 32.5%;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    background: radial-gradient(circle at 20% 30%, #f4f0e4 0%, transparent 40%), radial-gradient(circle at 70% 40%, #edf8ff 0%, transparent 50%), radial-gradient(circle at 60% 80%, #fff 0%, transparent 50%), radial-gradient(circle at 30% 70%, #ffff 0%, transparent 50%), radial-gradient(circle at 80% 20%, #fff 0%, transparent 50%);
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #4d4d4d11;
    align-items: center;
}

.config-bx img {
    width: 45px;
}

.config-bx h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.left-card {
    padding-right: 45px;
}

.left-card img {
    border-radius: 30px;
}

.floor-plan-img {
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 25px;
    margin-right: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.floor-plan-img img {
    filter: blur(5px);
    height: 400px;
    transition: 0.3s ease-in;
}

.bg-light-blue {
    background: #d7f3ff;
}

.call-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 25px;
    background: var(--primary-color);
    border-radius: 50px;
    color: #fff;
    width: max-content;
    font-weight: 600;
    text-align: center;
}

.floor-plan-text {
    padding-bottom: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    border-radius: 0 0 15px 15px;
    padding-top: 25px;
    color: #fff;
}

.floor-plan::before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    height: 80%;
    bottom: -1px;
    left: 0;
}

.gallery-text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 999;
}

.gallery-sec .gallery-img {
    height: 100dvh;
    overflow: hidden;
}

.gallery-sec .gallery-img img {
    height: 100%;
    object-fit: cover;
}

.galley-text-box {
    background: #000000c9;
    padding: 70px 35px;
    height: 100dvh;
}

.galley-text-box p {
    font-size: 18px;
}

.amen-box {
    padding: 25px;
    border: 1px solid #fff;
    text-align: center;
    margin-top: 25px;
    border-radius: 10px;
    transition: 0.3s ease-in;
}

.amen-box:hover {
    transform: translateY(-15px);
}

.amen-box h3 {
    font-size: 16px;
    margin-bottom: 0;
}

.amen-box img {
    width: 50px;
    margin-bottom: 15px;
    filter: invert(1);
}

.location-ul li {
    font-size: 20px;
    padding: 10px 25px;
    background: #e8faff;
    margin-top: 10px;
    border-radius: 50px;
    border: 1px solid #e8faff;
    transition: 0.3s ease-in;
}

.location-ul li:hover {
    border: 1px solid var(--primary-color);
}

.location-ul li i {
    color: var(--primary-color);
}

.gallerySwiper2 .swiper-button-prev,
.gallerySwiper2 .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    background: #ffffffaf;
}

.gallerySwiper2 .swiper-button-prev:after,
.gallerySwiper2 .swiper-button-next:after {
    font-size: 20px;
    color: var(--primary-color);

}

.head-img img {
    width: 40px;
    margin-bottom: 15px;
}

.lotus-bg {
    width: 30%;
    right: -15%;
    top: 0;
}

.lotus-bg img {
    filter: brightness(150);
    opacity: 0.8;
}

.lotus-bg2 img {
    filter: unset;
    opacity: 0.2;
}

.why-bx img {
    width: 50px;
    margin-bottom: 15px;
    transition: 0.3s ease-in;
}

.why-bx {
    text-align: center;
    padding: 25px;
    background: #ffffff8a;
    border-radius: 20px;
}

.why-bx:hover img {
    transform: rotate(360deg);
}

.why-bx h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.lotus-bg3 {
    left: 0;
    right: unset;
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
        /* Adjust the zoom level */
    }

    100% {
        transform: scale(1);
    }
}

.banner-img img {
    animation: zoomin 25s infinite;
    /* 5s duration for one cycle, infinite loops */
    transform-origin: center;
    /* Keeps the zoom effect centered */
}

header {
    position: fixed;

    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header.sticky {
    background: #ffffff;

    position: fixed;
    /* box-shadow: 0 4px 4px #00000040; */
    backdrop-filter: blur(5px);
}

.banner {
    margin-top: 70px;
}

.fp-box {
    transition: 0.3s ease-in;
}

.fp-box:hover {
    transform: translateY(-15px);
}

.fp-box:hover img {
    transform: scale(1.5);
}

.modal-form-img {
    background: url("../images/4_background1.webp")no-repeat center;
    background-size: cover;
}

.modal-body {
    padding: 0;
}

.modal-form .btn-close {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 45px;
    width: 45px;
    background-color: #ffffff;
    color: #fff;
    text-shadow: none;
    opacity: 0.8;
    filter: invert(1);
    border-radius: 0;
}

.modal-form {
    padding: 30px;
}

.modal-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-form form input,
.modal-form form textarea {
    height: 46px;
    border-radius: 0;
}

.modal-form form input.form-check-input {
    height: 1em;
}

.modal-form form button {
    --blue: #3AB4F2;
    --blue-glow: rgb(20 172 217 / 87%);
    background: linear-gradient(to right, #3AB4F2, #00A8CC);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;

}

.form-check-label {
    font-size: 12px;
}

.form-check-input:checked {
    background-color: #00A8CC;
    border-color: #00A8CC;
}

.scheme-no {
    line-height: 0;
    position: relative;
}
.scheme-num{
    position: relative;padding: 10px;background: #d7f3ff;display: inline-block;    font-size: 100px;
    font-weight: 800;line-height: 1.2;padding-top: 0;

}.text-gradient{
   background: linear-gradient(0deg, rgba(189, 131, 42, 1) 0%, rgba(219, 177, 62, 1) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scheme-box::before {
    content: '';
    position: absolute;
    top: 37%;
    width: 60%;transform: translateX(-50%);
    height: 80px;
   border: 2px solid var(--primary-color);
    left: 50%;
}


/* .scheme-no::after {
    right: 0;
} */

.scheme-text {
    display: inline-block;
    background: var(--primary-color);
    font-weight: 700;
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;position: relative;
}
.head-img2 img{
    width: 100px;margin-bottom: 0;
}