@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root {
    --mainColor: #038bb3;
    --gradientBg: radial-gradient(circle at 80% -30%, #52a966, #038bb3);;
    
}

body {
  outline: none;
  word-spacing: 1px;
  text-decoration: none !important;
 font-family: 'Rajdhani', sans-serif;
 font-weight: 500;
 font-size: 18px;
}

a:hover {
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

.btn {
  /* border-radius: 0; */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
a{
  text-decoration: none;
}

img {
  max-width: 100%;
}
.btn {
    background: var(--gradientBg);
    color: #fff !important;
    /* border-radius: 50px; */
    font-size: 16px;
    padding: 6px 22px;
    border: 0;
    /* border: 2px solid #fff; */
    box-shadow: 0 10px 15px 0 rgba(0,0,0,.48);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn:hover, .btn:focus {
  background: var(--mainColor) !important;
}


.site-wrapper {
    margin-top: 71px;
}

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

.btn-lg {
    padding: 10px 35px;
    font-size: 18px;
}
.btn i {
    margin-right: 10px;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1,1)
    }

    50% {
        transform: scale(1.2,1.2)
    }

    100% {
        transform: scale(1,1)
    }
}

.zoomdiv {
    animation: zoom-in-zoom-out 1s ease infinite;
}

.call-btn {
    display: inline-block;
    background-color: #3fae26;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s,opacity .5s,visibility .5s;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff!important;
    font-size: 30px;
    border-radius: 100%;
    z-index: 9999;
    line-height: 1;
}

/*=== Home Banner ===*/
.home-banner {
    height: calc(100vh - 71px);
    position: relative;
}

.home-banner .carousel {
    height: 100%;
}

.home-banner .carousel-inner {
    height: 100%;
}

.home-banner .carousel-item {
    height: 100%;
}

.home-banner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content {
    position: absolute;
    bottom: auto;
    top: 0;
    background: rgba(38, 40, 43, 0.7);
    width: 100%;
    height: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.banner-box {
    /* background: rgba(00,00,00,0.5); */
    max-width: 100%;
    padding: 40px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
}

.banner-box h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 1px 1px 3px #4f4f4f;
    margin-bottom: 10px;
}

.banner-box h2 {
    color: #fff;
    font-size: 22px;
    text-shadow: 1px 1px 3px #4f4f4f;
    margin-bottom: 25px;
}

.banner-box p {
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 3px #4f4f4f;
    font-size: 18px;
    font-weight: 400;
    text-shadow: none;
}

.banner-box p.price {position: relative;display: inline-flex;flex-direction: column;height: 40px;padding: 0 15px 0 20px;color: #fff;border-radius: 0 10px 10px 0;background-color: #eda73a;line-height: 1;justify-content: center;font-weight: 600;margin: 0;}
.banner-box p.price::before, .banner-box p.price::after {
  position: absolute;
  content: "";
}
.banner-box p.price::before {
  left: -14.50px;
  width: 29px;
  height: 29px;
  transform: rotate(45deg);
  border-radius: 0 0 0 4px;
  background-color: #eda73a;
}
.banner-box p.price::after {
  z-index: 1;
  top: 50%;
  left: -10px;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) translateX(10px);
  border-radius: 3px;
  background-color: #fff;
}
.banner-box .act-btn {
    padding-top: 30px;
}

/*=== End Home Banner ===*/

.fixed-right-form {
    padding: 45px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .3);
    border-bottom: 5px solid #fff;
}

.fixed-right-form h2 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 20px;
}

.fixed-right-form .btn{
  width: 100%;
}

.sec-heading {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    display: block;
    text-align: center;
    max-width: max-content;
    margin: 0 auto 50px;
}

.sec-heading:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--mainColor);
    bottom: -10px;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
}
.sec-heading:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    bottom: -19px;
    border-color: var(--mainColor);
    border-radius: 0;
    border-width: 4px;
    border-style: solid;
    background: #fff;
    right: 0;
    margin: 0 auto;
    transform: rotate(45deg);
}

.garyBG {
    background: #f9f9f9;
}

