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


/* 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;
}























/* ===== بانر الخدمة ===== */
.service-banner {
  position: relative;
  height: 350px;
  background: url('../images/images/ONE.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  animation: zoomIn 8s ease-in-out infinite alternate;
}

/* تأثير تدريجي لوني فوق الصورة */
.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 32, 64, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

/* محتوى البانر */
.banner-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-in-out;
}

.banner-content h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.banner-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ===== حركات أنيقة ===== */
@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== متجاوب مع جميع الشاشات ===== */
@media (max-width: 768px) {
  .service-banner {
    height: 220px;
  }
  .banner-content h1 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}


































.about-service {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-service-text {
  flex: 1;
  min-width: 300px;
}

.about-service-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.about-service-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.about-service-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-service-image img:hover {
  transform: scale(1.05);
}

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
















/* تأثير الدخول */
.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);
}













 




.achievements {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e3c72;
}

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

.achievement-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.achievement-item i {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 15px;
}

.achievement-item:hover {
  transform: translateY(-5px);
  background: #fefefe;
}

.achievement-item h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1e3c72;
}

.achievement-item p {
  font-size: 1rem;
  color: #555;
}

/* تأثير Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .achievement-item h3 {
    font-size: 1.5rem;
  }
}














/* تأثير الدخول */
.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);
}
















/* معرض الصور */
.gallery {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* دعوة للتواصل *//* CTA Railway Section */
.cta-railway {
    position: relative;
    background: url('../images/images/9.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-railway .cta-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 80px 20px;
}

.cta-railway h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-railway p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.cta-btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-railway h2 {
        font-size: 1.8rem;
    }
    .cta-railway p {
        font-size: 1rem;
    }
}

/* تأثير Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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





























.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; /* لون عند المرور */
}