/* تعميم */
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: 60vh;
  background: url('../images/images/oo/13.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.banner-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}






















/* قسم مقدمة الخدمة */
.service-intro {
  padding: 60px 20px;
  background: #f9f9f9;
}

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

.intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #004d40;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

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

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }
  .intro-text h2 {
    font-size: 1.5rem;
  }
}


































/* قسم المميزات */
.service-features {
  background: #ffffff;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #004d40;
  margin-bottom: 40px;
}

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

.feature-item {
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: #f8f9fa;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


































/* معرض الأعمال */
.projects-gallery {
  background: #f8f9fa;
  padding: 60px 20px;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
/* دعوة للتواصل */
.cta-section {
  background: linear-gradient(to right, #004d40, #00796b);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px auto;
}

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

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: #ffca28;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* تحسين الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}























.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);
}

