.highlights-div {
    /* padding: 50px; */
    /* border-radius: 10px; */
    /* background: #fff; */
    position:relative
}



.highlights-div ul {
    padding: 0;
    margin: 0;
}

.highlights-div ul li {
    color: #fff;
    padding: 10px 25px;
    background: var(--gradientBg);
    margin: 0 0 10px;
    border-radius: 50px;
}

.highlights-div ul li:first-child {
    /* padding-top: 0; */
}

.highlights-div ul li:last-child {
}

.black-bg{
  background: #000;
}

.black-bg .sec-heading{
  color: #fff;
}


.amenities-box {
    /* background: #000; */
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.amenities-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-box .icon {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgb(122 122 122);
    margin: 15px 0;
}

ul.amenities-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
}

ul.amenities-list li {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0;
    padding: 0 10px
}

.amenities-box .txt {
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    padding: 5px 25px;
    background: var(--mainColor);
    border-radius: 50px;
    margin-top: -30px;
    display: block;
}

.floor-box {
    background: #fff;
    width: 230px;
    margin: 15px 0;
    height: 230px;
    position: relative;
    border: 1px solid var(--mainColor);
    border-radius: 100%;
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.floor-box h4 {
    background: var(--gradientBg);
    padding: 5px 20px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 100%;
    margin-bottom: 0;
    margin-top: -20px;
}

.floor-box h4 span {
    display: block;
    font-size: 16px;
    margin-bottom: 0;
}
.floor-box .image{
    height: 100%;
    display: block;
}

.floor-box .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}
.common-img-box{
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
    background: var(--gradientBg);
    padding: 8px;
}
.common-img-box img {
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    padding: 8px;
    border-radius: 100%;
}


footer {
  background: #111111;
  color: #f3f3f3;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

footer p a {
  font-weight: 400;
  color: #fff !important;
}
.closeRightForm {
    color: #fff;
    position: absolute;
    right: 25px;
    top: 25px;
}

.price-table .table>thead th {
    background: #000;
    color: #fff;
    white-space: nowrap;
}

.price-table .table td, .table th {
    white-space: nowrap;
}
.round-arrow.owl-carousel .owl-nav {
    display: block;
    text-align: center;
    margin-top: 35px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    display: inline-block;
    border: 0 solid #000;
    background: var(--gradientBg);
    border-radius: 5px;
    margin: 0 2px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    display: inline-block;
    border: 0 solid #000;
    background: var(--gradientBg);
    border-radius: 5px;
    margin: 0 2px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev i,.round-arrow.owl-carousel .owl-nav button.owl-next i {
    font-size: 21px;
    padding: 0!important;
    color: #fff;
    position: relative;
    top: 1px;
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: none;
}

.gallery-img {
    height: 230px;
    position:relative;
    width: 230px;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
}



.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enqModal .modal-content {
    max-width: 420px;
    margin: 0 auto;
    border: 0;
}

.owl-carousel .owl-stage {
    padding: 0 !important;
}
.mobile-inqury {
    display: none;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background: var(--mainColor);
    z-index: 99;
    padding: 0 10px;
}
.mobile-inqury a {
    margin: 0;
    border: 0;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    flex: 0 0 50%;
    text-align: center;
    border-right: 1px solid #fff;
}
.mobile-inqury a:last-child {border-right: 0;}
.enqModal .modal-content {
    /* background: #000; */
}

.enqModal h3 {
    color: #333;
    text-align: center;
    font-size: 16px;
}

.enqModal .logo {
    max-width: 150px;
    margin: 0 auto 5px;
}

.enqModal .modal-body {
    padding: 20px 30px 40px;
}
.enqModal .modal-header {
    background: var(--mainColor);
}

.enqModal .modal-header .modal-title {
    color: #fff;
    font-weight: 600;
}


.form-control {
    border: 0;
    border-bottom: 2px solid #c5c5c5;
    background: transparent !important;
    color: #000;
    border-radius: 0;
}

.form-control:focus {
    border: 0;
    box-shadow: none;
    border-bottom: 2px solid var(--mainColor);
    color: #000;
}

.input-group-text {
    border: 0;
    border-bottom: 2px solid #c5c5c5;
    background: transparent;
    color: var(--mainColor);
    border-radius: 0;
    padding: 0;
}

.btnClose {
    position: absolute;
    right: 15px;
    color: #000;
    font-size: 23px;
    top: 15px;
}
.about-logo {
    max-width: 180px;
    margin-bottom: 15px;
}
@media(max-width:991px){
  body {
    padding-bottom: 51px;
}
  .enqModal .modal-body {
    padding: 30px;
}
  .call-btn {
    display: none;
}
  .mobile-inqury {
    display: flex;
}
  .site-wrapper {
    margin-top: 56px;
}

.banner-box {
    padding: 0;
    /* text-align: center; */
    background: transparent;
    margin: 0 auto;
}

.home-banner {
    height: auto;
}

.banner-box h1 {
    font-size: 22px;
}

.banner-box h2 {
    font-size: 15px;
    margin-bottom: 10px;
}

.banner-box p.price {
    font-size: 17px;
}

.banner-content {
    background: #131313;
    position: static;
    padding: 25px 15px;
}

.sec-padding {
    padding: 30px 0;
}

.sec-heading {
    font-size: 30px;
    margin-bottom: 30px;
}

.common-img-box {
    margin: 15px auto;
    width: 250px;
    height: 250px;
}

.highlights-div {
    padding: 0;
}

ul.amenities-list li {
    flex: 0 0 50%;
    width: 50%;
    font-size: 12px;
}

.amenities-box {
    height: 100%;
}

.floor-box {
    height: 180px;
    margin: 15px auto 0;
    width: 180px;
}
.fixed-right-form {
    display: none;
}
.bottom-inq-form .col-md-4 {
    margin-bottom: 15px;
}

.bottom-inq-form .col-md-4:last-child {
    margin-bottom: 0;
}
.gallery-img {
    height: 200px;
    width: 200px;
}
.home-banner .carousel {
    height: 200px;
}

.banner-box p {
    font-size: 14px;
}
.amenities-box .icon {
    height: 120px;
    width: 120px;
}
.icon-box {
    border-top: 1px solid #cecece;
    padding: 25px;
}

.top-overview {
    padding: 0;
}

}

.pulseanimation {
    animation: pulse-cust 2s infinite;
}

@-webkit-keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
    }
}

@keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
    }
}

.price-box {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #C9C9C9;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 100%;
    width: 250px;
    height: 250px;
    margin: 0 auto 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-box p {
    margin-bottom: 5px;
    font-weight: 600;
    border-bottom: 1px dashed #888888;
    padding-bottom: 5px;
}

.price-box h4 {
    font-weight: 800;
    color: var(--mainColor);
}

.price-box .btn {
    margin-top: 15px;
}

.bottom-inq-form {
    background-image: url(../images/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
.bottom-inq-form:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(00,00,00,0.7);
    position: absolute;
    top: 0;
}

.bottom-inq-form .container{
    position: relative;
    z-index: 9;
}
@keyframes tada {
    from,to {
        transform: scale3d(1,1,1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
    }
}

.tada {
    animation-name: tada
}

.call-btn-phone{
    display: inline-block;
    background-color: var(--mainColor);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
    transition: background-color .3s,opacity .5s,visibility .5s;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff!important;
    font-size: 25px;
    border-radius: 100%;
    z-index: 9999;
    animation-name: tada;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    line-height: 1;
}



.top-overview {
    background: #000;
}

.icon-box .txt {
    color: #fff;
    font-weight: 600;
}
.icon-box {
    text-align: center;
}

.icon-box img {
    width: 60px;
    display: block;
    margin: 0 auto 10px;
    height: 60px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}

.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.bottom-contact {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}
.bottom-contact .form-control {
    background: #fff !important;
    border: 0 !important;
}

.bottom-contact .input-group-text {
    background: #fff;
    padding: 0 5px 0 14px;
    border: 0 !important;
}

@media(max-width:991px){
    .call-btn-phone {
    display: none;
}
}