.hero {
    width: 100%;
    min-height: 30vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    background: url(https://img.yunhan-ai.com/yunhan-official/tourism-banner.jpg);
    background-position: center;
    background-size: cover;
  }
  
  .hero::after{
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
      z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .hero h2 {
    margin: 0 0 10px 0;
    font-size: 38px;
    font-weight: 700;
  }
  
  .hero h2 .underlight {
    position: relative;
    z-index: 1;
    padding: 0 5px;
    display: inline-block;
  }
  
  .hero h2 .underlight:before {
    content: "";
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    z-index: -1;
  }
  
  .hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
    font-size: 18px;
  }
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 32px;
    }
  }
  
  .hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 8px 40px;
    border-radius: 4px;
    transition: 0.5s;
    border: 2px solid var(--accent-color);
  }
  
  .hero .btn-get-started:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  }
  


.services-3 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.services-3 .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services-3 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services-3 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.services-3 .service-item:hover {
  transform: scale(1.05);
}

.services-3 .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services-3 .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services-3 .service-item h3 a {
  color: var(--heading-color);
}

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

.services-3 .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .services-3 h2 {
    font-size: 2rem;
  }
}




.features .features-image {
    position: relative;
    min-height: 400px;
}

.features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.features h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features .icon-box {
    margin-top: 30px;
}

.features .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.features .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.features .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}


.cards .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    padding: 30px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}

.cards .card img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}

.cards .card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cards .card:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.cards .card:hover img {
    transform: scale(1);
}