/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap'); */

@font-face {
  font-family: 'JannaLT';
  src: url('../font/alfont_com_Janna-LT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: 'JannaLT', sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'JannaLT', sans-serif;
}

:root {
  --main-color: #b6735c;
  --main-hover-color: #895645;
}

.section-padding {
  padding: 80px 0;
}

.btn-theme {
  background-color: var(--main-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  transform: translateY(-3px);
  background-color: var(--main-hover-color);
}

.btn-theme-white {
  background-color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  color: var(--main-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme-white:hover {
  transform: translateY(-3px);
}


/* //////////////////////////  navbar //////////////////////// */


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 40px;
  width: 100%;
  background-color: #0000003e;
}

.navbar .logo {
  width: 110px;
}

@media (max-width: 767px) {
  .navbar .logo {
    width: 85px;
  }
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 400;
  margin: 0 7px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--main-hover-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  right: 0;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    text-align: start;
  }

  .navbar .btn-theme {
    margin: 0 auto;
    width: 250px;
    display: block;
    margin-bottom: 20px;
  }
}

/* ////////////////////////  hero section //////////////////////// */

.hero-section {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #152F3380;

}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 1;
  position: relative;
}

.hero-text {
  max-width: 960px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-text .lead {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text .description {
  font-size: 25px;
  color: #fff;
  margin-bottom: 2.5rem;
}

.hero-text .description span {
  font-size: 35px;
  font-weight: bold;
  color: #e9d4cc;
}

@media (max-width: 767px) {

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text .lead {
    font-size: 20px;
  }

  .hero-text .description {
    font-size: 14px;
  }

  .hero-text .description span {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
  }
}


/* ////////////////////////  price section //////////////////////// */
.price-section {
  position: relative;
  background-color: var(--main-hover-color);
}

.price-section .price-text {
  text-align: center;
  color: #F8F1EF;
  ;
}

.price-section .price-text .title {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
}

.price-section .price-text h4 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 140%;
}

.price-section .price-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.price-section .bg-image-1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 500px;
  background-image: url(../images/bg-image-1.png);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
}

.price-section .bg-image-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 350px;
  background-image: url(../images/bg-image-2.png);
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {

  .price-section .price-text h4 {
    font-size: 28px;
  }

  .price-section .bg-image-1,
  .price-section .bg-image-2 {
    display: none;
  }
}

/* ////////////////////////  project section //////////////////////// */

.bg-gray {
  background-color: #F7F7F7;
}

.project-section .project-swiper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.project-section .swiper-pagination {
  top: 30px !important;
  right: 15px !important;
  left: unset !important;
  bottom: unset !important;
  width: 82px;
  background-color: #333D474D;
  color: #fff;
  padding: 9px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
}

/* Style both arrows */
.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
  width: 32px;
  height: 32px;
  background: #333D474D;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.project-swiper .swiper-button-next svg,
.project-swiper .swiper-button-prev svg {
  display: none;
}

.project-swiper .swiper-button-next::after,
.project-swiper .swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}


.project-section .heading {
  font-size: 16px;
  color: var(--main-color);
}

.project-section .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 16px;
}

.project-section .desc {
  font-size: 18px;
  color: #676767;
  margin-bottom: 16px;
}

.project-section .project-list li {
  font-size: 16px;
  font-weight: bold;
  color: #515151;
  padding: 4px 0;
}

.project-section .project-list li i {
  color: var(--main-color);
  margin-bottom: 8px;
}

.project-section .distanace-setion {
  margin-top: 10px;
  background-color: #F8F1EF33;
  padding: 16px;
}

.project-section .distanace-setion .heading {
  font-size: 14px;
  margin-bottom: 8px;
  color: #676767;
  white-space: nowrap;
}

.project-section .distanace-setion .num {
  font-size: 36px;
  color: #5C646C;

}

.project-section .distanace-setion .time {
  font-size: 24px;
  color: #5C646C;
}

.project-section .units {
  padding-top: 56px;
}

