* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Tahoma, Arial, sans-serif;
    background: #f5f6f8;
    color: #1f2937;
    line-height: 1.9;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  
  /* Header */
  
  .header {
    background: #111827;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  }
  
  .header-content {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .logo {
    color: white;
    font-size: 21px;
    font-weight: bold;
  }
  
  .nav {
    display: flex;
    gap: 25px;
  }
  
  .nav a {
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .nav a:hover {
    color: #facc15;
  }
  
  .header-call {
    background: #dc2626;
    color: white;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: bold;
  }
  
  
  /* Hero */
  
  .hero {
    min-height: 650px;
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
  
    background-image: url("tow-truck.jpg");
    background-position: center;
    background-size: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url(photo_5767289674736013153_x.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
  
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .hero-label {
    display: inline-block;
    background: #facc15;
    color: #111827;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    background: #111827;
    font-size: 45px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  #dd{
    background: #111827;
  }
  
  .hero h1 span {
    color: #ffd900;
  }
  
  .hero p {
    font-size: 19px;
    margin-bottom: 8px;
  }
  
  .hero-buttons {
    margin-top: 30px;
  
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 9px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn-danger {
    background: #dc2626;
    color: white;
  }
  
  .btn-danger:hover {
    background: #b91c1c;
    transform: translateY(-3px);
  }
  
  .btn-light {
    background: white;
    color: #111827;
  }
  
  .btn-light:hover {
    background: #facc15;
    transform: translateY(-3px);
  }
  
  
  /* Sections */
  
  .services-section {
    padding: 90px 0;
    background: #f5f6f8;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title > span {
    color: #dc2626;
    font-weight: bold;
  }
  
  .section-title h2 {
    font-size: 32px;
    margin: 8px 0;
  }
  
  .section-title p {
    color: #6b7280;
  }
  
  
  /* Services */
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  
  .service-card {
    background: white;
    padding: 35px 22px;
    text-align: center;
    border-radius: 15px;
  
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  
    transition: 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .service-icon {
    font-size: 45px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    color: #6b7280;
    font-size: 14px;
  }
  
  
  /* About */
  
  .about-section {
    padding: 90px 0;
    background: #111827;
    color: white;
  }
  
  .about-content {
    text-align: center;
    max-width: 850px;
  }
  
  .section-tag {
    color: #facc15;
    font-weight: bold;
  }
  
  .about-text h2 {
    font-size: 32px;
    margin: 10px 0 25px;
  }
  
  .about-text p {
    color: #d1d5db;
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .location {
    display: inline-block;
    margin-top: 20px;
    background: rgba(255,255,255,0.08);
    padding: 12px 22px;
    border-radius: 10px;
  }
  
  
  /* CTA */
  
  .cta-section {
    background: #facc15;
    padding: 75px 0;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .cta-content p {
    margin-bottom: 20px;
  }
  
  .cta-phone {
    display: inline-block;
    background: #111827;
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 23px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .cta-phone:hover {
    transform: scale(1.04);
  }
  
  
  /* Footer */
  
  .footer {
    background: #0b1120;
    color: #9ca3af;
    text-align: center;
    padding: 35px 0 90px;
  }

  .footer h3 {
    color: white;
    margin-bottom: 8px;
  }
  
  .footer a {
    display: inline-block;
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .copyright {
    margin-top: 15px;
    font-size: 13px;
  }
  
  
  /* Mobile */
  
  .mobile-call {
    display: none;
  }
  
  
  /* Tablet */
  
  @media (max-width: 900px) {
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero h1 {
      font-size: 36px;
    }
  
  }
  
  
  /* Mobile */
  
  @media (max-width: 600px) {
  
    .container {
      width: 92%;
    }
  
    .header-content {
      min-height: 65px;
    }
  
    .logo {
      font-size: 17px;
    }
  
    .nav {
      display: none;
    }
  
    .header-call {
      padding: 7px 12px;
      font-size: 13px;
    }
  
    .hero {
      min-height: 570px;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .services-section,
    .about-section {
      padding: 65px 0;
    }
  
    .section-title h2,
    .about-text h2,
    .cta-content h2 {
      font-size: 27px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .mobile-call {
      display: block;
  
      position: fixed;
      bottom: 15px;
      left: 15px;
      right: 15px;
  
      background: #dc2626;
      color: white;
  
      text-align: center;
  
      padding: 13px;
  
      border-radius: 10px;
  
      font-weight: bold;
  
      z-index: 2000;
  
      box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    }
  
  }

/* اسسسسسسسسسسسسسسلللللللللللللللاااااااااااااااید */
  .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: blur(5px) brightness(0.5); */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }