/* ===== HOME CONTENT ===== */
.home-content {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ===== Welcome Section ===== */
.welcome-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}
.welcome-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
.welcome-text {
  flex: 1 1 400px;
}
.welcome-text h1 {
  font-size: 36px;
  color: #b71c1c;
  margin-bottom: 15px;
}
.welcome-text p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-block;
  background: #b71c1c;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #ff5252;
}

/* ===== Services Section ===== */
.services-section {
  margin: 60px 0;
}
.services-section h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.services-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  flex: 1 1 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 10px;
  color: #333;
}
.service-card p {
  font-size: 15px;
  color: #555;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== About Section ===== */
.about-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0;
}
.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}
.about-text {
  flex: 1 1 400px;
  text-align: left;
}
.about-text h2 {
  color: #b71c1c;
  margin-bottom: 20px;
  text-align:center;
}
.about-text p {
  font-size: 16px;
  margin-bottom: 15px;
}
.btn-secondary {
  display: inline-block;
  background: #ffeb3b;
  color: #b71c1c;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  
}
.btn-secondary:hover {
  background: #ffd700;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  margin: 60px 0;
}
.testimonials-section h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.testimonial-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  flex: 1 1 280px;
  border-left: 4px solid #b71c1c;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
  font-size: 15px;
}
.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .welcome-section,
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .services-cards, .testimonial-cards {
    flex-direction: column;
  }
}
