@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  /* background-color: #30404910; */
  font-family: "Funnel Display", sans-serif;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  object-fit: cover;
}
:root {
  --primary-color: #304049;
  --secondary-color: #e0935b;
  --bg-color: #e2e4e5;
  --info-color: #f1edea;
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --gap: 1.6rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 16rem;
  --open: 65rem;
  --accent: #ff6b35;
  --swiper-theme-color: #222;
}
.pt1 {
  padding: 60px 0px;
}
.pt2 {
  padding: 120px 0px;
}
.pt3 {
  padding: 120px 0px 200px 0px;
}
.pt4 {
  padding: 100px 0px;
}
.pl1 {
  padding: 0px 60px;
}
.pl2 {
  padding: 0px 120px;
}
.pl3 {
  padding: 0px 160px;
}

/* ###############################  Navbar Section Start  #################################  */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-light);
  padding: 15px 80px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.062);
}
.navbar .navbar-nav {
  margin-right: 60px;
}

.navbar .navbar-nav .nav-link {
  color: var(--primary-color);
  padding: 10px 15px;
  margin-right: 10px;
  transition: all 0.6s;
  font-size: 17px;
  position: relative;
  font-weight: 600;
}

/* Pseudo-element for corner borders */
.navbar .navbar-nav .nav-link::before,
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: 0.6s;
}

.navbar .navbar-nav .nav-link::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.navbar .navbar-nav .nav-link::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link:hover::after {
  opacity: 1;
}

/* Slider Area Start */
.head {
  margin-top: 100px;
}
.head h2 {
  font: 400 1.5rem/1.2 Inter, sans-serif;
  color: #fff;
}
.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.nav-btn:hover {
  background: var(--accent);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.slider {
  max-width: 2000px;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}
.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 50rem;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}
.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}
.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(75%);
  transition: filter 0.3s, transform var(--speed);
}
.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.623) 100%);
  z-index: 2;
}
.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.project-card__thumb,
.project-card__desc,
.project-card__desc i,
.project-card__desc span,
.project-card__desc1,
.project-card__desc2,
.project-card__btn {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.1rem;
}
.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 3.4rem;
  margin-bottom: -4px;
}
.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__desc i,
.project-card[active] .project-card__desc span,
.project-card[active] .project-card__desc1,
.project-card[active] .project-card__desc2,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 300px;
  height: 350px;
  border-radius: 20px;
  border: 6px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.project-card__desc i {
  color: var(--accent);
  font-size: 40px;
  border-bottom: 5px solid var(--accent);
  border-radius: 3px;
  margin-right: 10px;
}
.project-card__desc {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  /* max-width: 16rem; */
  margin-bottom: -5px;
}

.project-card__desc1 {
  color: var(--primary-color);
  font-size: 1.5rem;
  background: var(--bg-light);
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0px;
  padding: 10px 15px;
}
.project-card__desc2 {
  color: var(--bg-light);
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 12px 0px;
  font-weight: 800;
}
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.project-card__desc2 span {
  font-size: 2.2rem;
  display: inline-block;
  animation: zoomInOut 1s infinite ease-in-out;
}

.project-card__btn {
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.project-card__btn:hover {
  background: #ff824f;
}

.dots {
  display: none;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
}
.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  :root {
    --closed: 4rem;
    --open: 22rem;
  }
  .head {
    padding: 50px 20px 30px;
  }
  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .project-card {
    height: 20rem;
  }
  .project-card__title {
    font-size: 1.1rem;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    padding-inline: 0.3rem;
  }
  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .head {
    padding: 30px 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider {
    padding: 0 10px;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    margin-right: auto;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .project-card[active] .project-card__thumb {
    width: 200px;
    height: 267px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }

  .dots {
    display: none;
  }

  .controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px 20px;
  }

  .nav-btn {
    position: static;
    transform: none;
  }
}

/* Slider Area End */

/* Common Details Start */
.details .title {
  background-color: #30404923;
  width: fit-content;
  color: var(--bg-dark);
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 600;
}
.details .subtitle {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--primary-color);
}
.details .content b {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 18px;
}
.details .content img {
  height: 20px;
  padding-right: 5px;
}
.details .content p {
  margin-top: 10px;
  text-align: justify;
}
.details .content ul {
  padding: 0px;
  margin: 0px;
}
.details .content ul li {
  margin-bottom: 10px;
  text-align: justify;
}
/* Common Details End */