.project-section .units .unit-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.project-section .units .unit img {
  width: 100%;
  aspect-ratio: 7/8;
  object-fit: cover;
}

.project-section .units .unit .text {
  width: 85%;
  position: relative;
  top: -20px;
  background-color: #FBFBFB;
  margin: auto;
  padding: 8px 12px;
}

.project-section .units .unit .text p {
  font-size: 14px;
  font-weight: bold;
  color: #676767;
  margin-bottom: 8px;
}

.project-section .units .unit .text span {
  font-size: 10px;
  color: #676767;
  direction: ltr;
  text-align: right;
  display: block;
}

.units .swiper-button-next,
.units .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: #333D474D;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.units .swiper-button-next svg,
.units .swiper-button-prev svg {
  display: none;
}

.units .swiper-button-next::after,
.units .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.project-action {
  text-align: center;
  max-width: 744px;
  margin: auto;
  margin-top: 35px;
  padding: 16px;
  padding-bottom: 0;
}

.project-action p {
  font-size: 24px;
  font-weight: bold;
  color: #333D47;
  margin-bottom: 16px;
}

@media (max-width: 1199px) {
  .project-section .distanace-setion .heading {
    font-size: 8px;
    margin-bottom: 8px;
  }

  .project-section .distanace-setion .num {
    font-size: 20px;
  }

  .project-section .distanace-setion .time {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .project-section .title {
    font-size: 24px;
  }

  .project-action p {
    font-size: 20px;
  }
}


/* ////////////////////////// about section /////////////////////// */

.about-section {
  background-image: url('../images/about.jpg');
  background-size: cover;
  background-position: center;
  height: 567px;
}

.about-section .about-text {
  margin: auto;
  width: 513px;
  height: 100%;
  padding: 32px 16px;
  background: #333D47;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section .about-text .heading {
  font-size: 16px;
  color: #E9D4CC;
}

.about-section .about-text .title {
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 4px;
  margin-bottom: 16px;
}

.about-section .about-text .text {
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.about-section .about-text .text p {
  margin-bottom: 8px
}

@media screen and (max-width: 767px) {
  .about-section {
    height: auto;
    padding: 170px 0;
    background-position: right center;
  }

  .about-section .about-text {
    width: 100%;
  }

  .about-section .about-text .title {
    font-size: 24px;
    text-align: center;
  }

  .about-section .about-text .text {
    font-size: 14px;
  }
}


/* ////////////////////////// why choose section /////////////////////// */
.choose-us-section {
  background: #F7F7F7;
}

.choose-us-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333D47;
  margin-bottom: 16px;
}

.choose-us-section .item {
  text-align: center;
  font-size: 16px;
}

.choose-us-section .item .icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background-color: #F8F1EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.choose-us-section .item p {
  margin-bottom: 0;
}


/* ////////////////////////// contact section /////////////////////// */

.contact-section {
  background-image: url('../images/contact.jpg');
  background-size: cover;
  background-position: center;
}

.contact-section .form-wrapper,
.contact-section .content {
  z-index: 1;
}

.contact-section .action-text {
  color: var(--main-color);
  font-size: 24px;
  font-weight: bold;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333D47BF;
}

.contact-section .form-wrapper {
  height: 100%;
  width: 500px;
  max-width: 100%;
  padding: 120px 16px;
}

.contact-section .form-wrapper span.small {
  color: var(--main-color);
}

.contact-section .form-wrapper h3 {
  font-size: 32px;
}

.form-wrapper .form-control {
  border-radius: .4rem;
  padding: .75rem 1rem;
  background: #F7F7F7;
  text-align: right;
}

/* ////////////////////////// footer section /////////////////////// */

footer img {
  width: 80px;
}

@media (max-width: 767px) {
  footer p {
    font-size: 10px;
  }

  footer img {
    width: 60px;
  }
}

/* ////////////////////////// whatsapp /////////////////////// */
.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background: #4CAF50;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

.whatsapp i {
  font-size: 35px;
}