
/* Background Colors */
.bg-primaryColor {
  background-color: var(--primary-500) !important;
  transition: background-color var(--transition-normal);
}

.bg-primaryColor2 {
  background-color: var(--primary-700) !important;
  transition: background-color var(--transition-normal);
}

.bg-secondaryColor {
  background-color: var(--secondary-400);
  transition: background-color var(--transition-normal);
}

/* Text Colors */
.text-primaryColor {
  color: var(--primary-700) !important;
}

.text-primaryColor2 {
  color: var(--primary-500);
}

.text-secondaryColor {
  color: var(--secondary-400);
}

.text-secondaryColor2 {
  color: var(--text-muted);
}

/* Font Sizes */
.fs-extraBig {
  font-size: var(--text-4xl);
  line-height: 1.2;
}

.fs-big {
  font-size: var(--text-3xl);
  line-height: 1.3;
}

.fs-medium {
  font-size: var(--text-xl);
  line-height: 1.4;
}

.fs-small {
  font-size: var(--text-lg);
  line-height: 1.5;
}

.fs-extraSmall {
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* Border Radius */
.radius-10 {
  border-radius: var(--radius-lg);
}

/* Button Styles */
.custom-btn {
  width: 200px;
  font-weight: 600;
  background-color: var(--primary-700);
  color: var(--text-light);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.custom-btn:hover {
  background-color: var(--primary-800);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.custom-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.custom-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-200);
}

/* Filter Animation */
.filter-card {
  animation: fadeInLeft 0.6s ease forwards;
}

.form-select {
  animation: fadeInUp 0.5s 0.1s ease forwards;
  opacity: 0;
}

.search-input, .search-button {
  animation: fadeInUp 0.5s 0.2s ease forwards;
  opacity: 0;
}

.filter-options .form-check {
  opacity: 0;
  animation: fadeInRight 0.4s ease forwards;
}

.filter-options .form-check:nth-child(1) {
  animation-delay: 0.1s;
}

.filter-options .form-check:nth-child(2) {
  animation-delay: 0.2s;
}

.filter-options .form-check:nth-child(3) {
  animation-delay: 0.3s;
}

.filter-options .form-check:nth-child(4) {
  animation-delay: 0.4s;
}

.filter-options .form-check:nth-child(5) {
  animation-delay: 0.5s;
}

/* RTL animations */
[dir="rtl"] .filter-card {
  animation: fadeInRight 0.6s ease forwards;
}

[dir="rtl"] .filter-options .form-check {
  animation: fadeInLeft 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Button Variations */
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-700);
  color: var(--primary-700);
}

.btn-outline:hover {
  background-color: var(--primary-100);
  color: var(--primary-800);
}

.btn-sm {
  padding: calc(var(--space-xs) + 2px) var(--space-md);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-lg);
}

.btn-rounded {
  border-radius: 50px;
}

/* Icon Styles */
.icon-style {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-normal);
}

.icon-style.icon-awesome {
  background-color: var(--primary-100);
  font-size: var(--text-xl);
  color: var(--primary-700);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.icon-style.icon-awesome::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 159, 227, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.icon-style.icon-awesome:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-200);
}

.icon-style.icon-awesome:hover::after {
  opacity: 1;
}

/* Icon Sizes */
.icon-sm {
  width: 32px;
  height: 32px;
  font-size: var(--text-md);
}

.icon-lg {
  width: 48px;
  height: 48px;
  font-size: var(--text-2xl);
}

/* Icon Variations */
.icon-rounded {
  border-radius: var(--radius-round);
}

.icon-primary {
  background-color: var(--primary-500);
  color: var(--text-light);
}

.icon-secondary {
  background-color: var(--secondary-500);
  color: var(--text-muted);
}

/* Modern List Styles */
ul.ul-style {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.ul-style li {
  position: relative;
  padding: var(--space-sm) var(--space-md) var(--space-sm) var(--space-xl);
  margin-bottom: var(--space-sm);
  list-style: none;
  transition: all var(--transition-normal);
  border-radius: var(--radius-sm);
}

ul.ul-style li:hover {
  background-color: var(--secondary-100);
}

ul.ul-style li:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: var(--text-light);
  text-align: center;
  background-color: var(--primary-700);
  content: "→";
  font-size: var(--text-sm);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

ul.ul-style li:hover:after {
  background-color: var(--primary-600);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.o_rtl ul.ul-style li {
  padding: var(--space-sm) var(--space-xl) var(--space-sm) var(--space-md);
}

.o_rtl ul.ul-style li:after {
  left: auto;
  right: 0;
  content: "←";
}

/* Modern Filter Container */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  background-color: var(--secondary-400);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary-200);
}

.filter-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

