* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", sans-serif;
  background: #f5f5f5;
}

/* HEADER */
.main-header {
  width: 100%;
  height: 90px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 58px;
  object-fit: contain;
  height: 110px;
  width: auto;
  object-fit: contain;
    margin-top: 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  text-decoration: none;
  color: #0f4361;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #a5803b;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #a5803b;
  border-radius: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  color: #0f4361;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-btn {
  background: #0f4361;
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(15, 67, 97, 0.25);
}

.contact-btn:hover {
  background: #a5803b;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
}

.hero-bg-shape {
  position: absolute;
  left: -120px;
  bottom: 0;
  width: 90%;
  height: 78%;
  background: #0f4361;
  clip-path: polygon(0 0, 100% 45%, 100% 100%, 0 100%);
  z-index: 1;
}

.gold-shape {
  position: absolute;
  right: 260px;
  top: 155px;
  width: 520px;
  height: 42px;
  background: #9b7a36;
  transform: rotate(18deg);
  z-index: 2;
}

.hero-content {
  position: absolute;
  right: 70px;
  top: 210px;
  width: 420px;
  z-index: 5;
  color: white;
  text-align: right;
}

.hero-content h1 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-content p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-content button {
  background: white;
  color: #0f4361;
  border: none;
  border-radius: 40px;
  padding: 17px 32px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: pointer;
}

.people-img {
  position: absolute;
  right: 520px;
  bottom: 0;
  height: 445px;
  z-index: 6;
}

.hero-tags {
  position: absolute;
  right: 585px;
  top: 320px;
  z-index: 7;
  display: flex;
  gap: 180px;
}

.hero-tags span {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  background: rgba(15,67,97,0.55);
}

.hat {
  position: absolute;
  width: 150px;
  opacity: 0.9;
  z-index: 4;
}

.hat-left {
  left: 0;
  bottom: 0;
  transform: rotate(-15deg);
}

.hat-right {
  right: -30px;
  top: 230px;
  transform: rotate(-10deg);
}

/* PROGRAMS */
.programs {
  background: white;
  padding: 65px 40px 75px;
  text-align: center;
}

.programs h2 {
  color: #0f4361;
  font-size: 24px;
  margin-bottom: 60px;
}

