/* =========================
   Base
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================
   Section
========================= */
.service_section {
  width: 100%;
}

.bg_light_1 {
  background-color: #f7f8fc;
}

/* =========================
   Spacing
========================= */
.spacer.top {
  height: 80px;
}

.spacer.bottom {
  height: 80px;
}

.spacer.small {
  height: 40px;
}

/* =========================
   Container
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Title
========================= */
.title_all_box {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.title_sections h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111;
}

.title_sections p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   Services Grid
========================= */
.services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   Service Card
========================= */
.service_box {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.service_content {
  padding: 20px;
  text-align: center;
}

/* =========================
   Images
========================= */
.service_content img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 25px;
  padding: 10px;
}

/* =========================
   Text
========================= */
.service_content h4 {
  margin: 18px 0 10px;
  font-size: 20px;
  color: #111;
}

.service_content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* =========================
   Read More
========================= */
.read_more {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #ff0000;
  transition: color 0.3s ease;
}

.read_more:hover {
  color: #cc0000;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .services_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services_grid {
    grid-template-columns: 1fr;
  }

  .service_content img {
    height: 320px;
  }

  .title_sections h2 {
    font-size: 26px;
  }
}
