/* إعدادات عامة */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Cairo', sans-serif;
  background-color: #fff;
  color: #333;
  direction: rtl;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(11, 11, 214, 1) 0%, rgba(0, 212, 255, 1) 100%);
  padding: 20px 0;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,196,167,0.3) 100%);
  z-index: 1;
}

/* مؤشرات الصور */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-indicator.active {
  background: #00c4a7;
  border-color: #00c4a7;
  transform: scale(1.2);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0 30px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(45deg, #ffffff, #00c4a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(45deg, #ffffff, #00c4a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  color: #f0f0f0;
}

.btn {
  background: linear-gradient(135deg, #00c4a7 0%, #00a896 100%);
  color: white;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,196,167,0.3);
  border: 2px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,196,167,0.4);
  background: linear-gradient(135deg, #00a896 0%, #00c4a7 100%);
}

.btn:hover::before {
  left: 100%;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-box {
    padding: 25px 20px;
  }
  
  .contact-now-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .hero-indicators {
    bottom: 20px;
    gap: 10px;
  }
  
  .hero-indicator {
    width: 10px;
    height: 10px;
  }
}


/* About */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f1f8e9 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300c4a7" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2300c4a7" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2300c4a7" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%2300c4a7" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%2300c4a7" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: url('https://img.icons8.com/ios-filled/100/settings--v1.png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  transform: rotate(-20deg);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out both;
}

.section-title {
  font-size: 2.5rem;
  color: #005b96;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c4a7, #00a896);
  border-radius: 2px;
}

.section-description {
  font-size: 18px;
  color: #333;
  line-height: 1.9;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .service-box {
    padding: 20px 15px;
  }
  
  .contact-now-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}


/* Services */
/* Services */
.services {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8fafd, #e9f1f8);
}

.services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #005b96;
  position: relative;
}

.services h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #0077cc;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  cursor: pointer;
  border: 1px solid rgba(0,196,167,0.1);
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00c4a7, #00a896);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(0,196,167,0.3);
}

.service-box:hover::before {
  transform: scaleX(1);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-box:hover .service-image {
  transform: scale(1.03);
}

.service-box h3 {
  font-size: 22px;
  color: #0077cc;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
}
.contact-now-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px 4px 0 0;
  font-size: 0.9rem;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s;
}

.contact-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-now-btn:hover::before {
  left: 100%;
}

.contact-now-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-now-btn.call {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.button-group {
  margin-top: 10px;
}


/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1500;
  background: #178a50;
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-btn:hover {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transform: scale(1.04);
}
.whatsapp-btn::before {
  content: '';
}
.whatsapp-btn img, .whatsapp-btn svg {
  width: 20px !important;
  height: 20px !important;
  margin-left: 3px;
}
@media (max-width: 600px) {
  .whatsapp-btn {
    left: 10px;
    bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 22px;
    gap: 4px;
  }
  .whatsapp-btn img, .whatsapp-btn svg {
    width: 16px !important;
    height: 16px !important;
    margin-left: 2px;
  }
}

/* زر الهاتف العائم */
.floating-phone-btn, #floating-buttons-wrapper a[href^="tel:"] {
  background: #1976d2 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.floating-phone-btn:hover, #floating-buttons-wrapper a[href^="tel:"]:hover {
  background: #0d47a1 !important;
}

/* زر الإيميل العائم */
.floating-email-btn, #floating-buttons-wrapper a[href^="mailto:"] {
  background: #ff9800 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.floating-email-btn:hover, #floating-buttons-wrapper a[href^="mailto:"]:hover {
  background: #e65100 !important;
}

/* Footer */
.footer {
  background-color: #005b96;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer .social a {
  color: #fff;
  margin: 0 8px;
  font-size: 20px;
  text-decoration: none;
}
.footer .social a:hover {
  color: #ffb703;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .service-box {
    width: 100%;
  }
}
body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.footer {
  background-color: #f9f9f9;
  padding: 40px 0;
  font-size: 14px;
}

.footer h3 {
  margin-bottom: 10px;
  color: #333;
}