/* About Us section Start */
.aboutus {
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
/* .aboutus::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.548);
}
.aboutus .container {
  position: relative;
  z-index: 3;
} */
.aboutus .details {
  position: relative;
  z-index: 3;
  padding: 30px 20px;
}
.aboutus .about-img .about-img1 {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}
.aboutus .about-img .about-img2 {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

/* About Us section End */

/* Project List Section Start */

.project_list .details {
  margin-bottom: 20px;
}
.project_list .details .title {
  margin: 0px auto;
}
.project_list .details .content,
.project_list .details .subtitle {
  margin: 0px auto;
  text-align: center;
  width: 60%;
}
.project_list .project_slider {
  margin-top: 30px;
}

#module {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
#module .swiper {
  width: 100%;
  padding-bottom: 4rem;
}
#module .swiper .swiper-pagination {
  bottom: 0 !important;
}
#module .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 11px !important;
  height: 11px !important;
  border-radius: 11px !important;
}
#module .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1rem;
  cursor: pointer;
  max-width: 100%;
}
#module .swiper .swiper-slide:hover a {
  text-decoration: underline !important;
}
#module .swiper .swiper-slide .img {
  position: relative;
  width: 100%;
}
#module .swiper .swiper-slide .img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  transition: all 750ms ease;
  max-width: 100%;
}
#module .swiper .swiper-slide .img img.cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border: 4px solid var(--primary-color);
}
#module .swiper .swiper-slide .img img.viynl {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translateX(0%) rotate(-180deg);
}
#module .swiper .swiper-slide .content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #111;
  font-weight: 500;
}
#module .swiper .swiper-slide .content .title a {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}
#module .swiper .swiper-slide .content .title a:hover {
  text-decoration: underline;
}
#module .swiper .swiper-slide-active .img img.cover {
  transform: translateX(-20%);
}
#module .swiper .swiper-slide-active .img img.viynl {
  transform: translateX(30%) rotate(0deg);
}

.project_slider .content .text i {
  color: var(--primary-color);
}
.project_slider .content .text {
  margin-top: -10px;
}
.project_slider .content .text1 {
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-size: 18px;
  color: var(--bg-light);
}
.project_slider .content .price {
  font-size: 20px;
}
.project_slider .content .price span {
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  animation: zoomInOut 1s infinite ease-in-out;
}

/* Project List Section End */

/* highlights Section Start  */

.highlights {
  background-color: var(--bg-color);
}

.highlights .details {
  margin-bottom: 30px;
}
.highlights .details .title {
  margin: 0px auto;
}
.highlights .details .subtitle,
.highlights .details .content {
  margin: 0px auto;
  text-align: center;
  width: 60%;
}

.highlights .card {
  border: none;
  background-color: transparent;
}
.highlights .card .card-body h3 {
  border-bottom: 1px solid var(--primary-color);
  padding: 8px;
}
.highlights .card .card-body {
  padding: 40px;
}
.highlights .card img {
  height: 500px;
  width: 100%;
  border-radius: 20px;
}
.card-slider .card-body {
  padding: 2rem;
}
.highlights .card-slider ul li {
  margin-bottom: 10px;
}
.highlights .card-slider ul li i {
  color: var(--primary-color);
}

/* highlights Section End */

/* Amenities Section Start */

