@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    font-family: "Poppins", serif;
    letter-spacing: 1px;
  }


  :root{
    --main-color:#11226e;
    --sub-main-color:#ad7605;
    --black-color:#000;
    --wt-color:#fff;
    --grad-color: linear-gradient(242deg,rgba(187, 214, 226, 1) 0%, rgba(17, 34, 110, 1) 74%);
  }
  .sub-main-bg{
    background: var(--sub-main-color);
    color: var(--wt-color);
  }

  header{
    background: var(--wt-color);
  }
  footer .logo,
  header .logo{
    width: 200px;
  }
  .my-nav,
  .my-nav ul{
    flex-direction: row;
  }
  .my-nav ul li{
    padding: 8px;
  }
  .my-nav ul li a{
    text-decoration: none;
    color: var(--sub-main-color);
    font-weight: 400;
    position: relative;
  }
  .my-nav ul li a.active-line::after{
    content: " ";
    width: 0%;
    height: 2px;
    border-radius: 10%;
    background: var(--sub-main-color);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.6s all;
  }
  .my-nav ul li a.active-line:hover::after{
    width: 100%;
  }
  .my-nav ul li a.active-line:hover{
    color: var(--sub-main-color);
  }

 .menu-contect-us {
  padding: 10px;
  border-radius: 10px;
  color: var(--wt-color) !important;
  background: var(--sub-main-color);
  display: flex;
  gap: 5px;
  align-items: center; /* important for animation on <a> */
}

.menu-contect-us i{
  animation: ring 0.6s ease-in-out infinite;

}
.main-banner-slider{
  position: relative;
}

/* .banner{
  background: url(../images/d3.webp) center no-repeat;
  background-size: cover;
  position: relative;
  height: 90vh;
} */
 #main-slider .swiper-slide{
  position: relative;
 }
 #main-slider .swiper-slide img {
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease-in-out; /* smoother */
}

#main-slider .swiper-slide-active img {
  transform: scale(1.2); /* try smaller zoom first */
}
#main-slider .swiper-slide::after{
  content: " ";
  width: 100%;
  height: 100%;
  background: #00000041;
  position: absolute;
  left: 0;
  top:0;
}
.main-banner-form{
  width: 100%;
  height: 100%;
  background: #00000041;
  position: absolute;
  left: 0;
  top: 0;
}


.banner-form{
  width: 320px;
  position: absolute;
  right:0;
  top:30%;
  transform: translateY(-30%);
  background: var(--wt-color);
  /* padding: 15px; */
  border-radius: 10px;
  padding-bottom: 10px;
  z-index: 1;
}


.booking-open{
  background: var(--sub-main-color);
  color: var(--wt-color);
  border-radius: 10px 10px 0 0;

  
}
.booking-open h4{
  font-size: 14px;
}

.card-box{
  background-color: #eee;
  margin-bottom: 8px;
  margin-top: 4px;
  padding: 10px 15px;
}

.offer-text {
    display: block;
    font-size: 1vw !important;
    color: #fff;
    border: 2px dashed #fff;
    padding: 10px 5px;
}
 
.pro-tag-line {
  display: block;
  padding: .1vw .8vw;
  font-size: 14px;
  line-height: 1.4vw;
  color: #333;
  margin-top: 20px;
}
  .pro-price {
    padding: .1vw .8vw .3vw;
    font-size: 1.6vw;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 15px;
  }

.banner-form .form-header img{
  width: 150px;
}
.banner-form h3{
  font-size: 16px;
  margin: 10px 0;
  color: var(--sub-main-color);
  animation: shake 0.9s ease-in-out infinite;
}


.my-form-control{
  border:none;
  border-bottom: 1px solid #111111a1 ;
  padding: 10px;
  border-radius: 0;
}
.form-control:focus {
    color: var(--sub-main-color);
    background-color: #fff;
    border-color: var(--sub-main-color);
    outline: none;
    box-shadow: none;
}
.submit-btn{
  padding: 10px 20px;
  border: none;
  background: var(--sub-main-color);
  color: var(--wt-color);
  border-radius: 10px;
  /* animation: zoomInOut 2s infinite; */
}
.btn-cta {
    position: relative;
    overflow: hidden;
    animation: none !important;
}
.btn-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

/* .form-fs{
  font-size: 9px;
} */

.headings{
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--sub-main-color);
}
.common-text{
  font-size: 14px;
}
table{
  color: #212529;
  font-size: 14px;
  vertical-align: middle;
  /* width: 100%; */
}
.table-btn{
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}
.bg-tr{
  background: #e6e6e6;
}
.table-img .sub-main-bg{
      padding: .5vw;
      text-align: center;
      font-size: 14px;
}
 .at-property-overlayer {
    position: absolute;
    bottom: -100%;
    z-index: 111;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    transition: .5s ease-in-out;
}
.table-img:hover .at-property-overlayer{
    left: 0;
    bottom: 0;
    transition: .5s ease-in-out;
}
.at-property-btn {
    text-transform: uppercase;
    border: .1vw solid #e0e0e0;
    background: 0 0;
    border-radius: 0;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 222;
    transition: .5s ease-in-out;
}
.table-img:hover .at-property-btn {
    color: #e0e0e0;
    background: rgba(0, 0, 0, .7);
    top: 50%;
    transition: .8s ease-in-out;
}

.value-card{
  border-radius: 15px;
  box-shadow: 0px 0px 5px 3px #00000044;
  background: var(--wt-color);
  position: relative;
}

.value-card h4{
  font-weight: 700;
  font-size: 28px;
  margin-bottom: .5rem;
}
.value-card .area{
  font-size: 21px;
  font-weight: 400;
  color: var(--black-color);
  margin-bottom: .5rem;

}
.value-card .value-Request{
    font-size: 27px;
    font-weight: 700;
    color: var(--sub-main-color);
}
.value-card button{
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;

}

@media only screen and (max-width: 1200px){
  .value-card button{
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px){
.value-card button{
  font-size: 18px ;
}
}


#amenities-slider .swiper-slide .amenities-slider h5{
position: absolute;
bottom: 5px;
left: 0;
border-left: 4px solid var(--sub-main-color);
padding: 3px;
font-size: 10px;
color: var(--wt-color);
background:linear-gradient(270deg,rgba(187, 214, 226, 0) 0%, rgba(0, 0, 0, 1) 72%) ;
}


.map-iframe{
  border: 4px solid var(--sub-main-color);
  padding: 10px;
}

.vertical-tabs {
  width: 100%; /* full width */

}

.tab {
  border-bottom: 1px solid #ddd;
}

.tab:last-child {
  border-bottom: none;
}

.tab-link {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.tab-link:hover {
  background: #eee;
  color: var(--sub-main-color);
}

.arrow {
  transition: transform 0.3s ease;
}

.tab-link.active {
  color: var(--sub-main-color);
}
.tab-link.active .arrow {
  transform: rotate(90deg); /* rotate arrow when open */
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.tab-content.active {
  max-height: 300px; /* enough to fit content */
  padding: 15px;
}

.tab-link{
  background: var(--wt-color);
}

.tab .tab-content ul li{
  padding: 5px 0;
  padding-left: 25px;
  font-size: 14px;
  position: relative;
  color: #000;
}

.tab .tab-content ul li::after {
  content: "\f3c5"; /* correct way: add \ before Unicode */
  font-family: "Font Awesome 5 Free"; /* or "Font Awesome 6 Free" depending on your version */
  font-weight: 900; /* solid icons require 900 weight */
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--sub-main-color);
}

@media only screen and (min-width: 992px) {
    .at-property-btn {
        padding: .5vw .8vw;
        width: 73%;
    }
}

.menu-button{
  color: var(--black-color);
}
@media only screen and (max-width: 992px) {
  .my-nav{
    position: fixed;
    top: 0px;
    left: -5000px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: all 0.6s;
    z-index: 2;
  }

  .my-nav,
  .my-nav ul{
    flex-direction: column;
  }
  .banner-form{
    padding: 50px 0;
  }
  .banner-form,
  .main-banner-form{
    position: static;
    width: 100%;
    background-color: var(--wt-color);
    transform: translateY(0%);
  }
  .pro-price{
    font-size: 30px;
    display: block;
  }
  .table-img .at-property-overlayer {
    bottom: 0;
    left: 0;
  }
  .table-img .at-property-btn{
    color: #e0e0e0;
    background: rgba(0, 0, 0, .7);
    top: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .headings {
    font-size: 23px;
    text-align: left !important;
  }
}


footer{
  background: #ad750523;
  /* box-shadow: -10px 0px 100px 100px #ad750523; */
}

footer p {
    text-align: left;
    font-size: 9px;
    color: #323030;
}
.footerlinks span,
.footerlinks span a{
  color: #323030;
  font-size: 10px;
  text-decoration: none;
}


.modal-content {
    width: 400px;
    margin: 0 auto;
    border-radius: 14px;
}
 .modal-content h4 {
    font-weight: bolder;
    font-style: normal;
    color: #00000066;
}

.enquireNowBtn a {
    background: linear-gradient(195deg, #53d161, #23b73c);
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.enquireNowBtn a .whatsapp-img {
    width: 24px;
    margin-right: 4px;
}
.moder-or{
  color: #000;
  font-weight: 500;
  font-size: 18px;
}
.modal-body small{
  color: var(--black-color);
}

.shrink{
      position: fixed;
    width: 100%;
    z-index: 9999999;
    transition: all 0.6s ease;
    font-size: 1.1rem;
    font-weight: 500;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0px 15px 10px -15px #11111192;
}

.modal-backdrop {
  display: none !important;
}

.footer-fix{
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  
}


.call-btn{
  background: var(--sub-main-color);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--wt-color);  
}
.call-btn:hover{
  color: var(--wt-color);
}
.fix-whatsapp{
  background:linear-gradient(195deg, #53d161, #23b73c);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 10px;
 
}
.fix-whatsapp img{
  width: 100%;
}

@media only screen and (max-width: 576px){
  .footer-fix{
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 999;
  display: flex;
  width: 100%;
}
.fix-whatsapp,
.call-btn{
  width: 50%;
  height: 40px;
  border-radius: 0;
  display: flex;
  justify-content: center;
}
.fix-whatsapp img{
  width: 40px;
}
}
@keyframes shimmer {
  100% {
    left: 100%;
  }
}
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

@keyframes ring {
  0%   { transform: rotate(0); }
  15%  { transform: rotate(15deg); }
  30%  { transform: rotate(-15deg); }
  45%  { transform: rotate(10deg); }
  60%  { transform: rotate(-10deg); }
  75%  { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); } /* zoom in */
  100% { transform: scale(1); }   /* zoom out */
}