/* ==========================================
   SERVICES SECTION
========================================== */

.services-section {
  padding: 48px 0;
  background: #f7f7f7;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 35%;
}

.service-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  transition: 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

.service-content {
  flex: 1;
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.service-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-content h3 {
  /* font-size: 30px; */
  color: #43a047;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.service-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.view-btn {
  background: #fff !important;
  /* color: #fff; */
  display: inline-block;
  color: #0095ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.view-btn:hover {
  color: #d604f1;
}
.service-content h3 i {
  color: #43a047;
  margin-right: 10px;
  font-size: 26px;
  vertical-align: middle;
}

/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1200px) {
  .service-row {
    gap: 32px;
  }

  .service-image img {
    height: 280px;
  }

  .service-content h3 {
    font-size: 26px;
  }

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

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .services-section {
    padding: 60px 20px;
  }

  .service-row {
    gap: 25px;
    margin-bottom: 45px;
  }

  .service-content {
    padding: 25px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .service-image img {
    height: 250px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  .services-section {
    padding: 50px 15px;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
  }

  .service-image,
  .service-content {
    width: 100%;
    flex: 100%;
  }
  .service-content h3 i {
    font-size: 20px;
    margin-right: 8px;
  }

  .service-image img {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .view-btn {
    font-size: 15px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .services-section {
    padding: 40px 10px;
  }

  .service-image img {
    height: 180px;
    border-radius: 10px;
  }

  .service-content {
    padding: 15px;
    border-radius: 10px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .view-btn {
    font-size: 14px;
  }
}

/* ==========================================
   EXTRA SMALL MOBILE
========================================== */

@media (max-width: 360px) {
  .service-image img {
    height: 150px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 12px;
  }
}
