/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}
.container {
  width: 90%;

  margin: auto;
  padding: 0px 0;
}

/* Header */
header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  border-bottom: 5px solid #f57c00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-title img {
  height: 50px;
}
.logo-title h1 {
  font-size: 22px;
  display: none;
}
.logo-title.no-logo h1 {
  display: block;
  color: white;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 10px 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
nav ul li a:hover, nav ul li a.active {
  background-color: #f57c00;
  border-radius: 5px;
  color: #fff;
}

/* Sections */
section {
  background-color: #fff;
  margin: 40px 0;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: none;
}
section.active {
  display: block;
}
section h2 {
  margin-bottom: 20px;
  color: #f57c00;
  font-size: 28px;
  border-left: 5px solid #f57c00;
  padding-left: 10px;
}
section h3 {
  color: #f57c00;
}
section p, section ul {
  font-size: 17px;
  color: #b97026;
  margin-bottom: 15px;
}
section ul {
  padding-left: 20px;
  list-style: disc;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f57c00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}
#scrollTopBtn:hover {
  background-color: #e36c00;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 60px;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.1);
}

/* Info Section above Footer */
.info-section {
  background-color: #2b2b2b;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  border-radius: 10px 10px 0 0;
}

.info-section .info-box {
  flex: 1 1 250px;
}

.info-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f57c00;
}

.info-section ul {
  list-style: none;
  padding-left: 0;
}

.info-section ul li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 15px;
}

.info-section ul li a {
  color: #ddd;
  text-decoration: none;
}

.info-section ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .header-flex {
   
    align-items: flex-start;
  }
  .logo-title {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }
  section {
    padding: 30px 20px;
  }
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
  }
  .info-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* Slider styles */
.slider {
  position: relative;
  max-width: 100%;
  margin: 20px auto 40px auto;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 320px;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(70%);
}

.slide-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 80%;
  animation: fadeInTitle 1s ease-out forwards;
  opacity: 0;
}

.slide-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  animation: fadeInTitle 1s ease-out forwards;
}

.slide-text p {
  font-size: 18px;
  animation: fadeInDesc 1.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInTitle {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDesc {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide:not(.active) .slide-text,
.slide:not(.active) .slide-text p {
  animation: none;
  opacity: 0;
}

.prev, .next {
  position: absolute;
  top: 50%;
  background-color: rgba(0,0,0,0.3);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
  user-select: none;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Services section */
.services-home {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: auto;
}

.services-home h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  border-left: 5px solid #f57c00;
  padding-left: 12px;
  font-size: 24px;
}

.services-home ul {
  list-style: disc inside;
  color: #333;
  font-size: 17px;
  line-height: 1.5;
}

/* زر الهامبرغر */
#menuToggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    padding: 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  #menuToggle {
    display: block;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    padding: 15px 20px;
    display: block;
  }
}
.core-services-section {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 40px auto;

  text-align: center;
}
.core-services-section h2 {
  font-size: 32px;
  color: #f57c00;
  margin-bottom: 40px;
  border-left: 5px solid #f57c00;
  padding-left: 10px;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  border-left: 4px solid #f57c00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
.management-section {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 40px auto;

  text-align: center;
}

.management-section h2 {
  font-size: 30px;
  color: #f57c00;
  margin-bottom: 40px;
  border-left: 5px solid #f57c00;
  padding-left: 10px;
  text-align: left;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.management-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  border-left: 4px solid #f57c00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.management-card:hover {
  transform: translateY(-5px);
}

.management-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.management-card p {
  font-size: 16px;
  color: #555;
}
.contact-section {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin: 60px auto;
  max-width: 90%;
}

.contact-section h2 {
  font-size: 30px;
  color: #f57c00;
  margin-bottom: 40px;
  border-left: 5px solid #f57c00;
  padding-left: 10px;
  text-align: left;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  background-color: #f57c00;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e06c00;
}

.contact-info {
  flex: 1;
  min-width: 260px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.contact-info li i {
  color: #f57c00;
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.services-section {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin: 60px auto;
  max-width: 90%;
  text-align: center;
}

.services-section h2 {
  font-size: 30px;
  color: #f57c00;
  margin-bottom: 40px;
  border-left: 5px solid #f57c00;
  padding-left: 10px;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.service-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  border-left: 4px solid #f57c00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 30px;
  color: #f57c00;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-card p {
  color: #555;
  font-size: 16px;
}

.services-note {
  font-size: 17px;
  color: #444;
  margin-top: 20px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 20px;
  }
}
.about-section {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  color: #f57c00;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.about-box {
  background-color: #fafafa;
  border-left: 5px solid #f57c00;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.about-box i {
  font-size: 36px;
  color: #f57c00;
  margin-bottom: 15px;
}

.about-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.about-box p {
  font-size: 15px;
  color: #666;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.location-section {
  padding: 60px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.location-section h2 {
  font-size: 30px;
  text-align: center;
  color: #f57c00;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.location-text {
  flex: 1 1 40%;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.location-text ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.location-text ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.location-text ul li i {
  color: #f57c00;
  margin-right: 8px;
}

.location-map {
  flex: 1 1 55%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }

  .location-map {
    height: 300px;
  }
}
.main-header {
  background-color: #1a1a1a;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-title img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo-title img:hover {
  transform: scale(1.05);
}

.logo-title h1 {
  font-size: 20px;
  color: white;
  margin: 0;
}

#menuToggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #f57c00;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  #menuToggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1a1a1a;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: left;
  }

  nav ul li a {
    width: 100%;
    padding: 15px 20px;
  }

  .header-flex {
    position: relative;
  }
}
/* القسم الرئيسي */
#home {
  padding: 40px 20px 60px;
  background: #fff;
}

.section-title {
  font-size: 32px;
  color: #f57c00;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-bottom: 3px solid #f57c00;
  display: inline-block;
  padding-bottom: 8px;
}

/* السلايدر */
.slider {
  position: relative;
  max-width: 100%;
  height: 360px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #000;
}

/* الصور */
.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

/* الصورة مع تدرج */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* نص عائم فوق الصورة */
.slide-text {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 70%;
  text-align: center;
  animation: fadeInText 1.2s ease forwards;
  opacity: 0;
}

.slide.active .slide-text {
  opacity: 1;
}

.slide-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.slide-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* أزرار التنقل */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(21, 21, 21, 0.6);
  border: none;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  z-index: 10;
}

.prev:hover, .next:hover {
  background-color: #f57c00;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* تحريك ظهور النص */
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .slide-text {
    max-width: 90%;
  }

  .slide-text h3 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .prev, .next {
    font-size: 22px;
    padding: 10px 14px;
  }
}
#languageSwitcher {
  position: absolute;
  top: 10px;
  right: 10px;
}