

#hero-home {
  min-height: 88vh;
  background: var(--color-primary);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#hero-home::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

#hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      4px 4px at 10% 20%,
      rgba(255, 255, 255, 0.1),
      transparent
    ),
    radial-gradient(2.5px 2.5px at 25% 65%, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(3px 3px at 80% 45%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(2px 2px at 50% 15%, rgba(255, 255, 255, 0.06), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

#hero-home .hero-heading {
  color: #fff;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

#hero-home .description.clr-text-dark {
  color: rgba(255, 255, 255, 0.92) !important;
  position: relative;
  z-index: 1;
}

.hero-ellipse {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  height: 16rem;
  box-shadow: 0 0 80px rgba(0, 134, 205, 0.3);
  border-radius: 50%;
  animation: ellipsePulse 6s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes ellipsePulse {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) scale(1.2); }
}

#hero-home input,
#hero-home .form-control {
  font-size: 1.75rem;
  height: 100%;
  padding-left: 5.4rem;
  padding-right: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-input);
  background: #fff !important;
  color: #1F2937 !important;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#hero-home input:hover,
#hero-home .form-control:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

#hero-home input:focus,
#hero-home .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(0, 134, 205, 0.15);
}

#hero-home input::placeholder {
  color: #9CA3AF;
}

#hero-home .search-form button {
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.9;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--color-accent-orange) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(246, 139, 32, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#hero-home .search-form button:hover {
  background: var(--color-accent-orange-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 139, 32, 0.4);
}

#hero-home .search-form button:focus {
  outline: 2px solid var(--color-accent-orange);
  outline-offset: 2px;
}

#hero-home .search-form button:active {
  transform: translateY(0);
}

#features-home .card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-saas);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

#features-home .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

#features-home .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 134, 205, 0.12);
  border-color: rgba(0, 134, 205, 0.2);
}

#features-home .card:hover::before {
  transform: scaleX(1);
}

#features-home .card.active {
  background: #FFFFFF !important;
  border: 2px solid #0086CD;
}

#features-home figure {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-card);
  background: #F0F6FC;
  padding: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#features-home .card:hover figure {
  background: rgba(0, 134, 205, 0.12);
  transform: scale(1.05);
}

#features-home .feature-fig-icon {
  font-size: 2.4rem;
  color: var(--color-primary);
}

#features-home .card-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1F2937;
  transition: color 0.3s ease;
}

#features-home .card-desc {
  color: #475569;
  transition: color 0.3s ease;
  font-size: 1.35rem;
  line-height: 1.5;
}

#features-home .card.active .card-desc {
  color: #475569;
}

#features-home .card a:focus-visible,
#features-home .card:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-card);
}

#banner-home .container {
  border-radius: var(--radius-24);
}

#banner-home .content {
  padding: 2rem;
  border-radius: var(--radius-card);
  overflow: visible;
  position: relative;
  background: var(--color-primary) !important;
  box-shadow: var(--shadow-saas);
}

#banner-home .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      3px 3px at 10% 10%,
      rgba(255, 255, 255, 0.08),
      transparent
    ),
    radial-gradient(2.5px 2.5px at 25% 85%, rgba(255, 255, 255, 0.06), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

#banner-home .content .left-side {
  position: relative;
  z-index: 1;
}

#banner-home .section-heading {
  font-size: 2.8rem;
  color: #ffffff !important;
}

#banner-home .description {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

#banner-home .secondary-btn {
  background: #FFFFFF !important;
  color: #0086CD !important;
  border: 1px solid #FFFFFF !important;
  border-radius: var(--radius-btn);
}

#banner-home .secondary-btn:hover {
  background: #F0F6FC !important;
  color: #006FA8 !important;
  border-color: #F0F6FC !important;
}

#banner-home .secondary-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

#banner-home .main-container {
  position: relative;
}

@media (max-width: 1023px) {
}

@media (max-width: 767px) {
  #hero-home {
    min-height: 88vh;
  }
}

