/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item h5 {
  color: var(--default-color);
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 10px;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about .content h3 {
    font-size: 1.1rem;
    font-weight: 700;
  }

  .about .content ul {
    list-style: none;
    padding: 0;
  }
  
  .about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
  }
  
  .about .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.2;
    font-size: 1.25rem;
  }
  
  .about .content p {
    text-align: justify;
  }

  .about .content p:last-child {
    margin-bottom: 0;
  }

  .about .btn-get-started {
    color: white;
    background-color: var(--accent-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    padding: 12px 40px;
    margin: 30px 0 0 0;
    border-radius: 4px;
    transition: 0.5s;
  }
  
  .about .btn-get-started:hover {
    background-color: color-mix(in srgb, var(--accent-color) 80%, white 15%);
  }
  
  /*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
  .featured-services .card {
    background-color: var(--background-color);
    color: var(--default-color);
    border: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 500px;
  }
  
  .featured-services .card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
    z-index: 2;
  }
  
  .featured-services .card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .featured-services .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 30px;
  }
  
  .featured-services .card .card-body h3 {
    font-weight: 700;
    font-size: 20px;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
  }
  
  .featured-services .card .card-body h3 a {
    color: var(--contrast-color);
  }
  
  .featured-services .card .card-body .card-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .featured-services .card .card-body .card-content p {
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--contrast-color);
  }
  
  .featured-services .card:hover .card-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
  }

  /*--------------------------------------------------------------
  # Steps Section
  --------------------------------------------------------------*/
  .steps .section-title {
    padding-bottom: 60px;
    position: relative;
  }

  .steps .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
  }

  .steps .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
  }

  .steps .section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
  }

  .steps .steps-wrapper {
    position: relative;
    padding: 20px 0;
  }

  .steps .steps-wrapper::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .steps .step-item {
    margin-bottom: 50px;
    width: 100%;
    position: relative;
  }

  .steps .step-item:last-child {
    margin-bottom: 0;
  }

  .steps .step-item:nth-child(even) .step-content {
    flex-direction: row-reverse;
  }

  .steps .step-content {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .steps .step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease-in-out;
  }

  .steps .step-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: transform 0.3s ease-in-out;
  }

  .steps .step-info {
    flex: 1;
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
  }

  .steps .step-info:hover {
    transform: translateY(-5px);
  }

  .steps .step-number {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .steps h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .steps p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  @media (max-width: 991px) {
    .steps .steps-wrapper::before {
      left: 25px;
    }

    .steps .step-item .step-content {
      flex-direction: row !important;
    }

    .steps .step-icon {
      width: 60px;
      height: 60px;
    }

    .steps .step-icon i {
      font-size: 24px;
    }

    .steps .step-info {
      padding: 20px;
    }

    .steps h3 {
      font-size: 1.3rem;
    }
  }

  @media (max-width: 767px) {
    .steps .step-content {
      gap: 20px;
    }

    .steps .step-icon {
      width: 50px;
      height: 50px;
    }

    .steps .step-icon i {
      font-size: 20px;
    }

    .steps .step-info {
      padding: 15px;
    }

    .steps h3 {
      font-size: 1.2rem;
    }

    .steps p {
      font-size: 0.95rem;
    }
  }
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
  }
  
  .call-to-action p {
    color: var(--default-color);
  }
  
  .call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
  }
  
  .call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
  }

  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
  }
  
  .portfolio .portfolio-item img {
    transition: all ease-in-out 0.4s;
  }
  
  .portfolio .portfolio-item:hover img {
    transform: scale(1.1);
  }

  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials .testimonial-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
    color: #FFD700;
  }

  .testimonials .testimonial-item .stars i {
    margin-right: 2px;
  }

  .testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--default-color);
  }

  .testimonials .testimonial-item .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author {
    display: flex;
    align-items: center;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 36px;
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
    line-height: 1;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon i {
    transform: scaleX(-1);
  }

  @media (max-width: 768px) {
    .testimonials .testimonial-item {
      padding: 25px 20px;
    }

    .testimonials .testimonial-item p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
      width: 45px;
      height: 45px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
      font-size: 16px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
      font-size: 13px;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
      font-size: 30px;
    }
  }

  @media (max-width: 576px) {
    .testimonials .testimonial-item {
      padding: 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }
  }

  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  .faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
  }

  .faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
  }

  .faq .faq-arrow {
    color: var(--accent-color);
  }

  .faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }

  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
  }

  .faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }

  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }

  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }

  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }

  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }

  .faq .faq-container .faq-active h3 {
    color: var(--accent-color);
  }

  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }

  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }