/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 03 2026 | 08:05:54 */
/* Hero Base Section */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('https://ams-staging.webtechbuddie.cloud/wp-content/uploads/2026/07/team-front-1920x580-1.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Premium Gradient Overlay (#000) for sharp text contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

/* Brand Tag styling using Amber (#f59e0b) */
.hero-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-accent-dot {
  width: 6px;
  height: 6px;
  background-color: #f59e0b;
  border-radius: 50%;
  display: inline-block;
}

.hero-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #f59e0b;
}

/* Bold Typography Layout */
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px 0;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Highlight text using your Amber palette color */
.text-highlight {
  color: #f59e0b;
}

/* Polished Description Text */
.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 36px;
  color: #cccccc;
  font-weight: 400;
}

.text-white {
  color: #fff;
  font-weight: 600;
}

/* Premium CTA Button using Green (#018400) */
.hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background-color: #018400;
  border: 2px solid #018400;
  border-radius: 8px; /* Slight radius looks cleaner & more modern than round pills */
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(1, 132, 0, 0.4);
}

.hero-actions .btn-primary svg {
  transition: transform 0.25s ease;
}

/* Interaction Effects */
.hero-actions .btn-primary:hover {
  background-color: #02a300;
  border-color: #02a300;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(1, 132, 0, 0.5);
}

.hero-actions .btn-primary:hover svg {
  transform: translateX(4px);
}

/* Trust Badges Zone */
.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  color: #018400;
  font-weight: 800;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-section {
    min-height: 520px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
}