/* Container Setup */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    padding: 0px;
    margin: 0px;
     font-family: "Poppins", sans-serif !important;
}
html{
    scroll-behavior: smooth;
}

#hero{
   height: 400px !important;
   display: grid;
   place-items: center;
   text-align: center;
   background:   linear-gradient(rgba(0, 0, 0, 0.733), rgba(0, 0, 0, 0.746)), /* black overlay */
        url('../media/ser-bg.jpg') !important;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 1300px;
   margin: 20px auto;
   border-radius: 40px;
}
#hero h4{
    font-size: 15px !important;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 60px !important;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px !important;
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}

/* Service List */
.services-list {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
}

/* .service-item.reverse {
  flex-direction: row-reverse;
} */

.service-img img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #000;
}

.service-content p {
  font-size: 14px;
  color: #444;
  margin: 10px 0 30px 0;
}

.service-btn {
  display: inline-block;
  padding: 6px 30px;
  background: #FFD700;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #111;
  color: #FFD700;
}

/* Responsive */
@media (max-width: 992px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .service-item.reverse {
    flex-direction: column;
  }
  .service-img img {
    max-width: 100%;
  }
}


@media (max-width:550px)
{
#hero{
   margin: 20px 10px;
   border-radius: 40px;
   padding: 10px;
}

#hero h4{
    font-size: 15px !important;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 40px !important;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px;
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}
}