
    :root {
  --primary-color: #0077cc;
  --primary-hover: #005fa3;
  --accent-color: #ff6600;
  --surface-color: #ffffff;
  --text-color: #1a1a1a;
  --text-muted: #555555;
}

.content-section {
  background-color: var(--surface-color);
  padding: 80px 20px;
}

.content-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.text-box {
  flex: 1;
}

.text-box h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.text-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-box h2 {
    font-size: 1.8rem;
  }
}



.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.section-title span {
    color: var(--accent-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 450px; /* Fixed height */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.service-body {
    padding: 20px;
    flex-grow: 1;
}

.service-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-btn {
    background-color: var(--accent-color);
    color: var(--surface-color);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(255,102,0,0.2);
    margin-bottom: 20px;
}

.service-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,204,0.3);
}

.service-btn i {
    margin-right: 5px;
}

@media (max-width: 767.98px) {
    .services-section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 1.8rem; }
    .service-img { height: 160px; }
    .service-card { height: auto; }
}





    .why-choose-section {
  padding: 90px 20px;
  background-color: var(--surface-color);
}

.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.why-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.why-title span {
  color: var(--accent-color);
}

.why-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  background: var(--light-bg);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0,119,204,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
}

.why-item h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 1.9rem;
  }
}




.faq-section {
  padding: 90px 20px;
  background-color: var(--light-bg);
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-title span {
  color: var(--accent-color);
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  font-size: 18px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 25px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg); /* plus to minus */
}

/* Responsive */
@media (max-width: 576px) {
  .faq-title {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
}




    .cta-section {
  background-image: url("/images/tyre-service-technician-dubai.webp"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 100px 20px;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #f1f1f1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255,102,0,0.35);
}

.cta-btn.primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-overlay {
    padding: 80px 15px;
  }
}






