 :root {
      --primary: #FF6B35;
      --primary-dark: #E1561F;
      --light: #F7F7F7;
      --dark: #333333;
      --gray: #777777;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }

    body {
      line-height: 1.6;
      color: var(--dark);
      transition: all 0.3s ease;
      direction: ltr;
    }

    body[dir="rtl"] {
      direction: rtl;
      font-family: 'Tahoma', sans-serif;
    }

    /* Header & Navigation */
    header {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
      color: var(--primary);
      text-decoration: none;
    }

    .logo span {
      color: var(--dark);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--primary);
      bottom: -5px;
      left: 0;
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      cursor: pointer;
    }

    .lang-switcher {
      background: var(--light);
      border: none;
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Hero Section */
    .hero {
      height: 80vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/eedd3968-640f-4af3-a0ac-d8debc9b2d0b.png') center/cover no-repeat;
      color: white;
      text-align: center;
      margin-top: 70px;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      border: 2px solid var(--primary);
    }

    .btn:hover {
      background: transparent;
      color: var(--primary);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
      margin-left: 1rem;
    }

    .btn-outline:hover {
      background: white;
      color: var(--primary);
    }

    /* Services Section */
    .section {
      padding: 5rem 2rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      position: relative;
      display: inline-block;
      padding-bottom: 1rem;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      background: var(--primary);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      justify-items: center;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      width: 100%;
      max-width: 300px;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .service-img {
      height: 200px;
      overflow: hidden;
    }

    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .service-card:hover .service-img img {
      transform: scale(1.1);
    }

    .service-content {
      padding: 1.5rem;
    }

    .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .service-content p {
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    /* About Section */
    .about {
      background: var(--light);
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-img {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
    }

    .about-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 1.5rem;
    }

    .about-content h2 span {
      color: var(--primary);
    }

    .about-content p {
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    /* Contact Section */
    .contact {
      background: white;
    }

    .contact-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .contact-card {
      text-align: center;
      padding: 2rem;
      background: var(--light);
      border-radius: 10px;
      transition: transform 0.3s;
    }

    .contact-card:hover {
      transform: translateY(-10px);
    }

    .contact-card i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .contact-card h3 {
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .contact-card p, .contact-card a {
      color: var(--gray);
      text-decoration: none;
    }

    .contact-card a:hover {
      color: var(--primary);
    }

    .contact-form {
      background: var(--light);
      padding: 2rem;
      border-radius: 10px;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--dark);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
    }

    .form-group textarea {
      height: 150px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 3rem 0 1rem;
      text-align: center;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .social-links a {
      color: white;
      font-size: 1.5rem;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: var(--primary);
    }

    .copyright {
      color: #aaa;
      font-size: 0.9rem;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .services-container {
        grid-template-columns: 1fr;
      }
      
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s;
      }

      .nav-links.active {
        left: 0;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .about-container {
        flex-direction: column;
      }

      .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
      }
    }

    /* RTL Support */
    body[dir="rtl"] .logo {
      font-family: 'Tahoma', sans-serif;
    }

    body[dir="rtl"] .service-content h3,
    body[dir="rtl"] .section-title h2,
    body[dir="rtl"] .about-content h2 {
      font-family: 'Tahoma', sans-serif;
  }
  
  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 26px;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.credits {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}
.credits a {
  color: orange;
  text-decoration: none;
}
.credits a:hover {
  text-decoration: underline;
}
