:root {
    --primary-color: #C70F2D; 
    --secondary-color: #32cd32; 
    --sidebar-bg-color: #2c3e50; 
    --text-color: #ecf0f1; 
    --navbar-bg-color: #ffffff; 
    --sidebar-hover-color: #16a085; 
    --border-radius: 20px; 
    --transition-speed: 0.4s;
  }
  body {
    font-family: 'Cairo','Arial', sans-serif;
    margin: 0;
    background-color: #ecf0f1;
    direction: rtl;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: var(--navbar-bg-color);
    padding: 15px 30px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Light shadow for navbar */
    border-bottom: 2px solid #ddd; /* Subtle border at the bottom */
    border-radius: 0 0 20px 20px;
  }
  
  .navbar-brand img {
    max-width: 150px;
    transition: transform 0.3s ease;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.1); /* Slight scale effect on hover */
  }
  
  /* Sidebar */
  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--sidebar-bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 60px;
    z-index: 10000;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow for depth */
    transition: width var(--transition-speed) ease-in-out;
    border-top-right-radius: var(--border-radius); /* Rounded corners for top-right */
    border-bottom-right-radius: var(--border-radius); /* Rounded corners for bottom-right */
  }
  
  .sidebar-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  
  .sidebar a {
    padding: 20px 30px;
    text-decoration: none;
    font-size: 22px;
    color: var(--text-color);
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #34495e;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .sidebar a:hover {
    background-color: var(--sidebar-hover-color);
    transform: translateX(10px); /* Slight right movement for hover */
  }
  
  .sidebar .closebtn {
    position: absolute;
    top: 20px;
    right: 20px; /* Positioned at the top-right */
    font-size: 36px;
    color: var(--text-color);
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  
  .open-btn {
    position: fixed;
    top: 15px;
    left: 20px;
    font-size: 30px;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
  }
  
  .open-btn:hover {
    color: var(--secondary-color); /* Change to secondary color on hover */
  }
  
  /* Main Content */
  .main-content {
    margin-top: 80px;
    padding: 20px;
    transition: margin-left var(--transition-speed) ease-in-out; /* Smooth transition */
  }
  
  .main-content.open {
    margin-left: 250px;
  }
  
  /* Fade-in Effect for Content */
  .fadeIn {
    opacity: 0;
    animation: fadeInEffect 1s forwards;
  }
  
  @keyframes fadeInEffect {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
/* Copyright Message in the Sidebar */
.copyright-message {
    position: absolute;
    bottom: 20px; /* Position at the bottom of the sidebar */
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #34495e; /* Dark background */
    color: #fff; /* White text color */
    font-size: 14px;
    border-top: 1px solid #444;
  }
/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../imgs/Cover.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    overflow: hidden !important;
  }
  
    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-section{
        height: 90vh;
      }
    }
  
  /* Black Overlay */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay with opacity */
    z-index: 0; /* Positioned below the content */
  }
  
  /* Hero Content Styling */
  .hero-content {
    z-index: 1;
    color: #fff;
    max-width: 700px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
  }
  
  /* Title Styling */
  .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out;
  }
  
  /* Description Styling */
  .hero-description {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
    animation: fadeIn 1.5s ease-out;
  }
  
  /* Button Styling */
  .cta-button {
    background-color: #C70F2D;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    animation: fadeInUp 1s ease-out 1s;
  }
  
  .cta-button:hover {
    background-color: #e54b37;
  }
  
  /* Keyframes Animations */
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      padding: 30px 0;
    }
  
    .hero-content {
      max-width: 100%;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  }
  

  
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .hero-content {
      max-width: 100%;
      text-align: center;
    }
  }
  .wave-section .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:url(../imgs/wave.png) ;
    background-size: 1000px 100px;
  }
  .wave-section .wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
  }
  .wave-section .wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay:-5s;
    bottom: 10px;
  }
  .wave-section .wave3{
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
  }
  .wave-section .wave4{
    animation: animate2 15s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay:-5s;
    bottom: 20px;
  }
  @keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
  }

  @keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}

.logo-color{
    color: #C70F2D;
}

/* General Section Styling */
.cards-section {
    padding: 60px 30px;
    text-align: center;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-title p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  /* Card Container */
  .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
  }
  
  /* Individual Card */
  .service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    max-width: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #C70F2D 0%, #ff7f50 100%);
  }
  
  /* Card Icon */
  .card-icon {
    font-size: 50px;
    color: #C70F2D;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .service-card:hover .card-icon {
    color: #fffacd;
  }
  
  /* Card Title */
  .service-card h3 {
    font-size: 1.7rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }
  
  .service-card:hover h3 {
    color: #fff;
  }
  
  /* Card Description */
  .service-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    transition: color 0.3s ease;
  }
  
  .service-card:hover p {
    color: #fff;
  }
  
  /* :after Style - Adding Decorative Lines or Shadows */
  .service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #C70F2D;
    border-radius: 10px 10px 0 0;
    transition: width 0.3s ease;
  }
  
  .service-card:hover::after {
    width: 100%;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cards-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      padding: 20px;
    }
  
    .service-card h3 {
      font-size: 1.5rem;
    }
  
    .service-card p {
      font-size: 1rem;
    }
  }
    
  /* Section Styling */
  .services-section {
    padding: 60px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-title p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  /* Circular Cards Container */
  .circular-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Circular Card Styling */
  .circular-card {
    background-color: #fff;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
  }
  
  .circular-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background-color: #ff6347;
  }
  
  /* Card Icon */
  .card-icon i {
    font-size: 50px;
    color: #ff6347;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover .card-icon i {
    color: white;
  }
  
  /* Card Heading */
  .circular-card h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover h3 {
    color: #fff;
  }
  
  /* Card Description */
  .circular-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover p {
    color: #fff;
  }
  
  /* Contact Button */
  .contact-btn {
    background-color: #fff;
    color: #ff6347;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #ff6347;
    color: #fff;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .circular-cards-container {
      flex-direction: column;
      align-items: center;
    }
  
    .circular-card {
      width: 200px;
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .circular-card {
      width: 180px;
      height: 180px;
    }
    .circular-card h3 {
      font-size: 1.3rem;
    }
    .circular-card p {
      font-size: 1rem;
    }
  }
  .section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 60px;
    background: rgba(255, 255, 255, 0.9);
  }

  /* Left Section Styles */
  .left-section {
    width: 50%;
    text-align: left;
    padding: 20px;
    color: #34495e;
    z-index: 2;
  }

  .left-section h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: -webkit-linear-gradient(#00c6ff, #0072ff);
    -webkit-background-clip: text;
    color: transparent;
    text-align: right;
    transition: transform 0.3s ease;
  }

  .left-section h1:hover {
    transform: scale(1.05);
  }

  .left-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: right;
    margin-bottom: 30px;
  }

  .section-container a{
    text-decoration: none;
    color: white;
  }

  .contact-btn {
    background-color: #2980b9;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
  }

  .contact-btn:hover::before {
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }

  .contact-btn:hover {
    background-color: #3498db;
  }

  /* Right Section Styles */
  .right-section {
    position: relative;
    width: 50%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  .ring-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    animation: rotateRing 6s infinite linear;
  }

  .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
  }

  .ring img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  }

  .ring img:hover {
    transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
    filter: brightness(1.2);
  }

  /* Keyframes for Animations */
  @keyframes rotateRing {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
      box-shadow: 0 0 30px rgba(255, 255, 255, 1);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .section-container {
      flex-direction: column;
      padding: 50px;
    }
    .left-section, .right-section {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  /* إجبار الأنميشن على استخدام transform بدلًا من تغيير الحجم الفعلي */
* {
  box-sizing: border-box;
}

.section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;  /* لمنع العناصر من الخروج عن الحاوية */
}

/* تعديل في الأنميشن لاستخدام transform فقط */
.left-section, .right-section {
  position: relative;
}

.left-section h1, .left-section p, .contact-btn {
  transform-origin: center center;  /* تحديد نقطة الأصل للأنميشن */
}

/* الأنميشن */
.left-section h1, .left-section p, .contact-btn {
  transition: transform 0.4s ease-in-out;  /* إضافة تأثير التمرير */
}

.left-section h1:hover, .left-section p:hover, .contact-btn:hover {
  transform: scale(1.05);  /* تكبير العناصر عند التفاعل */
}

/* For responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    padding: 50px;
  }

  .left-section, .right-section {
    width: 100%;
    margin-bottom: 30px;
  }

  .ring-container {
    transform: scale(0.8);  
  }
  .left-section h1{
    font-size: 2.3rem;
  }
}
.left-section {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
}

.contact-btn {
  background-color: #2980b9;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-left: auto; /* نقل الزرار إلى اليمين */
  text-align: center; /* محاذاة النص داخل الزر */
}

@media (max-width: 768px) {
  .left-section {
    align-items: center;
  }
  
  .contact-btn {
    margin-left: 0; /* إعادة محاذاة الزرار إلى المنتصف عند الشاشات الصغيرة */
  }
}

