* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


@font-face {
  font-family: 'BelleniaLove';
  src: url('assets/fonts/BelleniaLove.woff') format('woff');

}



body {
  overflow-x: hidden;
  font-family: "Red Hat Display", sans-serif !important;
}

/* navbar css start */

.navbar-nav .nav-link {
  padding: 8px 15px;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 15px;
  /* ⬅️ Add horizontal space between links */
}

.btn-danger {
  background-color: #af2836;
  border: none;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}

.btn-danger:hover {
  background-color: #fff;
  border: #af2836 1px solid;
  color: #af2836;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    /* Stack spacing for vertical layout on mobile */
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse.show {
    display: block !important;
  }

  /* Optional: Prevent pushing content by setting container relative */
  .navbar {
    position: relative;
    z-index: 1000;
  }
}


/* navbar css end */


.carousel-inner {
  direction: rtl;
}

.carousel-item {
  direction: ltr;
}


/* text css */

.mnpars11 {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}

.mnheds {
  font-size: 30px;
  color: #000;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}


.stytxt {
  font-size: 30px;
  color: #af2836;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}

/* horizontal divs */
.divider-line {
  position: absolute;
  top: 41%;
  right: 0;
  height: 19%;
  width: 1px;
  background-color: #8c8c8c;

}



/* spl txt */

.stltxt {
  font-family: "Oooh Baby", cursive;
  color: #af2836;
  font-weight: 500;
  font-size: 25px;
}

.sxtlt {
  font-size: 25px;
  font-family: "Oooh Baby", cursive;
  color: #ffffff;
  font-weight: 500;
}

.sctn3 {
  background-image: url('../assets/images/buildbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}


/* Main tab styles */
.main-tabs .nav-link {
  color: #888;
  font-weight: normal;
  position: relative;
  border: none;
  background: none;
}

.main-tabs .nav-link.active {
  color: #000;
  font-weight: 600;
  background-color: inherit;
}

.main-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #d04d4d;
  border-radius: 1px;
}



/* Sub tab styles */
.sub-tabs {
  gap: 24px;
  /* Adds space between inner tabs */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-tabs .nav-item {
  margin: 0;
  position: relative;
}

.sub-tabs .nav-link {
  color: #000;
  font-weight: normal;
  padding: 4px 14px;
  border: none;
  background: none;
}

.sub-tabs .nav-link.active {
  font-weight: 600;
  background-color: inherit;
}

/* Separator between inner tabs */
.sub-tabs .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  /* Half of the gap */
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 2px;
  background-color: #8c8c8c;
}

.property-card {

  background-color: #fff;
  height: 330px;
  border-radius: 15px;
}

.property-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

@media screen and (max-width: 1024px) {
  .property-card {
    height: 290px;
  }
}

@media screen and (max-width: 990px) {
  .property-card {
    height: 275px;
  }
}

.small-btn {
  font-size: 0.875rem;
  text-transform: uppercase;
}

/* cards css */

.cardhed {
  font-size: 18px;
  color: #333333;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
}

.cardpara {
  font-size: 14px;
  color: #bdbdbd;
  font-weight: normal;

}

.cntcusbtn {
  padding: 5px 14px;
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  background-color: #af2836;
  border: none;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  margin-top: -20px;
}

.cntcusbtn:hover {
  border: 1px solid #af2836;
  background-color: #fff;
  color: #af2836;
}

.sctn5 {
  background-image: linear-gradient(to right, #d22929 0%, #af2836 455%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.chevron-bar {
  width: 100%;
  height: 60px;
  background: linear-gradient(to right, #b7202e, #e63b2e);
  position: relative;
  overflow: hidden;
}

.chevron-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100px;
  /* start position */
  width: 200%;
  height: 100%;
  background-image: repeating-linear-gradient(120deg,
      white 10px,
      white 10px,
      transparent 10px,
      transparent 40px,
      white 20px,
      white 50px);
  background-size: 50px 100%;
  transform: skewX(0deg);
  opacity: 0.4;
}

.hvrdiv {
  border-radius: 15px;
  border: solid 1px #7e7e7e;

  padding: 20px 20px;
  height: 300px;
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  /* transition: all 0.6s ease-in-out; */
  transition: transform 0.3s ease;



}

.hvrdiv::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.hvrdiv:hover::before {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}




.hvrdiv {
  position: relative;
  /* 3D tilt properties */

  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}



.hvrdiv svg {
  position: absolute;
}

.hvrdiv .line {
  stroke-dasharray: 260;
  stroke-width: 2px;
  fill: transparent;
  stroke: rgba(78, 255, 13, 0.3);
  animation: svgAnimation 5.5s linear infinite;
}

@keyframes svgAnimation {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 1000;
  }
}

.imgposi {

  position: absolute;
  top: 33%;
  left: 21%;
  width: 73%;
  z-index: 0;

}

.pillhed4 .nav-link.active {
  border-radius: 0px !important;
}

.nav-pills .pillminhed {
  text-align: left;
}

.nav-pills .pillminhed.active {
  color: #f00 !important;
}

.pillminhed {
  color: #a3a3a3 !important;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background-color: #fff !important;
  padding-left: 0px;
  margin-bottom: 20px;
}

.pillminhed:focus {
  color: #f00 !important;
  border-radius: 0px !important;


}

.bordivv {
  border-right: 1px solid #9d9d9d;

}

.lftspc {
  padding-left: 40px;
}

.pillminhed .arrow-icon {
  display: none;

}

.pillminhed.active .arrow-icon {
  display: inline-block;
}

.pillminhed.active .arrow-icondr {
  display: none;
}

.mnsmhed {
  font-size: 23px;

  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;

}

.tsted a {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.tsted {
  display: flex;
  flex-direction: column;
}

.hr {
  border-bottom: 1px solid #cdcdcd;
  width: 100px;
  margin-top: 5px;
}

.red-bar {
  width: 100%;
  background-color: red;
  color: white;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.arrow-bg {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 140px;
  font-weight: bold;
  color: #fff;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 600px) {

  .red-bar {
    padding: 10px;
  }

  .arrow-bg {
    right: 20px;
    font-size: 60px;
  }

  .mobpad {
    padding-top: 20px;
  }

  .lftspc {
    padding-left: 0;
  }

  .mobhr {
    border-bottom: 1px solid #af2836;
    height: 1px;
  }

  .mbdown {
    margin-top: 0 !important;
  }
  .property-card {
    height: 100%;
  }
  
  
}

@media screen and (max-width: 768px) {
  .hvrdiv {
    height: auto;
    padding: 25px 20px;
  }
}


.flpimg {
  transition: all 0.8s ease-in-out;
}

.flpimg:hover {
  transform: rotateY(360deg);
}

.outpad {
  padding-top: 250px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tablet-fix .col-md-5 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tablet-fix .col-md-5 img {
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
  }
}


.cstmbtn button {
  height: 11px !important;
  width: 11px !important;
  border-radius: 50%;
}

.read-more-content {
      display: none;
    }
    .rdmr{
      color:#000!important;

    }
    
    .wtmnhed {
         font-size: 25px;
  color: #fff;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase !important;
    }
    
     .accbtn {
    box-shadow: none !important;
    background-color: #fff !important;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 8px;
  }
  
  
  @media (max-width: 767px) {
  .tsted {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
     padding:0 50px;
  }

  .tsted img {
    margin-bottom: 0.5rem;
    margin-top: 0.8rem;
  }

  .tsted a {
    display: block;
   
  }

  .tsted .hr {
    width: 50%;
    height: 1px;
    background-color: #ccc;
    margin-top:5px;
  }
}


        /* Scroll Button Styling */
    #scrollBtn {
      position: fixed;
      right: 20px;
      bottom: 20px;
      padding: 8px 19px;
      font-size: 22px;
      font-weight:bold;
      border: none;
      border-radius: 50%;
      background-color: #af2836;
      color: white;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s;
      opacity:0.9;
    }

    #scrollBtn:hover {
      opacity:1;
    }

    /* Bounce Animation */
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(6px);
      }
      60% {
        transform: translateY(3px);
      }
    }

    #scrollBtn.bounce {
      animation: bounce 2s infinite;
    }

