.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 200px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

.services .service-item .icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 10px;
  right: -20px;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 8px;
  display: inline-block;
  position: relative;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon::before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}





@media (max-width: 575px) {
  .section-title h2 {
    font-size: 19px;
  }
}





.modal {
  --bs-modal-width: 570px;
}

.modal-content {
  padding: 20px;
}

.modal-header {
  background-color: #496066;
  padding: 10px 0;
  border-radius: 0;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #f4f7f6;
}

.modal-body {
  color: #6c757d;
  font-size: 13px;
  height: 100%;
  overflow-y: auto;
  padding: 5px;
  line-height: 25px;
}

.modal-body p {
  margin-bottom: 0.2rem;
  font-size: 12px;
}

.modal-body .modal-body-right {
  margin-top: 12px;
  text-align: right;
}

.modal-body a {
  text-decoration: underline;
}

.modal-body .pp-order {
  margin-bottom: 1.5rem;
}

.modal-dialog {
  overflow-y: initial !important;
}

.btn-primary {
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
}

.text-indent {
  text-indent: -0.5em;
  margin-left: 0.5em;
}





.service-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: #009c7e;
  padding: 0 30px;
  border-radius: 20px 20px 0 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-title p {
  margin: 0;
}

.icon {
  font-size: 60px;
}

.col-lg-4:hover .icon i {
  animation: bounce-up-once 0.9s ease-out both;
}

@keyframes bounce-up-once {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-20px); }
  40%  { transform: translateY(0); }
  60%  { transform: translateY(-12px); }
  80%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}




.contact-us-wrapper {
  text-align: center;
  margin-top: 20px;
}

.contact-us-image {
  width: 500px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.top-image {
  width: 300px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.top-image1 {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* =========================
   CATCHPHRASE
========================= */

.catchphrase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
  padding-top: 40px;
}

.line1,
.line2 {
  font-size: 30px;
  font-weight: bold;
}

.line1 {
  margin-right: 100px;
  margin-top: 20px;
}

.line2 {
  margin-left: 150px;
}

.highlight,
.highlight-underline {
  color: #009c7f;
  font-weight: bold;
}

.highlight-underline {
  display: inline-block;
  border-bottom: 2px solid #009c7f;
  padding-bottom: 4px;
}

/* =========================
   ANIMATION
========================= */

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  from { transform: translateY(10px); }
  to   { transform: translateY(-10px); }
}

/* =========================
   OVERVIEW
========================= */

.overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 991px) {
  .overview {
    margin-top: 20px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 460px) {
  .line1 {
    font-size: 20px;
    margin-right: 70px;
  }

  .line2 {
    font-size: 20px;
    margin-left: 100px;
  }

  .overview {
    font-size: 12px;
  }

  .service-title {
    font-size: 16px;
  }

  .icon {
    font-size: 50px;
  }

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

  .services .service-item {
    min-height: 220px;
    height: auto;
  }

  .highlight-underline {
    font-size: 14px;
  }
}

/* =========================
   ETC
========================= */

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  transition: transform 0.3s ease;
  margin-top: 30px;
}

.text-container:hover {
  transform: translateY(-5px);
}

.top-right {
  background-color: #da1172;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .sp-top .row {
    flex-direction: column-reverse;
  }
}

.form-control {
  border-radius: 20px !important;
}

.comingsoon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 17.5vh;
  font-size: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(145deg, #000, #1a1a1a, #2c2c2c);
  text-align: center;
  animation: popIn 1s ease;
}
