.visually-hidden
{
    display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(1, 112, 168, 0.1),
    rgba(25, 184, 216, 0.1)
  );
  border: 1px solid rgba(1, 112, 168, 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, #0170a8, #19b8d8);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, #0170a8, #19b8d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
  margin-bottom: 1rem;
}

.hero-description {
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
  font-size: 1rem;
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #0170a8, #19b8d8);
  background-size: 200% 200%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 25px rgba(1, 112, 168, 0.3);
  transform: translateY(-3px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    rgba(1, 112, 168, 0.3),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: var(--color-background);
  border: 2px solid #e5e7eb;
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: #0170a8;
  color: #0170a8;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 112, 168, 0.3), transparent);
}

.floating-card {
  position: absolute;
  background: var(--color-bg);
  border: 1px solid #f0f0f0;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  z-index: 5;
}

.floating-card-1 {
  top: 3%;
  left: -6%;
}

.floating-card-2 {
  bottom: -4%;
  right: -6%;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, #0170a8, #19b8d8);
  border-radius: 12px;
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.card-title {
  font-weight: 600;
  color: var(--color-text);
}

.card-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.hero-bg-1 {
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(to bottom right, #0170a8, #19b8d8);
}

.hero-bg-2 {
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(to top right, #19b8d8, #0170a8);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#0170a8 1px, transparent 1px),
    linear-gradient(90deg, #0170a8 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.03;
  pointer-events: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-up-delayed {
  animation: fadeUp 0.8s 0.2s ease-out forwards;
}

.fade-up-delayed2 {
  animation: fadeUp 0.8s 0.3s ease-out forwards;
}

.fade-up-delayed3 {
  animation: fadeUp 0.8s 0.4s ease-out forwards;
}

.fade-up-delayed4 {
  animation: fadeUp 0.8s 0.5s ease-out forwards;
}

.fade-up-delayed5 {
  animation: fadeUp 0.8s 0.6s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-scale {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 0.8s 0.4s ease-out forwards;
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-slide-left {
  opacity: 0;
  transform: translate(-20px, 20px);
  animation: fadeSlideLeft 0.8s 0.8s ease-out forwards;
}

.fade-slide-right {
  opacity: 0;
  transform: translate(20px, -20px);
  animation: fadeSlideRight 0.8s 1s ease-out forwards;
}

@keyframes fadeSlideLeft {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeSlideRight {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem;
    margin-top: 7rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-wrapper {
    height: 30rem;
  }

  .floating-card-1 {
    top: -6%;
    left: -6%;
  }

  .floating-card-2 {
    bottom: 2%;
    right: -6%;
  }
}

@media (max-width: 450px) {
    .hero-grid {
        margin-top: 6rem;
        text-align: left;
    }

    .hero-image-wrapper {
        height: 25rem;
    }

    .hero-image {
        height: 500px;
    }

    .hero-buttons {
      flex-wrap: wrap;
      justify-content: start;
    }

}

.hero-bg,
.hero-grid-pattern {
  pointer-events: none;
  z-index: 0;
}

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

.hero-bg-1,
.hero-bg-2 {
  z-index: 1;
}
