
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../../uploads/web/imgs/about/features-1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}
.my-bg{
    background-color: var(--accent-color);
}
.my-bg h6{
    color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.5s ease;
}

.services .service-card .service-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

.services .service-card .service-icon-wrapper {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.services .service-card .service-icon-wrapper .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-card .service-icon-wrapper .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services .service-card .service-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.services .service-card .service-content .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services .service-card .service-content .service-list li {
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.services .service-card .service-content .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.services .service-card .service-content .service-pricing {
  display: flex;
  justify-content: space-between;

  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .service-card .service-content .service-pricing .price-tag {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .price-tag::before {
  content: "From ";
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services .service-card .service-content .service-pricing .service-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 25px;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn i {
  transition: transform 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .service-btn:hover i {
  transform: translateX(3px);
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.services .service-card:hover::before {
  left: 100%;
}

.services .service-card:hover .service-icon-wrapper .service-icon {
  background: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.services .service-card:hover .service-icon-wrapper .service-icon i {
  color: var(--contrast-color);
}

.services .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.services .service-card.featured .service-number {
  background: var(--contrast-color);
  color: var(--accent-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.services .service-card.featured .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
}

.services .service-card.featured .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

.services .service-card.featured .service-content h4 {
  color: var(--contrast-color);
}

.services .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.services .service-card.featured .service-content .service-list li {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.services .service-card.featured .service-content .service-list li::before {
  background: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing {
  border-top-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services .service-card.featured .service-content .service-pricing .price-tag {
  color: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing .price-tag::before {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services .service-card.featured .service-content .service-pricing .service-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing .service-btn:hover {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.services .service-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
  transform: rotate(-5deg) scale(1.1);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-card {
    padding: 30px 20px;
  }

  .services .service-card .service-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .services .service-card .service-icon-wrapper .service-icon {
    width: 60px;
    height: 60px;
  }

  .services .service-card .service-icon-wrapper .service-icon i {
    font-size: 28px;
  }

  .services .service-card .service-content h4 {
    font-size: 20px;
  }

  .services .service-card .service-content .service-pricing .price-tag {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services .service-card {
    padding: 25px 15px;
  }

  .services .service-card .service-content .service-pricing {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .services .service-card .service-content .service-pricing .service-btn {
    width: 100%;
    justify-content: center;
  }
}
