/* SIDEBAR */
.sidebar{
position:fixed;
top:0;
right:-300px;
width:300px;
height:100%;
background:#111;
padding:40px 20px;
display:flex;
flex-direction:column;
gap:20px;
transition:0.3s;
z-index:100;
}

.sidebar a{
color:white;
text-decoration:none;
font-size:16px;
}

.sidebar .close{
color:white;
font-size:22px;
cursor:pointer;
margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:900px){

.nav-links{
display:none;
}

.hamburger{
display:block;
}

.header{
padding:15px 20px;
}

.content h1{
font-size:1.6rem;
}
}
.mt-5{
	margin-top:5rem;
}
p {
    margin: 0 0 10px;
    font-size: 17px;
    font-family: math;
}
/* SECTION SPACING */
#highlights{
  padding:80px 0;
  align-items:center;
}

/* IMAGE STYLING */
#highlights img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  transition:0.4s ease;
}

#highlights img:hover{
  transform:scale(1.02);
}

/* CONTENT BOX */
.quality-cer{
  background:#fff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* HEADING */
.quality-cer h3{
  font-size:30px;
  font-weight:700;
  color:#111;
  margin-bottom:25px;
  line-height:1.4;
  font-family: math;
}

/* POINTS */
.quality-cer ul{
  padding:0;
  margin:0;
}

.quality-cer ul li{
  list-style:none;
  position:relative;
  padding-left:35px;
  margin-bottom:18px;
  font-size:16px;
  color:#555;
  line-height:1.7;
}

/* CUSTOM ICON */
.quality-cer ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  background:#07a1d1;
  color:#fff;
  border-radius:50%;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  transform: rotate(3deg);
}

/* BUTTONS */
.quality-cer .btn{
  padding:14px 28px;
  border-radius:40px;
  font-size:15px;
  font-weight:600;
  margin-right:12px;
  transition:0.3s ease;
}

/* PRIMARY BUTTON */
.quality-cer .btn-primary{
  background:#07a1d1;
  border:none;
}

/* HOVER EFFECT */
.quality-cer .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* SECTION */
.location-advantages{
  padding:80px 0;
  background:#07a1d1;
}

/* MAIN TITLE */
.location-advantages .section-title{
  text-align:left;
  font-size:25px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:30px;
  line-height:1.4;
}

/* IMAGE BOX */
.location-advantages img{
  width:100%;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.12);
  transition:0.4s ease;
}

.location-advantages img:hover{
  transform:scale(1.02);
}

/* CONTENT BOX */
.location-advantages ul{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  margin-bottom:25px;
}

/* SUB HEADING */
.location-advantages ul h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:30px;
  color:#111;
}

/* LIST ITEMS */
.location-advantages ul li{
  list-style:none;
  position:relative;
  padding-left:38px;
  margin-bottom:18px;
  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* CUSTOM ICON */
.location-advantages ul li::before{
  content:"📍";
  position:absolute;
  left:0;
  top:0;
  font-size:18px;
}

/* BUTTONS */
.location-advantages .btn{
  padding:14px 28px;
  border-radius:40px;
  font-size:15px;
  font-weight:600;
  margin-right:12px;
  transition:0.3s ease;
}

/* PRIMARY BUTTON */
.location-advantages .btn-primary{
  background:#0d6efd;
  border:none;
}

/* BUTTON HOVER */
.location-advantages .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* SECTION */
.gallery{
  padding:30px 0;
  background:#ffffff;
}

/* TITLE */
.gallery .section-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  color:#111;
  margin-bottom:50px;
  line-height:1.4;
}

/* TABLE WRAPPER */
.gallery .table{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border:none;
  margin-bottom:0;
}

/* TABLE HEADER */
.gallery .table thead{
  background:#07a1d1;
}

.gallery .table thead th{
  color:#fff;
  padding:22px 20px;
  font-size:17px;
  font-weight:600;
  border:none;
  text-align:center;
  background:#07a1d1;
}

/* TABLE BODY */
.gallery .table tbody tr{
  transition:0.3s ease;
}

.gallery .table tbody tr:hover{
  background:#f5f9ff;
  transform:scale(1.01);
}

/* TABLE CELLS */
.gallery .table tbody td{
  padding:20px;
  font-size:16px;
  color:#444;
  text-align:center;
  vertical-align:middle;
  border-color:#f1f1f1;
}

