/* تعميم */
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: #f9f9f9;
  color: #333;
  direction: rtl;
}

/* البانر */
.inner-banner {
  display: flex;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.banner-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
  cursor: pointer;
  position: relative;
}

.banner-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0);
  transition: 0.5s ease;
}

.banner-image:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-image:hover {
  filter: brightness(0.9);
  transform: scale(1.02);
}

/* قسم من نحن */
.about-us-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.text-box {
  flex: 1 1 50%;
  opacity: 0;
  transform: translateX(100px);
  transition: 0.8s ease;
}

.text-box.show {
  opacity: 1;
  transform: translateX(0);
}

.image-box {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateX(-100px);
  transition: 0.8s ease;
}

.image-box.show {
  opacity: 1;
  transform: translateX(0);
}

.image-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

h2 {
  color: #264a5a;
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* استجابة للشاشات */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .text-box,
  .image-box {
    transform: none !important;
    opacity: 1 !important;
  }
}
























/* Header Styling */
header {
  background-color: #264a5a;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ddd;
}

.language-switch a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.language-switch a:hover {
  text-decoration: underline;
}




















/* Header Styles */
.main-header {
  background-color: #264a5a;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: white;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #264a5a;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .nav.active ul {
    flex-direction: column;
    gap: 10px;
  }
}














/*البرواز الخاص بالبنر*/
.caller{
  background: #8e9da3;
  border-radius: 20px;
  border: 10px;
  padding: 10px;
}




















.vision-mission-goal {
  padding: 80px 20px;
  background: #f7f9fc;
  text-align: center;
  direction: rtl;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
  color: #264a5a;
  font-weight: bold;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #e9f1f5;
}

.icon {
  font-size: 40px;
  color: #36566a;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 24px;
  color: #264a5a;
  margin-bottom: 15px;
}

.card p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .section-title {
    font-size: 28px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 16px;
  }
}


















.core-values-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #264a5a;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card i {
  font-size: 36px;
  color: #36566a;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 22px;
  color: #264a5a;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 16px;
  color: #555;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}























.achievements {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #264a5a;
}

.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.counter-box {
  background: white;
  padding: 30px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-box i {
  font-size: 36px;
  color: #36566a;
  margin-bottom: 15px;
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  display: block;
}

.counter-box p {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

@media (max-width: 768px) {
  .counter-box {
    width: 100%;
    max-width: 300px;
  }
}
























.why-us-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
  color: #264a5a;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.feature-box .icon {
  font-size: 40px;
  color: #36566a;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #264a5a;
}

.feature-box p {
  font-size: 16px;
  color: #555;
}


















.video-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.video-section .section-title {
  font-size: 32px;
  color: #264a5a;
  margin-bottom: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* النسبة الذهبية للفيديو */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* متجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .video-section .section-title {
    font-size: 24px;
  }
}




















.footer {
  background-color: #264a5a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Cairo', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00d4ff;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
  


.footer-contact a:hover i {
  color: #264a5a; /* لون عند المرور */
}
















/* تأثير الدخول */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
