body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


.newbackground {
  background-image: url(../my-images/map-bg.png);
  box-sizing: content-box
}

.newbackground2 {

  /* Background color */
  background-color: #f8f8f8;
  /* Multiple backgrounds */
  background-image: url(../my-images/shape.png), url(../my-images/shape-2.png);
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;

  /* Optional: size control */
}

* {
  box-sizing: border-box;
}

.clear {
  clear: both;
  height: 0px;
}

.hoverLogic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  z-index: 1;
  padding: 12px 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: bold;
}

/* Background overlay - starts from bottom */
.hoverLogic::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  transition: height 0.4s ease;
  z-index: -1;
}

/* On hover, background fills from bottom to top */
.hoverLogic:hover::before {
  height: 100%;
}

/* Change text color on hover for better contrast */
.hoverLogic:hover {
  color: #000000;
}

/* SVG icon styling */
.hoverLogic svg {
  width: 10px;
  height: 10px;
  color: white;
  fill: currentColor;
  transition: color 0.3s ease;
}

.hoverLogic:hover svg {
  color: #000;
}

.hoverLogicAr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hoverLogicAr:hover::before {
  transform: scaleX(1);
}

.container {
  width: 100%;
  margin: 0px auto;
  padding-top: 20px;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: content-box
}

.container::after {
  content: "";
  display: table;
  clear: both;
}

.container2withmargin {
  width: 94%;
  margin-top: 150px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: content-box
}

.container2withmargin::after {
  content: "";
  display: table;
  clear: both;
}

.container2 {
  width: 94%;
  margin: 0px auto;
  padding-top: 20px;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: content-box;
  background-color: #FAFAFA;
}

.container2::after {
  content: "";
  display: table;
  clear: both;
}

.container3 {
  width: 100%;
  margin: 0px auto;
  padding-top: 20px;
  padding-right: 0%;
  padding-left: 0%;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: content-box;
  margin-bottom: 20px
}

.container3::after {
  content: "";
  display: table;
  clear: both;
}


/*Arabic Section Before*/
.section2 {
  float: none;
  width: 100%;
}

.view-all-container {
  width: 100%;
  height: 120px;
  position: relative;
  text-align: center
}

.view-all {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 30px;
  border-top-right-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  /* ✅ center horizontally */
  font-family: var(--font-family);
}

/*start view all another design */
.shine-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 8px;
  padding-right: 5px;
  padding-left: 28px;
  padding-bottom: 8px;
  background: var(--secondary-color);
  color: #fff !important;
  font-size: 19px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none !important;
  overflow: hidden;
  transition: 0.3s ease;
  left: 50%;
  font-family: var(--font-family);
  margin-top: 20px
}

/* Shine light */
.shine-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(10px);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.shine-link:hover {
  background: var(--primary-color);

}

/* Hover animation */
.shine-link:hover::before {
  left: 120%;
}

.shine-link:hover::after {
  color: var(--primary-color);
}

/* Optional: arrow icon on right, inside white circle */
.shine-link::after {
  content: "→";
  background: #fff;
  color: var(--secondary-color);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 20px;
  float: right;
  font-weight: bold
}

/*Arabic Style*/
.shine-link-ar {
  direction: rtl;
  /* RTL DIRECTION */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  /* Reverse padding for RTL */
  padding-top: 8px;
  padding-right: 28px;
  padding-left: 5px;
  padding-bottom: 8px;

  background: var(--secondary-color);
  color: #fff !important;
  font-size: 19px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none !important;
  /*    position: relative;*/
  overflow: hidden;
  transition: 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family);
  margin-top: 20px;
}

/* Shine light — move from RIGHT → LEFT for Arabic */
.shine-link-ar::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120%;
  /* RTL: Start from right */
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(10px);
  transform: skewX(25deg);
  /* reverse skew for RTL */
  transition: 0.5s;
}

.shine-link-ar:hover {
  background: var(--primary-color);
}

/* Shine animation moves RIGHT → LEFT */
.shine-link-ar:hover::before {
  right: 120%;
}

/* Arrow changes color on hover */
.shine-link-ar:hover::after {
  color: var(--primary-color);
}

/* Arrow circle — now on the LEFT */
.shine-link-ar::after {
  content: "←";
  /* RTL arrow */
  background: #fff;
  color: var(--secondary-color);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 10px;
  /* RTL spacing */
  font-size: 20px;
  font-weight: bold;
}

/*end*/
.bannerInside2 {
  position: relative;
  width: 100%;
  height: 200px;
  /* take 80% of viewport height */
  margin-top: 0;
  /* start from very top */
  overflow: hidden;
}

.bannerInside2 img {
  width: 100%;
  height: auto;
  /*  object-fit: cover;     */
  object-position: center;
  /* center crop */
  display: block;
}

/*end*/
.bannerInside {
  position: relative;
  width: 100%;
  height: 120vh;
  /* take 80% of viewport height */
  margin-top: 0;
  /* start from very top */
  overflow: hidden;
}

.bannerInside img {
  width: 100%;
  height: 100%;
  /*  object-fit: cover;     */
  object-position: center;
  /* center crop */
  display: block;
}

/* dark overlay */
.bannerInside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  /* adjust darkness */
  z-index: 1;
}

/* content above overlay */

.textOnBanner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2
}

.textOnBanner h1 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 54px;
}

.textOnBanner h2 {
  font-size: 20px;
  margin: 0;
  font-family: 'Inter', sans-serif;

}

.langic {
  position: absolute;
  width: auto;
  height: auto;
  padding-left: 0px;
  padding-top: 5px;
  color: #000000;
  font-size: 13px;
  line-height: 40px;
  font-family: 'Roboto', sans-serif;
  z-index: 250;
  cursor: pointer;
  top: 0px
}

.arlangic {
  right: 1%;
  left: auto
}

.enlangic {
  right: 0.5%;
  left: auto
}

.langic span {
  color: #ffffff;
  font-size: 17px
}

.langic.sticky span {
  color: #333;
}

.langic img {
  float: left;
  width: 25px;
  height: 20px;
  margin-right: 5px
}

.dropdown-content {
  display: none;
  position: absolute;
  width: 90px;
  font-family: "Playfair Display", serif;
  right: 0px;
  z-index: 250;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  transition: 1s;
  background-color: var(--primary-color);
  color: #ffffff
}

.langic:hover .dropdown-content {
  display: block;
}

.mface {
  position: fixed;
  bottom: 40px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: #ffffff;
  border-radius: 50%;
  left: 60px;
  background-color: var(--secondary-color);
  text-align: center;
  z-index: 1100;
  padding-top: 7px;
}

.watzapp {
  position: fixed;
  bottom: 40px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: #ffffff;
  border-radius: 50%;
  left: 5px;
  background-color: var(--secondary-color);
  text-align: center;
  z-index: 1100;
  padding-top: 7px
}

/* Mobile Responsive for Container */
@media (max-width: 768px) {
  .textOnBanner {
    top: 50%;
    left: 0%;
    transform: translate(0%, 0%);
    text-align: center;
    color: #fff;
    width: 100%
  }

  .textOnBanner h1 {
    margin: 0 0 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
  }

  .container2 {
    width: 100%;

    padding-right: 0%;
    padding-left: 0%;

  }

  .container2withmargin {
    width: 100%;

    padding-right: 0%;
    padding-left: 0%;

  }

  .mface {
    bottom: 114px;

  }

  .watzapp {
    bottom: 114px;
  }

  .langic {
    top: 5px;
    right: auto;
    z-index: 105;
  }

  .langic span {
    color: #333;
  }

  .arlangic {
    right: 1%;
    left: auto
  }

  .enlangic {
    left: 0.5%;
  }

  .langic.langicshow {
    display: none
  }


  .title {
    font-size: 32px;
    line-height: 32px;
  }


  .description {
    font-size: 16px;
    line-height: 24px;
  }

  .bannerInside {
    height: 450px;
    /* take 80% of viewport height */
  }

  .bannerInside img {

    object-fit: cover;

  }

  .bannerInside2 {
    height: 450px;
    /* take 80% of viewport height */
  }

  .bannerInside2 img {

    object-fit: cover;

  }
}