.footer a {
  color: #333;
  text-decoration: none;
}
/* أزرار التواصل العائمة */
#floating-buttons-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#contactButtons {
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
/* ===== تنسيق عام للفورم الجديد ===== */
.booking input,
.booking textarea,
.booking select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

.booking label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.booking button {
  padding: 10px 25px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.booking .sidebar-box {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 6px;
  color: #000;
}

/* ======= Footer احترافي ومتجاوب ======= */
.site-footer {
  background: linear-gradient(90deg, #23272f 70%, #009688 100%);
  color: #f0f0f0;
  padding: 32px 0 10px 0;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  margin-top: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-footer .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 160px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.01);
  border-radius: 8px;
  padding: 0 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.footer-col h4 {
  color: #00c4a7;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 5px;
}
.footer-col ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: #00c4a7;
}
.footer-contact p {
  color: #eee;
  margin: 0 0 8px 0;
  line-height: 1.6;
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.footer-social a img:hover {
  transform: scale(1.12);
  background: #00c4a7;
}
.footer-bottom {
  text-align: center;
  color: #aaa;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
}
@media (max-width: 800px) {
  .site-footer .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    overflow-x: auto;
  }
  .footer-col {
    min-width: 140px;
    width: auto;
    margin-bottom: 8px;
    text-align: center;
    padding: 0 2px;
  }
  .footer-col:nth-child(3) {
    margin-bottom: 0;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .custom-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    background-color: #002244 !important;
  }
  
  /* إصلاح تداخل الـ header مع المحتوى في جميع الصفحات */
  body {
    padding-top: 90px !important;
  }
  
  .hero {
    margin-top: -90px !important;
    padding-top: 90px !important;
  }
  
  .about-section,
  .services,
  .company-info,
  .testimonials-section,
  .site-footer,
  .main-header,
  .hero-section,
  .contact-section,
  .blog-section {
    padding-top: 90px !important;
  }
  
  .site-footer {
    padding: 12px 0 6px 0;
    font-size: 11px;
  }
  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .footer-col ul li a, .footer-contact p {
    font-size: 11px;
  }
  .footer-col {
    padding: 0 1px;
  }
}

/*  */
.company-info {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f0f4f9, #eaf1f8);
  text-align: center;
}

.company-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.company-title {
  color: #005b96;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  border-bottom: 3px solid #0077cc;
  display: inline-block;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

.company-title:hover {
  color: #003f6d;
}

.company-subtitle {
  color: #0077cc;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 12px;
  font-weight: bold;
}

.company-paragraph {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

.company-list {
  margin-top: 20px;
  padding: 0;
  font-size: 17px;
  color: #333;
  line-height: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.company-list li::before {
  content: "✔";
  color: #00b894;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/*  */
.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: #e0f0fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

.service-box:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}
/* tips  */

section {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.section {
  margin-bottom: 2rem;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.section:hover {
  transform: scale(1.01);
}

.section h2 {
  color: #0077cc;
  margin-bottom: 1rem;
}

.section ul {
  list-style: none;
}

.section ul li::before {
  content: '✔';
  color: #00aaff;
  margin-right: 0.5rem;
}

.tip {
  background: #e0f7ff;
  padding: 1rem;
  border-left: 6px solid #00bcd4;
  margin-top: 1rem;
  border-radius: 5px;
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  background: #0077cc;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta a:hover {
  background: #005fa3;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  .section {
    padding: 1rem;
  }

}

.main-header {
  background-color: #e6f7ff; /* لون هادئ */
  color: #004466;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  margin: 1rem auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.main-header h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.main-header p {
  font-size: 1rem;
  color: #336677;
}
/* booking btn in blog page */

/*  */
.contact-now-btn {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.contact-now-btn:hover {
  background-color: #0056b3;
}

/* تنسيق الهيدر */
/* الهيدر */
.custom-header {
  background-color: #002244;
  color: #ffffff;
  padding: 10px 0;
  font-family: 'Cairo', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-texts h1 {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.logo-texts p {
  font-size: 13px;
  margin: 0;
  color: #00d1b2;
}

/* روابط التنقل */
.navbar {
  display: flex;
  gap: 15px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00d1b2;
}

/* زر الهاتف */
.toggle-btn {
  display: none;
  font-size: 26px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* responsive للهاتف */
@media (max-width: 768px) {
  .custom-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    background-color: #002244 !important;
  }
  
  /* إصلاح تداخل الـ header مع المحتوى في جميع الصفحات */
  body {
    padding-top: 120px !important;
  }
  
  .hero {
    margin-top: -120px !important;
    padding-top: 120px !important;
  }
  
  .about-section,
  .services,
  .company-info,
  .testimonials-section,
  .site-footer,
  .main-header,
  .hero-section,
  .contact-section,
  .blog-section {
    padding-top: 120px !important;
  }
  
  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }

  .navbar.show {
    display: flex;
  }

  .toggle-btn {
    display: block;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .logo-area {
    justify-content: space-between;
    width: 100%;
  }

  .navbar a {
    padding: 10px 0;
    border-bottom: 1px solid #00d1b2;
    width: 100%;
  }
}

.about img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .about div[style*="flex: 1 1 calc(33.333%"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* تحسين استجابة قسم من نحن والصور */
@media (max-width: 768px) {
  .about-section {
    padding: 120px 5px 30px 5px;
  }
  .about-content {
    padding: 0 !important;
  }
  .section-title {
    font-size: 20px !important;
  }
  .section-description {
    font-size: 15px !important;
  }
  .about-section img,
  .about-content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 15px auto !important;
    display: block;
  }
  .about-section ul.section-description {
    padding-right: 18px;
    font-size: 14px !important;
  }
  .about-section div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }
}

/* إصلاح جذري للرسبونسف about-section */
@media (max-width: 900px) {
  .custom-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    background-color: #002244 !important;
  }
  
  /* إصلاح تداخل الـ header مع المحتوى في جميع الصفحات */
  body {
    padding-top: 110px !important;
  }
  
  .hero {
    margin-top: -110px !important;
    padding-top: 110px !important;
  }
  
  .about-section,
  .services,
  .company-info,
  .testimonials-section,
  .site-footer,
  .main-header,
  .hero-section,
  .contact-section,
  .blog-section {
    padding-top: 110px !important;
  }
  
  .about-section, .about-content {
    padding: 110px 0 8px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .about-section h2, .about-section h3, .about-section .section-title {
    font-size: 1.1rem !important;
    padding: 0 !important;
  }
  .about-section p, .about-section .section-description, .about-section ul.section-description {
    font-size: 0.97rem !important;
    padding: 0 4px !important;
    word-break: break-word;
  }
  .about-section img, .about-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 10px auto !important;
    display: block;
    border-radius: 10px;
  }
  .about-section ul.section-description {
    padding-right: 10px;
    font-size: 13px !important;
  }
  .about-section div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }
}

@media (max-width: 600px) {
  .custom-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    background-color: #002244 !important;
  }
  
  /* إصلاح تداخل الـ header مع المحتوى في جميع الصفحات */
  body {
    padding-top: 100px !important;
  }
  
  .hero {
    margin-top: -100px !important;
    padding-top: 100px !important;
  }
  
  .about-section,
  .services,
  .company-info,
  .testimonials-section,
  .site-footer,
  .main-header,
  .hero-section,
  .contact-section,
  .blog-section {
    padding-top: 100px !important;
  }
  
  .about-section, .about-content {
    padding: 100px 0 4px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .about-section h2, .about-section h3, .about-section .section-title {
    font-size: 1rem !important;
  }
  .about-section p, .about-section .section-description, .about-section ul.section-description {
    font-size: 0.93rem !important;
    padding: 0 2px !important;
  }
  .about-section img, .about-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 8px auto !important;
    border-radius: 8px;
  }
}

/* Responsive fix for about-section and all its children */
@media (max-width: 900px) {
  .about-section, .about-content {
    padding: 10px !important;
    max-width: 100% !important;
  }
  .about-section h2, .about-section h3, .about-section .section-title {
    font-size: 1.2rem !important;
    padding: 0 !important;
  }
  .about-section p, .about-section .section-description, .about-section ul.section-description {
    font-size: 0.98rem !important;
    padding: 0 2px !important;
  }
  .about-section img, .about-content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 12px auto !important;
    display: block;
  }
  .about-section div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }
}

/* شهادات العملاء (Testimonials) */
.testimonials-section {
  background: linear-gradient(120deg, #f9fbfd 60%, #e3f0fa 100%);
  padding: 60px 0 40px 0;
  margin-top: 40px;
}
.testimonials-section .container {
  max-width: 800px;
  margin: auto;
}
.testimonials-title {
  color: #005b96;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.testimonial {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 28px 24px 22px 24px;
  max-width: 320px;
  flex: 1 1 240px;
  min-width: 220px;
  text-align: right;
  font-size: 16px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.testimonial:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #00c4a7;
  box-shadow: 0 2px 8px rgba(0,196,167,0.08);
  align-self: flex-start;
}
.testimonial-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.testimonial-author {
  margin-top: 14px;
  font-weight: bold;
  color: #007b8f;
  font-size: 15px;
  align-self: flex-start;
}
@media (max-width: 600px) {
  .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial {
    max-width: 100%;
    min-width: 0;
    padding: 20px 10px 16px 10px;
  }
}

/* إصلاح رسبونسف قاسي لكل عناصر about-section */
@media (max-width: 700px) {
  .container, .about-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .about-section, .about-content {
    display: block !important;
    flex-direction: unset !important;
    gap: 0 !important;
    align-items: unset !important;
  }
  .about-section *, .about-content * {
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    word-break: break-word !important;
  }
  .about-section img, .about-content img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 0 10px 0 !important;
    border-radius: 8px !important;
  }
  .about-section ul, .about-section ol {
    padding-right: 10px !important;
    font-size: 14px !important;
  }
  html, body {
    overflow-x: hidden !important;
  }
}

@media (max-width: 700px) {
  .site-footer {
    background: #23272f !important;
    color: #f0f0f0 !important;
    padding: 18px 0 6px 0 !important;
    font-size: 13px !important;
    margin-top: 18px !important;
    box-shadow: none !important;
    border-radius: 18px 18px 0 0;
  }
  .site-footer .container {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
  }
  .footer-col {
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: 0 6px 0 6px !important;
    text-align: center !important;
    background: none !important;
    box-shadow: none !important;
  }
  .footer-col:nth-child(1),
  .footer-col:nth-child(2) {
    width: 50% !important;
    flex: 0 0 50% !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #2e323a;
    padding-bottom: 8px !important;
  }
  .footer-col:nth-child(3) {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-top: 10px !important;
    padding-top: 8px !important;
    border-top: 1px solid #2e323a;
  }
  .footer-col h4 {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #00c4a7 !important;
    letter-spacing: 0.5px;
  }
  .footer-col ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .footer-col ul li {
    margin-bottom: 3px !important;
  }
  .footer-col ul li a, .footer-contact p {
    font-size: 12px !important;
    line-height: 1.7 !important;
    color: #f0f0f0 !important;
    text-decoration: none !important;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover {
    color: #00c4a7 !important;
  }
  .footer-contact p {
    margin-bottom: 2px !important;
  }
  .footer-social {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }
  .footer-social a img {
    width: 32px !important;
    height: 32px !important;
    padding: 2px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10) !important;
    transition: transform 0.2s, background 0.2s;
  }
  .footer-social a img:hover {
    transform: scale(1.12);
    background: #00c4a7 !important;
  }
  .footer-bottom {
    font-size: 10px !important;
    margin-top: 8px !important;
    padding: 0 !important;
    color: #aaa !important;
    letter-spacing: 0.5px;
  }
}

#floating-buttons-wrapper {
  z-index: 2000 !important;
}
.footer-col.footer-contact a[href^="tel:"],
.footer-col.footer-contact a[href^="mailto:"] {
  color: #00c4a7 !important;
  font-weight: bold;
  transition: color 0.2s;
}
.footer-col.footer-contact a[href^="tel:"]:hover {
  color: #1976d2 !important;
}
.footer-col.footer-contact a[href^="mailto:"]:hover {
  color: #ff9800 !important;
}