/* ---------- THEME COLORS ---------- */
:root {
  --orange-main: #ff6021 !important;
  --orange-light: #ff8655 !important;
  --orange-dark: #cc4c1a !important;
  --text-dark-blue: #002d53 !important;
  --text-black: #000000 !important;
  --white: #ffffff;
}

/* ---------- TRANSITIONS ---------- */
.tm-sc-service .icon {
  display: inline-block;
}
.tm-sc-service .icon,
.tm-sc-service .feature-title,
.tm-sc-service .feature-details {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* ---------- SERVICE BLOCK ---------- */
.service-block-style15 {
  position: relative;
  padding: 40px 25px 35px 40px;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--orange-light);
  margin-bottom: 30px;
  transition: all 300ms ease;
}

/* Icon default (orange gradient) */
.service-block-style15 .icon i {
  font-size: 60px;
  background: linear-gradient(
    90deg,
    var(--orange-main) 0%,
    var(--orange-light) 50%,
    var(--orange-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 300ms ease;
}

/* Text default state */
.service-block-style15 .content .service-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service-block-style15 .content .service-title a {
  color: var(--text-dark-blue);
  transition: all 300ms ease;
}
.service-block-style15 .content .service-details {
  color: var(--text-black);
  font-family: var(--heading-font-family, Arial, sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
  transition: all 300ms ease;
}

/* Link button default */
.service-block-style15 .content .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font-family, Arial, sans-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--text-dark-blue);
  transition: all 300ms ease;
}

/* ---------- HOVER STATE ---------- */
.service-block-style15:hover {
  background-color: var(--orange-main);
  border-color: var(--orange-main);
}

/* Hover icon becomes solid white */
.service-block-style15:hover .icon i {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

/* Hover text and links become white */
.service-block-style15:hover .content .service-title a,
.service-block-style15:hover .content .service-details,
.service-block-style15:hover .content .link-btn {
  color: var(--white);
}

/* Optional: link icon path color on hover */
.service-block-style15:hover .content .link-btn svg path {
  fill: var(--white);
}