.amenities .card {
  border: none;
  background-color: var(--bg-color);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
  width: 95%;
}
.amenities .details .content {
  width: 70%;
}
.amenities .card .card-body img {
  margin-bottom: 5px;
  padding: 10px;
}
.amenities .card .card-body .card-title {
  color: var(--bg-dark);
}

/* Amenities Section End */

/* Contact Us Section Start  */

.contactus {
  background-image: url("../images/emaar\ rectangle.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.contactus::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: var(--primary-color);
  opacity: 0.9;
  position: absolute;
  z-index: 1;
}
.contactus .container {
  z-index: 2;
  position: relative;
}
.contactus .details .subtitle,
.contactus .details .content {
  color: var(--bg-light);
}

/* Contact Us Section End */

/* Gallery Section Start  */

.gallery .details .title {
  margin: 0px auto;
}
.gallery .details {
  text-align: center;
  width: 60%;
  margin: 0px auto;
  padding-bottom: 40px;
}
.gallery img {
  border-radius: 20px;
}
.gallery .g1 {
  height: 450px;
  width: 100%;
  margin-bottom: 25px;
}
.gallery .g2 {
  height: 325px;
  width: 100%;
  margin-bottom: 25px;
}
.gallery .g3 {
  height: 250px;
  width: 100%;
  margin-bottom: 25px;
}
.gallery .g4 {
  height: 350px;
  width: 100%;
  margin-bottom: 25px;
}

/* Gallery Section End */

/* fl;oorplan Sectioon Start */

.floorplan {
  box-shadow: 10px 10px 20px #304049d2;
  background-color: var(--bg-color);
}

.floorplan .details .title {
  margin: 0px auto;
}
.floorplan .details {
  padding-bottom: 40px;
  text-align: center;
  margin: 0px auto;
  width: 60%;
}
.floorplan .card .header_btn1 {
  text-align: center;
  justify-content: center;
}
.floorplan .card {
  width: 95%;
  border: 3px solid var(--primary-color);
  /* border: 0px; */
  border-radius: 20px;
  text-align: center;
  margin: 0px auto;
  box-shadow: 8px 8px 0px var(--primary-color);
}
.floorplan .card .card-title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  border-top: 2px solid var(--primary-color);
  padding-top: 15px;
}

.floorplan .fp_img {
  filter: blur(5px);
  border-radius: 20px;
}

/* fl;oorplan Sectioon End */

/* Location Start  */

#location .highlights {
  background-color: var(--bg-light);
}
#location .card .card-body ul li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
#location .card img {
  border: 5px solid var(--primary-color);
}

/* Location End  */

/* Contact Us */
.contact {
  background-image: url("../images/p2_img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  opacity: 0.6;
  z-index: 1;
}

.contact .card {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
  border-radius: 30px;
  background-color: #fff;
}

.contact .card .card-body {
  padding: 0px;
  margin-top: 20px;
}
.contact .card form input::placeholder {
  color: var(--primary-color);
}
.contact .card form input {
  height: 55px;
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid #30404954;
}

/* Footer Section Start */
footer {
  background-color: black;
  text-align: center;
}
footer .footer-content p {
  padding: 0px;
  margin: 0px;
}
footer .footer-content {
  color: grey;
  font-size: 16px;
}
footer .footer-content b {
  color: white;
}





/* Modal Section Start */

.modal {
    --bs-modal-width: 750px !important;
}
.modal .modal-content {
    border-radius: 0px;
    border: 10px solid #ffffff50;
}
.modal .modal-content .modal-body h3 {
    color: var(--primary-color);
}
.modal .modal-content .modal-body {
    /* text-align: center; */
    padding: 40px;
}
.modal .modal-content .modal-body form .form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}
.modal .modal_img {
    background-image: url("../images/p4_img.webp");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}
.modal .modal-content .btn-close {
    background: var(--primary-color)
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
        center/0.7em auto no-repeat;
}

/* Modal Section End */