/*All items*/
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Maven Pro", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

ul {
  list-style: none;
}
li a {
  color: #fff;
  text-decoration: none;
}
:root {
  --border-raduis: 16px;
}

.meun-li:hover {
  background-color: var(--light-color);
}
hr {
  margin: 0;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
  text-decoration: none;
  &:hover {
    color: #fff;
  }
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.whatsapp-icon i {
  font-size: 24px;
}

/* Custom Leaflet Popup Styling */
.custom-popup {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
  /* animation: popup-fade 0.3s ease-out forwards; */
}

/* Remove the default Leaflet tip/arrow */
.custom-popup .leaflet-popup-tip-container {
  display: none;
}

/* Main content container */
.custom-popup .leaflet-popup-content-wrapper {
  padding: 0;
  background: #fff;
  border-radius: 12px;
}

.custom-popup .leaflet-popup-content {
  margin: 0;
  width: 100% !important;
  box-sizing: border-box;
}

/* Popup container styling */
/* .popup-container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.popup-images {
  display: flex;
  width: 100%;
  height: 300px;
} */

/* Image styling */
/* .popup-container img {
  width: 100%;
  height: 50px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.popup-image:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.popup-container img:hover {
  transform: scale(1.02);
} */

/* Text content area */
/* .popup-content {
  padding: 18px 20px;
} */

/* Title styling */
/* .popup-content h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #333;
  line-height: 1.3;
} */

/* Link styling */
/* .popup-content .popup-link {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.popup-content .popup-link:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* Close button styling */
.custom-popup .leaflet-popup-close-button {
  top: 10px;
  right: 10px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10;
  font-size: 18px;
  padding: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
}

.custom-popup .leaflet-popup-close-button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
/* .popup-details {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
}

.popup-cost,
.popup-year {
  margin: 0;
  color: #555;
}

.popup-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  max-height: 120px;
  overflow-y: auto;
} */

/* Style the scrollbar for the description if needed */
.popup-description::-webkit-scrollbar {
  width: 4px;
}

.popup-description::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
/* Animation */
/* @keyframes popup-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Responsive adjustments */
/* @media (min-width: 576px) {
  .popup-container {
    display: grid;
    grid-template-columns: 150px 1fr;
  }

  .popup-container img {
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
  }
} */

/* Main container styling */
.popup-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Images container */
.popup-images {
  display: flex;
  width: 100%;
  height: 180px;
}

/* Individual image styling */
.popup-image {
  flex: 1;
  object-fit: cover;
  width: 33.333%;
  height: 100%;
  transition: transform 0.3s ease;
}

/* Subtle hover effect for images */
.popup-image:hover {
  transform: scale(1.05);
}

/* Content section */
.popup-content {
  padding: 16px;
}

/* Title styling */
.popup-content h1 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Details section (cost and year) */
.popup-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* Cost and year styling */
.popup-cost,
.popup-year {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Description styling with scrolling */
.popup-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  max-height: 120px;
  overflow-y: auto;
}

/* Scrollbar styling */
.popup-description::-webkit-scrollbar {
  width: 4px;
}

.popup-description::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  /* Stack images for very small screens */
  .popup-images {
    flex-direction: column;
    height: auto;
  }

  .popup-image {
    width: 100%;
    height: 120px;
  }
}

/* For medium screens */
@media (min-width: 481px) and (max-width: 767px) {
  .popup-images {
    height: 140px;
  }
}

/* For larger screens */
@media (min-width: 768px) {
  .popup-container {
    max-width: 800px;
  }

  .popup-images {
    height: 220px;
  }

  .popup-content h1 {
    font-size: 22px;
  }

  .popup-description {
    max-height: 150px;
  }
}

/*/////////////////////////////////////////////////////////Shop PAGE ////////////////////////////////////////////////////////////////////////////////////////////*/
.navbar {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .container {
    background-color: rgba(232, 232, 232, 1);
    border-radius: var(--border-raduis);
  }

  .navbar-nav {
    margin-inline-start: auto;
    .nav-link {
      color: #4a4a4a;
      font-family: "Maven Pro";
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      &.active {
        color: #333;
        font-weight: 700;
      }
    }
  }
}

/*/////////////////banner///////////////////////*/
.banner {
  position: relative;
  width: 100%;
  height: 800px; /* Set your desired height */
  direction: ltr;
}

.banner .container {
  position: relative;
  z-index: 1; /* Ensures container appears above the overlay */
  height: 100%;
  display: flex;
  align-items: center;
}
.banner-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-image: url("../img/herobg.png");
  background-size: cover;
  background-position: center;
  border-radius: var(--border-raduis);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Cover the entire slide */
  height: 100%; /* Cover the entire slide */
  -o-object-fit: cover;
  object-fit: cover; /* Ensure the video covers the entire slide */
  z-index: -1;
  border-radius: var(--border-raduis);
}
.swiper-slide .content {
  padding: 0;
  text-align: center;
}

.swiper-slide .content h1 {
  color: #fff;
  text-align: center;
  font-family: "Maven Pro";
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 132px */
  text-transform: uppercase;
}

.swiper-slide .content p {
  color: #fff;
  text-align: center;
  font-family: "Maven Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner {
    height: 400px;
  }

  .swiper-slide .content h1 {
    font-size: 40px;
  }

  .swiper-slide .content p {
    font-size: 14px;
    line-height: 24px;
  }
}
.swiper-pagination {
  top: 80% !important;
  .swiper-pagination-bullet {
    width: 47px;
    height: 5px;
    border-radius: 8520px;
    opacity: 0.5;
    background: #fff;
    &.swiper-pagination-bullet-active {
      opacity: 1;
    }
  }
}
.boxs {
  border-radius: 8px;
  width: 50%;
  background: #e6e6e6;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 55;
  background-color: #fff;
  .box-1 {
    padding: 21px 24px;
  }
  .content {
    h5 {
      color: #191919;
      text-align: center;
      font-family: "Maven Pro";
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 24px;
    }
    p {
      color: #696969;
      text-align: center;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
    }
    .icon {
      i {
        font-size: 25px;
      }
    }
  }
}
@media screen and (max-width: 430px) {
  .boxs {
    width: 100%;
    position: static;
    transform: none;
  }
}
/*/////////////////banner///////////////////////*/
.AboutUs {
  margin-top: 10rem;
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
  &:hover {
    cursor: url("../img/mouse.png"), auto;
  }
  .ImgContainer {
    img {
      border-radius: var(--border-raduis);
    }
  }
  .content {
    .top_title {
      color: #000;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px; /* 112.5% */
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .title {
      color: #000;
      font-family: "Maven Pro";
      font-size: 48px;
      font-style: normal;
      font-weight: 900;
      line-height: 62px; /* 129.167% */
    }
    .text {
      color: #000;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px; /* 162.5% */
    }
    .btnReadMore {
      border-radius: var(--border-raduis);
      background: #333;
      text-decoration: none;
      padding: 8px 43px;
      color: #fff;
    }
  }
}
@media screen and (max-width: 430px) {
  .AboutUs {
    margin-top: 15rem;
  }
}

.MV {
  /*height: 517px;*/
  margin-top: 2rem;
  scroll-margin-top: 100px;
  .read-more-btn {
    color: #0d6efd;
    cursor: pointer;
    font-weight: 500;
    /*text-decoration: underline;*/
  }
  .content {
    border-radius: var(--border-raduis);
    background-image: url("../img/MVbg.png");
    background-size: cover;
    background-position: center;
    height: 100%;
    .Mission {
      border-radius: var(--border-raduis);
      border: 1px solid #d2d2d2;
      background: #fff;
      padding: 50px 32px 40px 50px;
      p {
        color: #2e2e2e;
        font-feature-settings: "liga" off, "clig" off;
        font-family: "Maven Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 33px;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .MV {
    height: auto;
    .content {
      .Mission {
        padding: 50px 10px 40px 10px;
      }
    }
  }
  .full-text {
    display: none;
  }

  .full-text.show {
    display: inline;
  }
}

@media (min-width: 992px) {
  .read-more-btn {
    display: none;
  }

  .full-text {
    display: inline;
  }
}

.Projects {
  margin-top: 2rem;
  margin-bottom: 5rem;
  scroll-margin-top: 100px;

  .Title {
    .top_title {
      color: #000;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px; /* 112.5% */
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .title {
      color: #000;
      font-family: "Maven Pro";
      font-size: 48px;
      font-style: normal;
      font-weight: 900;
      line-height: 62px; /* 129.167% */
    }
  }
  #map {
    height: 600px;
    border-radius: var(--border-raduis);
  }
}

.ContentUs {
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
  .Title {
    .title {
      color: #000;
      font-family: "Maven Pro";
      font-size: 48px;
      font-style: normal;
      font-weight: 900;
      line-height: 62px; /* 129.167% */
    }
  }

  .content {
    border-radius: var(--border-raduis);
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    background: #1a1a1a;
    .title {
      color: #fff;
      font-family: "Maven Pro";
      font-size: 48px;
      font-style: normal;
      font-weight: 900;
      line-height: 58.457px;
    }
    .subtitle {
      color: #fff;
      font-family: "Maven Pro";
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 24.514px;
    }
    label {
      color: #fff;
      font-family: "Maven Pro";
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      line-height: 16.971px; /* 141.429% */
      letter-spacing: 1.32px;
      text-transform: uppercase;
    }
    input,
    textarea {
      border-radius: 5.657px;
      background: #333;
      border: none;
    }
    textarea {
      resize: none;
    }
    .btnSubmit {
      color: #333;
      text-align: center;
      font-family: "Maven Pro";
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 24.514px; /* 122.571% */
      border-radius: 5.657px;
      background: #fff;
      padding: 8px 43px;
      border: none;
    }
    .ContentArea {
      .Row {
        span {
          color: #fff;
          font-family: "Maven Pro";
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 20px; /* 142.857% */
        }
        i {
          color: #fff;
        }
      }
      .soicalMedia {
        span {
          color: rgba(102, 102, 102, 1);
          font-family: Montserrat;
          font-size: 13.2px;
          font-style: normal;
          font-weight: 500;
          line-height: 22.629px; /* 171.429% */
        }
        .icons {
          a {
            text-decoration: none;
            color: rgba(102, 102, 102, 1);
          }
        }
      }
    }
  }

  .MapContent {
    .Btns {
      gap: 10px;
      .BtnSwitch {
        border-radius: 0px 8px 0px 0px;
        /* border-end-end-radius: 8px; */
        background-color: transparent;
        text-align: center;
        border: none;
        padding: 8px 45px;
        width: 100%;
        &.active {
          border: none;
          background: #333;
          color: #fff;
        }
      }
    }
    #mapOman,
    #mapEgypt {
      height: 595px;
    }
    #mapOman {
      display: none;
    }
  }
}

@media screen and (max-width: 430px) {
  .ContentUs {
    margin-bottom: 1rem;
    .MapContent {
      .Btns {
        .BtnSwitch {
          padding: 8px 30px;
        }
      }
    }
  }
}
footer {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
  .container {
    border-radius: var(--border-raduis);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: rgba(232, 232, 232, 1);
    padding: 88px 47px;
  }
  .Address,
  .Contacts,
  .followUs {
    h6 {
      color: #333;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 26px;
    }
    p {
      color: #333;
      font-family: "Maven Pro";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px; /* 162.5% */
    }
  }
  .followUs {
    .icons {
      a {
        text-decoration: none;
        color: rgba(96, 96, 96, 1);
      }
    }
  }
}
.custom-popup .leaflet-popup-content {
      width: 501px !important;
}
@media screen and (max-width: 430px) {
  footer {
    margin-bottom: 1rem;
  }
  .custom-popup .leaflet-popup-content {
      width: 100% !important;
}
}

