
.services-header {
    background: linear-gradient(135deg, #982224, #451519, #4d7cb1);
    padding: 60px 20px;
    text-align: center;
    color: white;
  }

  .services-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
  }
  .services-header p {
    width: 70%;
    justify-self: center;
    margin-top: 10px;
  }

.stats-section {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding: 40px 20px;
  justify-content: center;
  width: 80%;
  justify-self: center;
}

.stat-box {
  flex: 1 1 220px;
  min-height: 150px;
  max-width: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #451519;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.03);
}

.stat-box p {
  font-size: 14px;
  margin: 5px 0;
}

.stat-box h2 {
  font-size: 28px;
  margin: 0;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  width: 80%;
  justify-self: center;
}

.about-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-content h5 {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.4;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.owner-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.signature {
  height: 90px;
  object-fit: contain;
}

.owner-text strong {
  font-size: 16px;
  display: block;
}

.owner-text p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.about-image {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}



.team-section {
  padding: 60px 20px;
  background-image: linear-gradient(to bottom, rgba(75, 25, 1, 0.5), rgba(66, 25, 1, 0.5)), url("assets/s1.jpg");
  text-align: center;
}

.team-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 230px;
  width: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.team-card p {
  font-size: 14px;
  color: #777;
  margin: 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    max-width: 45%;
  }
}

@media (max-width: 480px) {
  .team-card {
    max-width: 70%;
  }

  .team-title {
    font-size: 32px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .owner-box {
    justify-content: center;
  }

  .about-content {
    max-width: 100%;
  }
  .stats-section {
   gap: 20px; 
   width: 100%;
  }
  .stat-box p{
    font-size: 14px;
  }

  .stat-box h2{
    font-size: 25px;
  }
}
