/* ================ Start Hero =============== */

body {
  background-color: #f6f4f1;
}
.hero {
  background-image: url("../images/GroupProjects.png");
  background-position: center 10%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  background-color: #42253b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  position: absolute;
  top: 200px;
  z-index: 2;
  margin: auto;
  padding: 0 20px;
}

.hero .content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.hero .text {
  color: #fff;
  max-width: 600px;
}

.hero .text h2 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 140%;
  color: #f4f3efb2;
}
.my-project {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 140%;
  color: var(--primary-color);
}
.hero .text h1 {
  font-size: 60px;
  font-weight: 700;
  font-style: Bold;
  margin-bottom: 15px;
  line-height: 140%;
  color: var(--primary-color);
  text-wrap: nowrap;
}

.arrow-project {
  color: white;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 140%;
}
/* ===== container-slider-project: الشكل اللي تحبه ===== */
.container-slider-project {
  position: relative;
  bottom: -300px;
  z-index: 5;
  height: 517px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* اخفاء الأسهم الافتراضية بتاعت Swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.btn-arrow {
  width: 60px;
  height: 60px;
  padding: 8.75px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.arrow-left {
  left: 4px;
}
.arrow-right {
  right: 1px;
}
.btn-arrow i {
  background-color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  color: #333;
}

/* أيقونات الفونت اوسم */
.swiper-button-next i,
.swiper-button-prev i {
  font-size: 22px; /* حجم السهم */
  color: #333; /* لون السهم */
}

.swiper-pagination {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 6;
}
.swiper-pagination-bullet {
  background-color: white !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
}
/* ================ End Hero =============== */
/* ================ Start Project =============== */
.project-details {
  margin-top: 320px;
  margin-bottom: 100px;
}
.project-info {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 80px 40px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: right;
}

.project-info h2 {
  font-weight: 800;
  font-size: 35px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #02323c; /* لون قريب من اللي في التصميم */
}

.project-info h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 32px 0 16px;
  color: #02323c;
}

.project-info p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify; /* يخلي النص متساوي الأطراف */
}
.social-icons {
  display: flex;
  flex-direction: column; /* يخليهم تحت بعض */
  gap: 24px; /* المسافة بين الأيقونات */
}

.social-icons .icon {
  background-color: #C0AA85;
  width: 28.67px;
  height: 28.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; /* يخليها دايرة */
  opacity: 1;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons .icon i {
  color: white; /* لون الأيقونة */
  font-size: 20px; /* حجم الأيقونة جوا */
}

.social-icons .icon:hover {
  opacity: 0.8; /* تأثير عند المرور */
}

/* ================ End Project =============== */


@media (max-width: 992px) {
  /* ================ Start Hero =============== */

  .hero .content {
    flex-direction: column;
    text-align: start;
  }
  .hero .text h2 {
    font-size: 20px;
  }
  .hero .text h1 {
    font-size: 40px;
    text-wrap: wrap;
  }
  .hero .text span {
    font-size: 20px;
  }
  .hero .text p {
    font-size: 14px;
  }
  .container-slider-project {
    position: relative;
    bottom: -200px;
    z-index: 5;
    height: 517px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .project-details {
    margin-top: 256px;
  }
  .arrow-left {
    left: 0px !important;
  }
  .arrow-right {
    right: 0px !important;
  }
  .project-info {
    padding: 20px;
  }

  .project-info h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 140%;
  }

  .project-info h3 {
  }

  .project-info p {
  }
}