.program-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  width: 100%;
  direction: ltr;
}
.program-card {
  width: 230px;
  min-width: 230px;

  height: 165px; /* زودنا الارتفاع */

  background: white;
  border: 1px solid #d8d8d8;
  border-radius: 22px;

  box-shadow: 0 7px 0 #9b7a36;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;
}
.icon {
  width: 82px;
  height: 82px;

  background: #0f4361;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}
.icon img {
  width: 46px;
  height: 46px;

  object-fit: contain;
  display: block;
}
.program-card:hover {
  transform: translateY(-8px);
  transition: .3s;
}
.icon {
  box-shadow: 0 8px 20px rgba(15,67,97,.25);
}
.program-card p {
  font-size: 13px;
  color: #0f4361;
  line-height: 1.4;
  direction: rtl;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .main-header {
    padding: 20px;
    height: auto;
    flex-direction: column;
    gap: 22px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    padding: 80px 30px 0;
  }

  .hero-content,
  .people-img,
  .hero-tags {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .people-img {
    height: 320px;
    margin-top: 30px;
  }

  .program-slider {
    flex-wrap: wrap;
  }
  
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-content {
   position: absolute;
  top: 35%;
  left: 6%;
  right: auto;
  width: 420px;
  color: white;
  text-align: right;
}

.banner-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.banner-btn {
  display: inline-block;
  background: #ffffff;
  color: #0f4361;
  padding: 16px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.banner-tags {
  position: absolute;
  top: 58%;
  right: 47%;
  display: flex;
  gap: 260px;
}

.banner-tags span {
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 8px 28px;
  border-radius: 30px;
  background: rgba(15,67,97,0.35);
}

@media (max-width: 900px) {
  .banner-content {
    top: 25%;
    right: 5%;
    width: 45%;
  }

  .banner-content h1 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 10px;
  }

  .banner-btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .banner-tags {
    display: none;
  }
}
.programs {
  position: relative;
  margin-top: -80px;

  background-image: url("assets/BK.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 140px 40px 75px;
  z-index: 5;
}

.features-section {
  width: 100%;
  background: #0d4467;
  padding: 90px 80px 120px;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: white;
  font-size: 34px;
  font-weight: 800;
  text-align: right;
  margin-bottom: 90px;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
}

.feature-card {
  width: 280px;
  text-align: center;
}
.feature-icon {
  position: relative;

  width: 85px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
}

.feature-icon img {
  width: 60px;
  height: 60px;

  object-fit: contain;
}

.feature-card h3 {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card p {
  color: white;
  font-size: 15px;
  line-height: 1.9;
  opacity: .95;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .features-section {
    padding: 70px 30px;
  }

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

  .features-container {
    gap: 60px;
  }

  .feature-card h3 {
    font-size: 30px;
  }

}
.why-section {
  width: 100%;
  background: #0d4467;
  padding: 40px 70px 100px;
}


.why-card {
 background: #f4f4f4;
  border-radius: 60px;

  position: relative;

  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;

  padding: 35px 70px;
  min-height: 260px;

  overflow: visible;
}
.why-image {
  position: absolute;

  left: 40px;
  bottom: 0;

  width: 280px;

  z-index: 5;
}

.why-image img {
   width: 100%;
     transform: scale(1.21);
 
}


.why-content {
   width: 100%;
  padding-right: 40px;

  padding-left: 260px; /* مساحة لصورة الراجل */

  text-align: right;
}

.why-content h3 {
  color: #9b7a36;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 25px;
}

.why-content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .why-card {
    flex-direction: column;
    text-align: center;
    padding: 10px 45px;
    border-radius: 40px;
  }

  .why-content {
    text-align: center;
    margin-top: 30px;
  }

  .why-content h2 {
    font-size: 30px;
  }

  .why-content p {
    font-size: 15px;
  }

  .why-image {
    width: 220px;
  }

}.icon-wrapper {
  position: relative;

  width: 110px;
  height: 110px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.ellipse {
  position: absolute;

  width: 100px;
  height: 100px;

  object-fit: contain;

  z-index: 1;
}
.main-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 58px;
  height: 58px;

  object-fit: contain;

  z-index: 2;
}
.contact-section {
  width: 100%;
  min-height: 620px;
  padding: 70px 160px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  direction: rtl;
}

.contact-form {
  width: 560px;
  text-align: center;
}

.contact-form h2 {
  color: #0f4361;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  background: #fff;
  border-radius: 30px;
  padding: 15px 28px;
  margin-bottom: 24px;
  font-size: 17px;
  color: #0f4361;
  text-align: right;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.contact-form textarea {
  height: 155px;
  border-radius: 35px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9b9b9b;
}

.contact-form button {
  align-self: flex-start;
  background: #0f4361;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 36px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,67,97,0.35);
}

.map-box {
  width: 360px;
  height: 470px;
  border-radius: 35px;
  overflow: hidden;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 900px) {
  .contact-section {
    padding: 50px 25px;
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    width: 100%;
  }

  .map-box {
    width: 100%;
    max-width: 360px;
  }
}
.footer {
  width: 100%;
  background: #0f4361;
  padding: 70px 90px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
  direction: rtl;
}

/* TITLES */

.footer h2 {
  color: white;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* PROGRAMS */

.footer-programs {
  width: 420px;
}

.footer-programs a {
  display: block;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 12px;
  transition: .3s;
}

.footer-programs a:hover {
  color: #d2ab57;
}

/* CONTACT */

.footer-contact {
  width: 340px;
}

.footer-contact p {
  color: white;
  font-size: 18px;
  line-height: 1.9;

  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;
}

.footer-contact p img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* SOCIAL */

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.social-icons a {
  width: 42px;
  height: 42px;

  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .3s;
}

.social-icons a:hover {
  background: #d2ab57;
  border-color: #d2ab57;
  transform: translateY(-4px);
}

.social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* LINKS */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 18px;
  transition: .3s;
}

.footer-links a:hover {
  color: #d2ab57;
}

/* PAPER IMAGE */

.footer-paper {
  position: absolute;
  right: -30px;
  bottom: 0;

  width: 170px;
  opacity: .95;
}

/* RESPONSIVE */

@media(max-width: 991px) {

  .footer {
    padding: 60px 25px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-programs,
  .footer-contact {
    width: 100%;
  }

}