.filter-section {
  flex: 1;
  min-width: 250px;
}

.filter-section-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 119, 170, 0.1);
  transition: all 0.3s ease;
}

.filter-icon {
  margin-inline-end: 8px;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.filter-section:hover .filter-icon {
  transform: scale(1.1);
}

/* Search Section Styles */
.search-section {
  flex: 2;
  min-width: 300px;
}

.search-wrapper {
  width: 100%;
}

.search-input-group {
  display: flex;
  align-items: center;
  position: relative;
  background-color: white;
  border-radius: 12px;
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.search-input-group:focus-within {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-200);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.search-input {
  flex: 1;
  border: none;
  border-radius: 0;
  padding: 14px 16px 14px 42px;
  font-size: 15px;
  background-color: transparent;
  color: var(--text-dark);
  transition: all 0.3s ease;
  height: 54px;
}

.search-input:focus {
  outline: none;
  box-shadow: none;
}

.search-input:focus + .search-icon {
  color: var(--primary-500);
}

.search-button {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--text-light);
  border: none;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  height: 54px;
  white-space: nowrap;
  min-width: 100px;
  flex-shrink: 0;
}

.search-button:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  box-shadow: 0 4px 12px var(--primary-300);
}

.search-button:active {
  transform: translateY(1px);
}

.search-input::placeholder,
.search-input:focus::placeholder,
.search-input:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

.search-input:focus,
.search-input:not(:placeholder-shown) {
  background-color: var(--text-light);
  box-shadow: 0 0 0 3px var(--primary-200);
  border-color: var(--primary-500);
}

/* Floating label placeholder styles */
.floating-placeholder {
  position: absolute;
  left: 3rem; /* align with input padding */
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-600);
  font-size: var(--text-md);
  transition: all var(--transition-normal);
  pointer-events: none;
  padding: 0 var(--space-xs);
}

/* Move placeholder up when typing */
.search-input:focus + .floating-placeholder,
.search-input:not(:placeholder-shown) + .floating-placeholder {
  top: 0;
  left: var(--space-lg);
  font-size: var(--text-xs);
  color: var(--primary-700);
  background-color: var(--text-light);
  padding: 0 var(--space-xs);
  font-weight: 500;
  transform: translateY(-50%);
}

/* Search icon */
.search-icon {
  position: absolute;
  left: var(--space-md);
  z-index: 10;
  top: 60%;
  transform: translateY(-50%);
  color: var(--primary-500);
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
}

.search-input:focus ~ .search-icon,
.search-input:not(:placeholder-shown) ~ .search-icon {
  color: var(--primary-700);
}

/* Type Filter Styles */
.type-section {
  margin-bottom: 20px;
}

.type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.type-option {
  position: relative;
}

