 body{
  padding-left:50px;
  padding-right:50px;
 }

.hero {
  text-align: center;
}
.h_img{
  width: 100%;
}
.hero h1{
  font-size: 45px;
}

.h_img img {
  width: 97%;
  max-height: 550px;
  border-radius: 10px;
  object-fit: cover;
}

.description {
  width: 95%;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.4;
}


.services-grid {
  display: grid;
  grid-template-columns:32% 32% 32%;
  gap: 20px;
}

/* =================================== */

/* CSS */
.services-section {
  max-width: 95%;
  margin: auto;
  padding: 40px 0 60px;
}

.services-section h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

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

.service-box {
  flex: 1 1 calc(25% - 20px);
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 300px;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-box p {
  margin: 10px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .service-box {
    flex: 1 1 calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .service-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .service-box {
    flex: 1 1 100%;
  }

  .services-section h1 {
    font-size: 1.5rem;
  }
}




@media screen and (max-width: 768px) {
  body {
    padding: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .service-box img {
    height: 200px;
  }

  .description {
    font-size: 16px;
  }

}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .description {
    font-size: 15px;
  }

  .service-box img {
    height: 180px;
  }

  .service-box p {
    font-size: 16px;
  }
}

