@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Noto+Kufi+Arabic:wght@100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 300vh;
  font-family: "Tajawal", sans-serif;
}
.contenar {
  width: 90%;
  margin: auto;
}
/* ************************************************************************************************** */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  color: white;
  padding: 5px 0;
  background: rgba(9, 255, 0, 0); /* الشفاف */
  transition: background 0.6s ease-in-out, box-shadow 0.4s ease-in-out;
}

header.scrolled {
  background: linear-gradient(to right, #a08553, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.88);
}
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 6%;
}
.logo a {
  width: 100%;
  display: block;
}
.logo a img {
  width: 100%;
}
nav {
  display: flex;
  gap: 30px;
}
nav a {
  color: #212121;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
nav a:hover {
  color: #d4b57f; /* لون عند الـ hover */
  transform: scale(1.1); /* تكبير بسيط */
}
.menu-toggle {
  color: #000;
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* الميديا كويري للهاتف */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 40px;
    left: 0;
    background: linear-gradient(45deg, #f0d58c, #ffffff);
    flex-direction: column;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
    text-align: center;
    padding: 30px 0px;
  }
  nav.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: block;
  }
  .logo {
    width: 13%;
  }
}
/* ************************************************************************************************** */
.hero {
  width: 100%;
  background-image: url("image/background\ hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.content-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0px 100px 0px;
}
.box1 {
  width: 50%;
}
.box1 h1 {
  color: #212121;
  font-size: 70px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.596);
  font-weight: 900;
  line-height: 100px;
  margin-bottom: 10px;
  padding-left: 80px;
}
.gradient-word {
  background: linear-gradient(45deg, #f0d58c, #212121);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.box1 h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #212121;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.247);
}
.gradient-line {
  margin-bottom: 10px;
  width: 250px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
}
.box1 p {
  font-size: 18px;
  color: #3b3b3ba1;
  margin-bottom: 10px;
  padding-left: 120px;
}
.offer-box {
  display: flex;
  height: 200px;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
  flex-wrap: wrap;
  position: relative;
  clip-path: polygon(9% 0, 100% 20%, 100% 100%, 0% 100%);
}
.counter {
  font-size: 36px;
  font-weight: bold;
  color: #212121;
  background-image: url("image/background\ hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
  text-align: center;
  line-height: 1.2;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.offer-text h3 {
  font-size: 20px;
  color: #212121;
  font-weight: 900;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.offer-text p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #eee;
  margin-bottom: 10px;
}
.gradient-line2 {
  width: 220px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, #212121, #797979, #212121);
}
.box2 {
  position: relative;
  width: 45%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px 200px 20px 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #ffc371, #212121) border-box;
  border: 3px solid transparent;
}
.fade {
  border-radius: 20px 200px 20px 200px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 2s ease-in-out;
}
.fade.active {
  opacity: 1;
  z-index: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .contenar {
    width: 95%;
  }
  .content-hero {
    flex-direction: column;
    padding: 60px 0px 60px 0px;
  }
  .box1 {
    width: 100%;
  }
  .box1 h1 {
    text-align: center;
    font-size: 37px;
    line-height: 55px;
    margin-bottom: 0;
    padding-left: 0;
  }
  .box1 h2 {
    text-align: center;
    font-size: 18px;
  }
  .gradient-line {
    margin: 10px auto;
    width: 160px;
  }
  .box1 p {
    text-align: center;
    font-size: 14px;
    padding-left: 0;
  }
  .offer-box {
    display: none;
  }
  .box2 {
    width: 100%;
    height: 400px;
    border-radius: 20px 150px 20px 150px;
  }
  .fade {
    border-radius: 20px 150px 20px 150px;
  }
}
/* ************************************************************************************************** */
.split-section {
  width: 100%;
  background-image: url("image/background\ hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.content-split {
  width: 100%;
  display: flex;
  gap: 50px;
  padding: 80px 0px;
}
.split-videos {
  width: 50%;
  display: flex;
  gap: 20px;
}
.split-videos iframe {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}
.video2 {
  margin-top: 50px;
}
.split-text {
  width: 50%;
}
.split-text h2 {
  font-size: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.596);
  color: #a08553;
}
.line-split {
  margin: 10px 0px;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
}
.split-text h1 {
  color: #212121;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.24);
}
.split-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}
.vision-mission-values {
  display: flex;
  flex-direction: column;
}
.vmv-box {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 20px;
  border-bottom: 2px solid #2121213f;
  padding: 20px 0px;
}
.vmv-box i {
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
  padding: 20px;
  border-radius: 5px 20px 5px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: #212121;
}
.con-vmv h3 {
  font-size: 18px;
  color: #212121;
}
.con-vmv p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
/* Responsive */
@media (max-width: 768px) {
  .content-split {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 60px 0px;
  }
  .split-videos {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .video2 {
    margin-top: 0;
  }
  .split-text {
    width: 100%;
  }
  .split-text h1 {
    font-size: 22px;
  }
  .split-text p {
    font-size: 14px;
  }
  .con-vmv h3 {
    font-size: 16px;
  }
}
/* ************************************************************************************************** */
.gallery-section {
  padding: 80px 0px;
  width: 100%;
  text-align: center;
  background-image: url("image/background\ hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery-text h2 {
  font-size: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.596);
  color: #a08553;
}
.line-gallery {
  margin: 10px auto;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
}
.gallery-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
.slide {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 50px 0;
}
.slider-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.fade-left {
  left: 0;
  background: linear-gradient(to right, #f3f3f3, rgba(255, 255, 255, 0));
}
.fade-right {
  right: 0;
  background: linear-gradient(to left, #f3f3f3, rgba(255, 255, 255, 0));
}
.swiper {
  width: 100%;
  height: 450px;
}
.swiper-slide img {
  width: 20%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* Responsive */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0px;
  }
  .gallery-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .slide {
    width: 100%;
    padding: 0;
  }
}
/* ************************************************************************************************** */
.contact-boxes {
  padding: 80px 0px;
  width: 100%;
  text-align: center;
  background-image: url("image/background\ hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-boxes .contact-title {
  font-size: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.596);
  color: #a08553;
}
.line-contact {
  margin: 10px auto;
  width: 150px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
}
.contact-boxes .contact-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
.boxes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
  margin: auto;
}
.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card i {
  font-size: 32px;
  color: #a08553;
  margin-bottom: 10px;
}
.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #212121;
}
.contact-card p {
  margin-bottom: 12px;
  color: #333;
}
.contact-card a {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(to left, #a08553, #d4b57f, #a08553);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.social-icons {
  margin-top: 40px;
}
.social-icons a {
  font-size: 22px;
  color: #212121;
  margin: 0 10px;
  display: inline-block;
  transition: 0.3s ease;
}
.social-icons a:hover {
  color: #a08553;
  transform: translateY(-5px);
}
/* Responsive */
@media (max-width: 768px) {
  .contact-boxes {
    padding: 60px 0px;
  }
  .contact-boxes .contact-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/* ************************************************************************************************** */
.site-footer {
  background-color: #212121;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 16px;
}
/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 10px;
    font-size: 12px;
  }
}
/* ************************************************************************************************** */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1ebd5b;
}
/* ************************************************************************************************** */
