/* Custom Hero Design - Bold & Professional */

/* Hero Container */
.hero-custom {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

/* Gradient Background with Pattern */
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 50%, #0f172a 100%);
}

.hero-gradient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 124, 172, 0.1) 0%, transparent 50%);
}

.hero-gradient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.3;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Logo Container - Large & Prominent */
.hero-logo-container {
  margin: 0 auto 48px;
  position: relative;
}

.logo-outer-ring {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  padding: 4px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 2px 10px rgba(255,255,255,0.1);
  position: relative;
}

.logo-outer-ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.logo-inner-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.logo-inner-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Typography - Bold & Prominent */
.hero-company-name {
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.hero-role {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.hero-location-date {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.info-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Decorative Accent Line for Depth */
.hero-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
  margin: 0 auto 32px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-company-name {
    font-size: 36px;
  }
  
  .hero-role {
    font-size: 18px;
  }

  .logo-outer-ring {
    width: 160px;
    height: 160px;
  }

  .hero-location-date {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-custom {
    min-height: 450px;
    padding: 60px 24px;
  }
}