.type-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.type-label {
  display: inline-block;
  padding: 10px 18px;
  background-color: white;
  border: 2px solid var(--primary-300);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.type-radio:checked + .type-label {
  background-color: var(--primary-700);
  color: var(--text-light);
  border-color: var(--primary-700);
  box-shadow: 0 4px 12px var(--primary-300);
  transform: translateY(-2px);
}

.type-label:hover {
  border-color: var(--primary-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-100);
}

.type-radio:focus + .type-label {
  box-shadow: 0 0 0 3px var(--primary-200);
}

/* Using logical properties for RTL support */
.filter-container::before {
  inset-inline-start: 0;
}

.search-icon {
  inset-inline-start: 16px;
}

.search-input {
  padding: 14px 16px 14px 42px;
  padding-inline-start: 42px;
  padding-inline-end: 16px;
}

.search-button {
  border-radius: 0 10px 10px 0;
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  border-start-end-radius: 10px;
  border-end-end-radius: 10px;
}

.type-label {
  margin-inline-end: 8px;
}

/* Animation for type options */
.type-option {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.type-option:nth-child(1) {
  animation-delay: 0.1s;
}

.type-option:nth-child(2) {
  animation-delay: 0.15s;
}

.type-option:nth-child(3) {
  animation-delay: 0.2s;
}

.type-option:nth-child(4) {
  animation-delay: 0.25s;
}

.type-option:nth-child(5) {
  animation-delay: 0.3s;
}

/* Custom Form Check */
.form-check {
  padding-left: 38px;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  display: flex;
  align-items: center;
}

.form-check:hover {
  background-color: rgba(0, 159, 227, 0.05);
  transform: translateX(3px);
}

/* Radio button styling */
.form-check-input[type="radio"] {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
  border: 2px solid var(--neutral-300);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all var(--transition-normal);
  background-color: white;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.form-check-input[type="radio"]:hover {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-sm);
}

.form-check-input[type="radio"]:checked {
  border: 2px solid var(--primary-500);
  background-color: var(--primary-500);
  box-shadow: 0 0 0 3px hsla(var(--ring) / 0.15);
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
 
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.form-check-label {
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  font-weight: 400;
  margin-left: 5px;
  text-align: right;
  width: 100%;
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-700);
  font-weight: 600;
  background: none;
}

/* Active filter state */
.form-check.active {
  background-color: rgba(0, 159, 227, 0.08);
  border-radius: 10px;
}

/* RTL support for form checks */
[dir="rtl"] .form-check {
  padding-right: 38px;
  padding-left: 12px;
}

[dir="rtl"] .form-check-input[type="radio"] {
  right: 10px;
  left: auto;
}

[dir="rtl"] .form-check-label {
  margin-right: 5px;
  margin-left: 0;
  text-align: right;
}

/* Provider Dropdown */
.form-select {
  padding: 14px 18px;
  font-size: var(--text-base);
  border: 2px solid hsla(var(--primary) / 0.15);
  border-radius: var(--radius-lg);
  background-color: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234AACB5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: var(--font-medium);
  height: 54px;
  position: relative;
}

.form-select::before {
  content: '\f0b0'; /* Filter icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-500);
}

.form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px hsla(var(--ring) / 0.15);
  outline: none;
}

.form-select:hover {
  border-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Selected option styling */
.form-select option {
  padding: 12px;
  font-weight: 400;
}

.form-select option:checked {
  background-color: var(--primary-100);
  color: var(--primary-700);
  font-weight: 600;
}

/* Service Card Page Styles */

/* Info Section */
.info-section {
  background-color: var(--primary-100);
  border-left: 6px solid var(--primary-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 950px;
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.info-section:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
  opacity: 0.6;
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

.info-section h6 {
  color: var(--primary-700);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.info-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Filter Layout */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .filter-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .services-grid-section .row {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  
  .filter-container {
    padding: 16px;
  }
  
  .filter-section {
    flex: 100%;
    margin-bottom: 15px;
  }
  
  .search-input-group {
    flex-direction: column;
    border-radius: 10px;
    overflow: visible;
    border: none;
    background-color: transparent;
  }
  
  .search-input {
    width: 100%;
    border: 2px solid var(--primary-300);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 12px 16px 12px 42px;
    height: 50px;
  }
  
  .search-button {
    width: 100%;
    border-radius: 10px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .type-options {
    justify-content: center;
  }
  
  .type-option {
    margin-bottom: 8px;
  }
  
  /* Ensure proper icon positioning on mobile */
  .search-icon {
    top: 25px;
    transform: translateY(-50%);
    z-index: 2;
  }
}
/* Service Card Styles */
.service-card-inner {
  padding: 20px;
}
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  /* Improved mobile filter experience */
  .filter-card {
    position: sticky;
    top: 20px;
    z-index: 20;
  }
  
  .filter-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
  
  .form-check {
    padding: 8px 8px 8px 36px;
    margin-bottom: 8px;
  }
  
  .form-check-input {
    left: 8px;
    width: 20px;
    height: 20px;
  }
  
  .form-check-label {
    font-size: 15px;
  }
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.search-button {
  background: none;
  border: none;
  color: #fff !important;
  padding: 5px;
  background: linear-gradient(135deg, var(--gia-primary-color), var(--gia-primary-light)) !important;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* Service Card */
.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.2);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-500);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.2);
}

.service-button:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 159, 227, 0.3);
}

.service-button i {
  transition: transform 0.3s ease;
}

.service-button:hover i {
  transform: translateX(4px);
}

.soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card Component */
.card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  padding: var(--space-md);
  background-color: var(--primary-700);
  color: var(--text-light);
}

.card-body {
  padding: var(--space-lg);
  flex-grow: 1;
}

.card-footer {
  padding: var(--space-md);
  background-color: var(--neutral-100);
  border-top: 1px solid var(--neutral-200);
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: calc(var(--space-xs) / 2) var(--space-sm);
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--primary-100);
  color: var(--primary-700);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: rgb(16, 185, 129);
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: rgb(245, 158, 11);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .info-section {
    padding: var(--space-md);
  }
}

/* service details page start */

/* Steps Section style  */

.step-wrapper .step-dot span {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-wrapper:not(:last-child)::before {
  content: "";
  position: absolute;
  background-color: rgb(0, 119, 170);
  width: 2px;
  height: calc(100% + 1.25rem);
  left: 15px;
  top: 0;
}
.o_rtl .step-wrapper:not(:last-child)::before{
  right: 15px;
}
.step-wrapper:first-child .step-dot span {
  border-bottom: 4px solid rgb(64 75 80);
}
.step-wrapper:last-child .step-dot span {
  border-top: 4px solid rgb(64 75 80);
}

/* service details page end */