/* الشاشات الصغيرة */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column-reverse; /* الصورة تكون فوق المحتوى في الشاشات الصغيرة */
  }

  .right-section {
    order: 2; /* الصورة أولًا */
  }

  .left-section {
    order: 1; /* المحتوى بعد الصورة */
  }
}
/* تصميم القسم الرئيسي */
.about-us-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: linear-gradient(135deg, #ffffff, #ecf0f1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* محتوى النصوص */
.about-content {
  width: 60%;
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  text-transform: uppercase;
}

.about-description {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin: 20px 0;
  line-height: 1.8;
}

/* تصميم الخدمات باستخدام Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.service-box {
  background-color: #3498db;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-box:hover {
  transform: scale(1.1);
  background-color: #2980b9;
}

.service-box i {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* تصميم الأنيميشن */
.about-animation {
  width: 30%;
  text-align: center;
}

.animation-circle {
  width: 150px;
  height: 150px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

/* تأثير الحركة */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
  .about-us-section {
    flex-direction: column;
    padding: 50px 20px;
  }

  .about-content {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-box {
    width: 90%;
  }

  .about-animation {
    width: 100%;
  }
}
/* تصميم القسم الرئيسي */
.section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

/* تصميم النصوص */
.left-section {
  width: 50%;
}

/* تصميم الصورة */
.right-section {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .left-section {
    width: 100%;
    margin-bottom: 30px;
  }

  .right-section {
    width: 100%;
  }

  .image-container img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .section-container {
    flex-direction: column-reverse; 
  }

  .right-section {
    order: 2; 
  }

  .left-section {
    order: 1; 
  }
}
/* تصميم القسم الرئيسي */
.about-us-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: linear-gradient(135deg, #ffffff, #ecf0f1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* محتوى النصوص */
.about-content {
  width: 55%;
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  text-transform: uppercase;
}

.about-description {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin: 20px 0;
  line-height: 1.8;
}

/* تصميم الخدمات باستخدام Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.service-box {
  background-color: #3498db;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-box:hover {
  transform: scale(1.05);
  background-color: #2980b9;
}

.service-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* تصميم الصورة */
.about-image {
  width: 40%;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* التصميم المتجاوب */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-us-section {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }

  .about-content {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image {
    width: 100%;
    margin-top: 30px;
  }

  .about-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* إعدادات عامة للـ Footer */
.footer-container {
  background-color: #2980b9;
  color: white;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* تصميم روابط footer */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f39c12;
}

/* تصميم أرقام الهواتف */
.footer-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.number-box {
  background-color: #3498db;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.number-box:hover {
  transform: scale(1.05);
  background-color: #2980b9;
}

/* تصميم حقوق الطبع والنشر */
.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
}

.footer-copyright p {
  margin: 0;
  color: white;
}

/* التصميم المتجاوب للأجهزة الصغيرة */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-numbers {
    width: 100%;
    margin-top: 30px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* التأثير عند تمرير الماوس على الرقم */
.number-box {
  background-color: #3498db;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
  color: white;
}

.number-box:hover {
  transform: scale(1.05);
  background-color: #2980b9;
}

/* التمرير السلس باستخدام Locomotive Scroll */
[data-scroll-section] {
  position: relative;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {

  .image-container img {
    max-width: 100%;
  }
}
/* حاوية الأزرار العائمة */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px; /* المسافة من اليمين */
  bottom: 30px; /* المسافة من الأسفل */
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999; /* زيادة الـ z-index */
}

/* تنسيق الأزرار */
.floating-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #2980b9;
  color: white;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

/* تأثير عند المرور (hover) */
.floating-btn:hover {
  background-color: #3498db;
  transform: scale(1.1);
}

/* إضافة الأيقونات في الأزرار */
.floating-btn i {
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

/* الرسالة التي تظهر عند الـ hover */
.floating-btn[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: center;
  background-color: #2980b9;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

/* عند مرور الماوس على الزرار الأول والثاني فقط يظهر النص */
.floating-btn-1[data-tooltip]:hover::before,
.floating-btn-2[data-tooltip]:hover::before {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1);
}

/* عند مرور الماوس على الزر الثالث لا يظهر النص */
.floating-btn-3[data-tooltip]:hover::before {
  visibility: hidden;
  opacity: 0;
  transform: scaleX(0);
}

/* تنسيق النص داخل الزر */
.btn-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  position: absolute;
  left: 100%;
  padding-left: 15px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* تأثير قبل المرور لإظهار النص بالعرض */
.floating-btn:hover .btn-text {
  opacity: 1;
  transform: translateX(5px);
}

/* تأثير before عند المرور */
.floating-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.floating-btn:hover::before {
  transform: scale(1);
  opacity: 0.6;
}