#solutions .wave-separator {
  position: absolute;
  top: -100px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

#solutions .wave-separator img {
  display: block;
  width: 100%;
  height: auto;
}

#solutions .animation-container svg {
  width: 20%;
  filter: grayscale(100%) brightness(150%);
}

#solutions.anchor-section {
  position: relative;
  height: 100vh;
  margin-bottom: 10%;
}

#solutions .hero-container {
  position: relative;
  background-color: #0f0600;
}

#solutions .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#solutions .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#solutions .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    #232022 0%,
    rgba(22, 21, 22, 0) 100%
  );
}

#solutions .content-wrapper {
  position: relative;

  margin: 0 auto;
  padding: 0 30px;
  padding-top: 3%;
}

#solutions .header-content {
  text-align: center;
  /* margin-bottom: 50px;
    padding-top: 3%; */
}

#solutions .main-title {
  font-size: 64px;
  color: #e65f0d;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: -0.001em;
  /* margin-bottom: 10%; */
  font-size: 3.86em;
  font-weight: 700;
  line-height: 0.9;
}

#solutions .subtitle {
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#solutions .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 5%;
}

#solutions .service-card {
  /* background: linear-gradient(135deg, rgba(27, 24, 26, 0.8) 0%, rgba(27, 24, 26, 0.95) 100%); */
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

#solutions .service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(230, 126, 34, 0.1) 0%,
    transparent 60%
  );
  transform: rotate(45deg);
  pointer-events: none;
}


#solutions .animation-container {
  margin-bottom: 25px;
  position: relative;
}

#solutions .animation-container svg {
  width: 60px;
  height: 60px;
  filter: grayscale(0%) brightness(100%);
  color: #e65f0d;
  transition: transform 0.3s ease;
}

#solutions .service-card:hover .animation-container svg {
  transform: scale(1.1);
}

#solutions .card-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}


#solutions .card-title {
  font-family: "Neucha", sans-serif;
  font-size: 28px;
  color: #ffffff;
  margin: 15px 0;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

#solutions .card-subtitle {
  font-size: 13px;
  color: #e65f0d;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}

#solutions .card-text {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

#solutions .btn-primary {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: linear-gradient(45deg, #e65f0d 0%, #e65F0d 100%);
  padding: 0.9em 1.8em;
  margin-top: 25px;
  border-radius: 30px;
  letter-spacing: 0.12em;
  font-size: 0.9em;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

#solutions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

#solutions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  background: linear-gradient(45deg, #e65F0d 0%, #e65f0d 100%);
}

#solutions .btn-primary:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  #solutions .main-title {
    font-size: 1.96em;
    margin-top: 11%;
  }
  #solutions .desktop-only {
    display: none;
  }
  #solutions .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scroll-padding: 20px;
  }

  #solutions .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 25px;
  }

  #solutions .card-title {
    font-size: 24px;
  }

  #solutions .card-text {
    font-size: 0.9rem;
  }

  #solutions .btn-primary {
    padding: 0.8em 1.5em;
    font-size: 0.85em;
  }

  #solutions .services-grid::-webkit-scrollbar {
    height: 4px;
  }

  #solutions .services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  #solutions .services-grid::-webkit-scrollbar-thumb {
    background: rgba(230, 126, 34, 0.5);
    border-radius: 2px;
  }
}

@media (min-width: 769px) {
  #solutions .mobile-only {
    display: none !important;
  }
}