/* LINKS */
.gallery .table tbody td a{
  color:#07a1d1;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.gallery .table tbody td a:hover{
  color:#000;
}

/* STRIPED EFFECT */
.gallery .table-striped>tbody>tr:nth-of-type(odd){
  background-color:#fafafa;
}
/* SECTION */
.contact_wrapper{
  padding:30px 0;
  background:#ecf8fa;
  position:relative;
}

/* SECTION TITLE */
.contact_wrapper .section-title{
  text-align:center;
  font-size:38px;
  font-weight:700;
  color:#111;
  margin-bottom:60px;
  line-height:1.3;
}

.contact_wrapper .section-title small{
  display:block;
  font-size:16px;
  color:#666;
  margin-top:12px;
  letter-spacing:2px;
}

/* FORM BOX */
.contact_form{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* LABELS */
.contact_form .control-label{
  font-size:15px;
  font-weight:600;
  color:#222;
  margin-bottom:10px;
}

/* INPUTS */
.contact_form .form-control{
  height:55px;
  border-radius:14px;
  border:1px solid #ddd;
  box-shadow:none;
  padding:12px 18px;
  font-size:15px;
  transition:0.3s ease;
}

/* TEXTAREA */
.contact_form textarea.form-control{
  height:130px;
  resize:none;
  padding-top:15px;
}

/* FOCUS EFFECT */
.contact_form .form-control:focus{
  border-color:#0d6efd;
  box-shadow:0 0 0 4px rgba(13,110,253,0.1);
}

/* BUTTON */
.contact_form .btn{
  height:55px;
  border-radius:50px;
  background:linear-gradient(135deg,#0d6efd,#0056d6);
  border:none;
  font-size:16px;
  font-weight:600;
  transition:0.3s ease;
  margin-top:10px;
}

.contact_form .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(13,110,253,0.3);
}

/* CONTACT INFO BOX */
.contactaddress{
  background:#fff;
  padding:45px 35px;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* CONTACT INFO */
.contactaddress p{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:30px;
  font-size:18px;
  color:#444;
}

/* ICON */
.contactaddress p i{
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(135deg,#0d6efd,#0056d6);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

/* LINKS */
.contactaddress p a{
  color:#222;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.contactaddress p a:hover{
  color:#0d6efd;
}

/* RESPONSIVE */
@media(max-width:991px){
.contact-info{
        margin-top:30px;
    }
    .blog-title{
        font-size:24px;
      }

      .overlay-title{
        font-size:22px;
      }
#highlights{
  padding:50px 0;
}

#highlights img{
  min-height:300px;
  margin-bottom:30px;
}

.quality-cer{
  padding:25px;
}

.quality-cer h3{
  font-size:24px;
}

.quality-cer .btn{
  width:100%;
  margin-bottom:15px;
}

.location-advantages{
  padding:50px 0;
}

.location-advantages .section-title{
  font-size:20px;
  margin-bottom:30px;
}

.location-advantages img{
  margin-bottom:30px;
}

.location-advantages ul{
  padding:25px;
}

.location-advantages ul h2{
  font-size:24px;
}

.location-advantages .btn{
  width:100%;
  margin-bottom:15px;
}
.gallery{
  padding:50px 0;
}

.gallery .section-title{
  font-size:20px;
  margin-bottom:30px;
}

.gallery .table{
  min-width:700px;
}

.gallery .row{
  overflow-x:auto;
}

.gallery .table thead th,
.gallery .table tbody td{
  padding:16px;
  font-size:14px;
}

.contact_wrapper{
  padding:60px 0;
}

.contact_wrapper .section-title{
  font-size:28px;
  margin-bottom:35px;
}

.contact_form{
  padding:25px;
  margin-bottom:30px;
}

.contactaddress{
  padding:30px 25px;
}

.contactaddress p{
  font-size:16px;
  gap:14px;
}

.contactaddress p i{
  width:48px;
  height:48px;
  font-size:18px;
}

}

/* EXTRA SMALL DEVICE */
@media(max-width:575px){

.devicefull{
  width:100%;
  margin-bottom:15px;
}

.contact_form .form-control{
  height:50px;
}

.contact_form textarea.form-control{
  height:110px;
}

}
.testimonial-wrapper{
  max-width:1400px;
  margin:auto;
  position:relative;
}

.slider-container{
  overflow:hidden;
}

.testimonial-slider{
  display:flex;
  gap:30px;
  transition:0.5s;
}

/* CARD */
.testimonial-card{
  min-width:calc((100% - 60px) / 3);
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:20px;
  padding:30px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.stars{
  color:#ff2d55;
  font-size:22px;
}

.time{
  color:#888;
  font-size:16px;
}

.desc{
  font-size:17px;
  line-height:1.8;
  color:#333;
  margin-bottom:35px;
}

.author{
  font-size:20px;
  color:#444;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
  cursor:pointer;
  font-size:26px;
  z-index:100;
}

.prev{
  left:10px;
}

.next{
  right:10px;
}

/* TABLET */
@media(max-width:992px){

  .testimonial-card{
    min-width:calc((100% - 30px) / 2);
  }

}

 .property-section{
      padding:30px 0;
    }

    .section-title{
      font-size:30px;
      font-weight:700;
      text-align:center;
      margin-bottom:20px;
      color:#111;
	  font-family: math;
    }

    .section-title span{
      color:#ff1e2d;
    }

    .section-desc{
      max-width:1000px;
      text-align:left;
      color:#777;
      font-size:17px;
      line-height:1.8;
      margin-bottom:40px;
    }

    /* CARD */

    .property-card{
      background:#fff;
      border:1px solid #ddd;
      border-radius:25px;
      overflow:hidden;
      padding:18px;
      transition:0.3s;
      height:100%;
    }

    .property-card:hover{
      transform:translateY(-5px);
      box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }

    .property-img{
      position:relative;
      overflow:hidden;
      border-radius:20px;
    }

    .property-img img{
      width:100%;
      height:200px !important;
      object-fit:cover;
      border-radius:20px;
      transition:0.4s;
    }

    .property-card:hover img{
      transform:scale(1.05);
    }

    .rera{
      position:absolute;
      top:15px;
      left:15px;
      background:rgba(0,0,0,0.6);
      color:#fff;
      padding:10px 22px;
      border-radius:40px;
      font-size:14px;
      font-weight:500;
      backdrop-filter:blur(5px);
    }

    .property-content{
      padding-top:20px;
    }

    .top-flex{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:10px;
    }

    .property-title{
      font-size:22px;
      font-weight:600;
      color:#111;
      margin-bottom:0;
    }

    .heart{
      font-size:24px;
      color:#333;
      cursor:pointer;
    }

    .location{
      color:#777;
      font-size:17px;
      line-height:1.7;
      margin-bottom:15px;
    }

    .price{
      font-size:17px;
      font-weight:700;
      color:#111;
      margin-bottom:25px;
    }

    /* BUTTONS */

    .bottom-area{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }

    .view-btn{
      background:#07a1d1;
      color:#fff;
      border:none;
      padding:5px 15px;
      border-radius:14px;
      font-size:17px;
      font-weight:500;
      transition:0.3s;
      text-decoration:none;
    }
   .view-btn-all{
      background:#07a1d1;
      color:#fff;
      border:none;
      padding:10px 20px;
      border-radius:14px;
      font-size:17px;
      font-weight:500;
      transition:0.3s;
      text-decoration:none;
}
    .view-btn:hover{
      background:#111;
      color:#fff;
    }

    .icon-btn{
      width:40px;
      height:40px;
      border-radius:50%;
      border:1px solid #ddd;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      background:#fff;
      transition:0.3s;
      text-decoration:none;
    }

    .call{
      color:#3448f5;
      position:relative;
    left: 25px;
    }

    .whatsapp{
      color:#1ebe5d;
    }

    .icon-btn:hover{
      transform:scale(1.08);
    }

    /* RESPONSIVE */

    @media(max-width:992px){

      .section-title{
        font-size:42px;
      }

      .property-title{
        font-size:24px;
      }

      .price{
        font-size:28px;
      }

    }
    .main-footer{
    position:relative;
    padding:60px 0px 0px;
    background-color: #000000;
    background-repeat:repeat-x;
    background-position:right bottom;
}

.main-footer .footer-widget{
    position:relative;
    margin-bottom:40px;
}

.main-footer .widgets-section{
    position:relative;
    padding-bottom:30px;
}

.main-footer .footer-widget h2{
    position:relative;
    font-size:25px;
    font-weight:700;
    color:#ffffff;
    line-height:1.2em;
    margin-bottom:30px;
    margin-top:25px;
    text-transform:capitalize;
}

.main-footer .about-widget{
    position:relative;
}

.main-footer .about-widget .logo {
    position: relative;
    margin-bottom: 15px;
    width: 210px;
}
.main-footer .about-widget .text{
    position:relative;
}

.main-footer .about-widget .text p{
    position:relative;
    color:#ffffff;
    font-size:17px;
    line-height:1.7em;
    margin-bottom:20px;
}

.main-footer .about-widget .text p:last-child{
    margin-bottom:0px;
}

/* Footer List */

.main-footer .footer-list{
    position:relative;
    list-style-type: none;
}

.main-footer .footer-list li{
    position:relative;
    margin-bottom:17px;
}

.main-footer .footer-list li a{
    position:relative;
    color:#ffffff;
    font-size:16px;
    padding-left:15px;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
    text-decoration: none;
}

.main-footer .footer-list li a:hover{
    text-decoration:underline;
    color:#ff6666;
}

.main-footer .footer-list li a:before{
    position:absolute;
    content:'\f105';
    left:0px;
    top:0px;
    color:#8a8d91;
    font-weight:800;
    font-family: 'Font Awesome 5 Free';
}

/*Gallery Widget*/

.main-footer .gallery-widget{
    position:relative;
    max-width:350px;
}

.main-footer .gallery-widget .images-outer{
    position:relative;
    margin:0px -3px;
}

.main-footer .gallery-widget .image-box{
    position:relative;
    float:left;
    width:33.333%;
    padding:0px 5px;
    margin-bottom:10px;
}

.main-footer .gallery-widget .image-box img{
    position:relative;
    display:block;
    width:100%;
    border-radius:4px;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
}

.main-footer .gallery-widget .image-box img:hover{
    opacity:0.70;   
}

/* Info List */

.main-footer .info-list{
    position:relative;
    list-style-type: none;
}

.main-footer .info-list li{
    position:relative;
    color:#ffffff;
    font-size:17px;
    line-height:1.8em;
    margin-bottom:12px;
}

.main-footer .info-widget .social-links{
    position:relative;
    float:left;
    padding:15px 0px;
}

.main-footer .info-widget .social-links li{
    position:relative;
    margin-right:8px;
    display:inline-block;
}

.main-footer .info-widget .social-links li:last-child{
    margin-right:0px;
}

.main-footer .info-widget .social-links li a{
    position:relative;
    color: #ffffff;
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:50%;
    display:inline-block;
    -webkit-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    transition:all 300ms ease;
}

.main-footer .info-widget .social-links li.google a{
    background-color:#dd4b39;
}

.main-footer .info-widget .social-links li.facebook a{
    background-color:#4a6fbe;
}

.main-footer .info-widget .social-links li.twitter a{
    background-color:#55acee;
}

.main-footer .info-widget .social-links li.instagram a{
    background-color:#ea4c89;
}

.main-footer .info-widget .social-links li.vimeo a{
    background-color:#1ab7ea;
}

.main-footer .footer-bottom{
    position:relative;
    padding:20px 0px;
    border-top:1px solid #e5e5e5;
}

.main-footer .footer-bottom .footer-nav{
    position:relative;
    text-align:right;
}

.main-footer .footer-bottom .footer-nav li{
    position:relative;
    padding-right:10px;
    margin-right:10px;
    line-height:1.1em;
    display:inline-block;
    border-right:1px solid #8a8d91;
}

.main-footer .footer-bottom .footer-nav li:last-child{
    padding-right:0px;
    margin-right:0px;
    border-right:none;
}
.copyright {
    font-size: 17px !important;
    text-align: left;
    color: #ffffff !important;
}
.main-footer .footer-bottom .footer-nav li a{
    position:relative;
    color:#ffffff;
    font-size:17px;
    -webkit-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    transition:all 300ms ease;
    text-decoration:none;
}

.main-footer .footer-bottom .footer-nav li a:hover{
    color:#ff6666;
    text-decoration:underline;
}
.blog-section{
      padding:70px 0;
    }

    .blog-card{
      background:#fff;
      border-radius:18px;
      overflow:hidden;
      transition:0.4s ease;
      height:100%;
      box-shadow:0 5px 18px rgba(0,0,0,0.08);
      border:1px solid #eee;
    }

    .blog-card:hover{
      transform:translateY(-8px);
      box-shadow:0 12px 30px rgba(0,0,0,0.15);
    }

    .blog-img{
      position:relative;
      overflow:hidden;
    }

    .blog-img img{
      width:100%;
      height:200px;
      object-fit:cover;
      transition:0.5s ease;
    }

    .blog-card:hover .blog-img img{
      transform:scale(1.08);
    }

    .overlay-title{
      position:absolute;
      bottom:20px;
      left:20px;
      right:20px;
      color:#fff;
      font-size:28px;
      font-weight:600;
      line-height:1.3;
      text-shadow:0 3px 10px rgba(0,0,0,0.7);
    }

    .blog-content{
      padding:20px;
    }

    .meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:14px;
      color:#666;
      margin-bottom:18px;
      flex-wrap:wrap;
      gap:10px;
    }

    .meta span i{
      color:#0d6efd;
      margin-right:5px;
    }

    .blog-title{
      font-size:18px;
      font-weight:600;
      margin-bottom:18px;
      color:#111;
      line-height:1.4;
    }

    .blog-desc{
      color:#555;
      line-height:1.9;
      font-size:15px;
      margin-bottom:22px;
    }

    .read-btn{
      text-decoration:none;
      display:inline-block;
      padding:5px 15px;
      background:#0d6efd;
      color:#fff;
      border-radius:50px;
      font-weight:500;
      transition:0.3s;
      font-size: 15px;
    }

    .read-btn:hover{
      background:#000;
      color:#fff;
    }
    @media(max-width:767px){
         .masterpiece-slider .row{
        flex-direction:column;
    }

    .masterpiece-slider .col-lg-9,
    .masterpiece-slider .col-lg-3{
        width:100%;
    }

    .small-card{
        display:none;
    }

    .property-card{
        height:320px;
    }
      .hero{
        min-height:550px;
            height: 80vh;
    }

    .hero-slider,
    .hero-slider .item,
    .hero-slider img{
        height:900px;
    }

    .content{
        top:65%;
        transform:translateY(-50%);
        padding:20px 15px;
    }

    .content h1{
        font-size:24px;
        line-height:1.4;
    }

    .search-box form{
        width:100%;
    }

    .search-box input,
    .search-box button{
        width:100%;
        margin-bottom:15px;
        border: 2px solid #ffffff;
        background: transparent;
    }
      .contact-btn {
    height: 40px !important;
    border: none;
    border-radius: 12px;
    font-size: 15px !important;
    font-weight: 600;
    background: #0d6efd;
    transition: 0.3s;
}
.contact-info h3 {
    font-size: 25px !important;
    font-weight: 700;
    margin-bottom: 25px;
}
      .con-section-title{
        font-size:20px !important;
      }
      .section-title small{
            font-size: 13px !important;
      }
      .prop-section-title{
        font-size:25px !important;
      }

      .about-section-title{
        font-size:25px !important;
      }
      .section-title{
        font-size:20px;
    }
.testimonial-card{
    min-width:100%;
  }

  .desc{
    font-size:16px;
  }

  .author{
    font-size:18px;
  }

  .arrow{
    width:45px;
    height:45px;
    font-size:20px;
  }

  .prev{
    left:0;
  }

  .next{
    right:0;
  }
      .section-title{
        font-size:34px;
      }

      .section-desc{
        font-size:16px;
      }

      .property-img img{
        height:220px;
      }

      .property-title{
        font-size:22px;
      }

      .location{
        font-size:17px;
      }

      .price{
        font-size:24px;
      }

      .bottom-area{
        flex-wrap:wrap;
      }
    .contact-wrapper{
        padding:60px 0;
    }

    .contact-form,
    .contact-info{
        padding:25px;
    }

      .blog-img img{
        height:220px;
      }

      .blog-title{
        font-size:22px;
      }

      .overlay-title{
        font-size:20px;
      }

      .blog-section{
        padding:50px 0;
      }
    }
    .contact-wrapper{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:left;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.section-title small{
    display:block;
    font-size:16px;
    font-weight:400;
    color:#666;
    margin-top:10px;
    letter-spacing:1px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form .form-label{
    font-weight:500;
    color:#222;
    font-size: 16px;
}

.contact-form .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:12px 15px;
    box-shadow:none;
    font-size: 16px;
}

.contact-form textarea.form-control{
    height:130px;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 0.15rem rgba(13,110,253,.15);
}

.contact-btn{
    height:55px;
    border:none;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    background:#0d6efd;
    transition:0.3s;
}

.contact-btn:hover{
    background:#000;
}

.contact-info{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-info h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.info-box i{
    width:55px;
    height:55px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-right:15px;
}

.info-box a{
    text-decoration:none;
    color:#222;
    font-size:18px;
    font-weight:500;
}

.info-box p{
    margin:0;
    color:#666;
}
.masterpiece-section{
    padding:60px 0;
}

.section-title{
    font-size:40px;
    font-weight:300;
}

.property-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    height:450px;
}

.property-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.overlay h2{
    font-size:55px;
    font-weight:700;
    margin:0;
}

.overlay p{
    font-size:24px;
    margin:10px 0 5px;
}

.overlay span{
    font-size:18px;
}

.small-card{
    height:650px;
}

/* Custom Arrows */

.custom-nav{
    display:flex;
    gap:10px;
}

.custom-nav button{
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid #000;
    background:#fff;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.custom-nav button:hover{
    background:#000;
    color:#fff;
}

/* Hide Owl Default Nav */
.owl-nav{
    display:none;
}

@media(max-width:991px){

    .property-card,
    .small-card{
        height:100%;
    }

    .small-card{
        margin-top:20px;
    }

    .section-title{
        font-size:38px;
    }

    .overlay h2{
        font-size:35px;
    }
}

@media(max-width:576px){

    .property-card,
    .small-card{
        height:100%;
    }

    .overlay{
        padding:20px;
    }

    .overlay h2{
        font-size:24px;
    }

    .overlay p{
        font-size:18px;
    }

    .overlay span{
        font-size:14px;
    }

    .section-title{
        font-size:28px;
    }
}
.floating-email{
    position:fixed;
    left:20px;
    bottom:30px;
    width:60px;
    height:60px;
    background:#000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

.floating-email:hover{
    transform:translateY(-5px);
    background:#222;
}


/* POPUP */

.email-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.popup-content{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:15px;
    padding:30px;
    position:relative;
    animation:popupShow 0.3s ease;
}

@keyframes popupShow{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    font-size:30px;
    cursor:pointer;
}

.popup-content h3{
    margin-bottom:20px;
    font-size:28px;
}

.popup-content input,
.popup-content textarea{
    width:100%;
    border:1px solid #ddd;
    padding:12px 15px;
    margin-bottom:15px;
    border-radius:8px;
    outline:none;
}

.popup-content button{
    width:100%;
    border:none;
    background:#000;
    color:#fff;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.popup-content button:hover{
    background:#333;
}


/* MOBILE */

@media(max-width:576px){

    .floating-email{
        width:50px;
        height:50px;
        font-size:20px;
        left:15px;
        bottom:20px;
    }

    .popup-content{
        padding:25px 20px;
    }

}
/* SCROLL TOP */

.scroll-top{
    position:fixed;
    right:20px;
    bottom:30px;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
}

.scroll-top span{
    position:absolute;
    width:50px;
    height:50px;
    background:#000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.progress-ring{
    transform:rotate(-90deg);
}

.progress-bg{
    fill:none;
    stroke:#ddd;
    stroke-width:4;
}

.progress-circle{
    fill:none;
    stroke:#000;
    stroke-width:4;
    stroke-linecap:round;
    stroke-dasharray:188.5;
    stroke-dashoffset:188.5;
    transition:stroke-dashoffset 0.2s linear;
}


/* MOBILE */

@media(max-width:576px){

    .floating-email{
        width:50px;
        height:50px;
        font-size:20px;
        left:15px;
    }

    .scroll-top{
        width:60px;
        height:60px;
        right:15px;
    }

    .scroll-top span{
        width:45px;
        height:45px;
        font-size:18px;
    }

}