

.services-overlay .container {
  width: 100%;
  margin: 0 auto;
}

.cards {
  display: flex;
  gap: 25px;
    align-items: center;
    justify-content: center;
}
.card {
  background: #04151f;
  color: #fff;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.step.btn-track {
margin: auto;
    min-height: 50px;
  background: #95d5b2;
  color: #ffffff;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 1rem;

}
.btn-track:hover {
  background: #5c8355;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  transform: translateY(-2px);
  
}
.card-title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.card .icon {
  font-size: 2rem;
  color: #9eff00;
  margin-bottom: 20px;
}

.card .number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card.highlight {
  background: #c4f04b;
  color: #000;
}

.circle-btn {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: .3s;
}
.card.highlight .circle-btn {
  border-color: #000;
  color: #000;
}
.circle-btn:hover {
  background: rgba(255,255,255,0.1);
}.why-us {
  background: #fff;
  color: #222;
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header span {
  text-transform: uppercase;
  color: #777;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.reason {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.reason i {
  font-size: 1.4rem;
  background: none;
  border: 2px solid #222;
  border-radius: 8px;
  padding: 10px;
}
.reason h4 {
  font-weight: 600;
  margin-bottom: 8px;
}
.reason p {
  color: #555;
  line-height: 1.5;
}

/* === Card Hover Animation === */
.card {
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
  display: flex;
  align-items: flex-start;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Make highlighted card behave too */
.card.highlight:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(196, 240, 75, 0.4);
}

/* Optional subtle glow for icons */
.card .icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1);
  color: #baff00;
}
.section-header-center h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.services-overlay {
  background: linear-gradient(to bottom, transparent 30%, #ffffff 100%);
  padding-top: 50px;
}

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.faq-container {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

/* Left image */
.faq-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-bottom-right-radius: 40px;
}

/* Right column */
.faq-content {
  flex: 1;
  padding: 60px 80px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
}

.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 10px 0 40px;
}

/* Accordion style */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Icons */
.icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #444;
}.repair-intro {
  position: relative;
  text-align: center;
  z-index: 10;
}

.repair-intro-content {
  width: 95%;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repair-intro h2 {
  font-size: 28px;
  color: #111;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-repair {
  display: inline-block;
  background: #ff4e4e;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-repair span {
  margin-left: 8px;
  font-weight: 700;
}

.btn-repair:hover {
  background: #e13f3f;
  transform: translateY(-3px);
}

.section-header-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  gap: 20px;
}
.repair-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section-header .subtitle {
  text-transform: uppercase;
  color: #888;
  letter-spacing: 2px;
  font-size: 14px;
}

.section-header h2 {
  font-size: 28px;
  margin: 10px 0 50px;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.slider{position:relative;width:100%;overflow:hidden;}
.slides{height:100%;position:relative;}
.slide{
  position:absolute;top:0;left:0;width:100%;height:100%;
  opacity:0;transition:opacity 1s ease;
}
.slide.active{opacity:1;z-index:1;}
.slide img{width:100%;height:100%;object-fit:cover;}

/* Animated Text */
.content{
  position:absolute;top:50%;left:10%;
  transform:translateY(-50%);
  max-width:600px;
  opacity:0;
  transform:translateY(30px);
  transition:all 1s ease;
}
.slide.active .content{
  opacity:1;
  transform:translateY(-50%);
}
.content h5{color:#00c46b;letter-spacing:2px;margin-bottom:10px;text-transform:uppercase;}
.content h1{color:#fff;font-size:2.8rem;line-height:1.3;margin-bottom:20px;}
.content p{color:rgba(255,255,255,.85);margin-bottom:25px;}
.content a{background-color: #00a05a;color: #fff;}
.content a:hover{background-color: #008f4c; color: #fff;}
.btn{
  display:inline-block;background:#00c46b;color:#000;
  padding:12px 25px;border-radius:25px;font-weight:600;text-decoration:none;
  transition:all .3s ease;opacity:0;transform:translateY(20px);
}
.slide.active .btn{
  opacity:1;
  transform:translateY(0);
  transition-delay:0.4s;
}
.btn:hover{background:#00a05a;transform:translateY(-2px);}

/* Arrows */
.nav-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255, 255, 255, 0.048);border:none;color:#fff;
  padding:10px 15px;border-radius:50%;
  cursor:pointer;transition:.3s;z-index:2;
}
.nav-btn:hover{background:rgba(255,255,255,0.4);}
.prev{left:20px;}
.next{right:20px;}

/* Dots */
.dots{
  position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  display:flex;gap:10px;z-index:5;
}
.dot{
  width:12px;height:12px;border-radius:50%;
  background:rgba(255,255,255,0.4);cursor:pointer;transition:.3s;
}
.dot.active{background:#00c46b;}

.repair-card {
  background: #04151f;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.repair-card:hover img {
  transform: scale(1.05);
}

.estimate-tag {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.repair-info {
  padding: 20px;
}

.repair-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
}

.repair-info p {
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.5;
}


/* responsive */
@media (max-width: 768px) {
  .repair-intro-content {
    padding: 25px 30px;
  }

  .repair-intro h2 {
    font-size: 22px;
  }
  .cards , .repair-grid {
    flex-direction: column;
            display: grid;
        grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-content {
    padding: 40px 30px;
  }

  .faq-image img {
    border-radius: 0;
  }
}

/* responsive: stack vertically */
@media (max-width: 992px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    min-height: auto;
    padding: 40px 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}
.containersliders{    
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 15px;}
    .services-repair-section {
    padding: 0 0 15px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.repair-card {
    position: relative;
    height: 150px;
    background: #f8f9fa; /* Background light */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.repair-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #00845c; /* Tnajem tbadalha b lon l'identity mte3ek */
}

.repair-content {
    z-index: 2;
    color: #105b3f;
    transition: color 0.3s ease;
}

.repair-card:hover .repair-content {
    color: white;
}

.repair-content i {
    font-size: 40px;
    margin-bottom: 10px;
}

.repair-content h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.repair-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* Zouz fi kol star fel mobile */
        gap: 10px;
    }
    .feature-item {
            padding: 15px;
        }
        .section-title{margin-bottom:5px;}
        .repair-content h3{font-size: 1rem;}
        .repair-card{height: 140px;}
}