.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #f8f9fa;
}

.hero-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  border-radius: 20px;
  width: 100%;
  max-width: 1440px;
  min-height: 545px;
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  margin: 0 auto;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.85) 0%,
    rgba(118, 75, 162, 0.8) 25%,
    rgba(240, 147, 251, 0.75) 50%,
    rgba(245, 87, 108, 0.8) 75%,
    rgba(79, 172, 254, 0.85) 100%
  );
  z-index: 1;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

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

.hero-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  max-width: 500px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
}

.cta-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* Bootstrap responsive adjustments */
@media (max-width: 1400px) {
  .hero-card {
    max-width: 95%;
    padding: 3rem 2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-card {
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    max-width: 400px;
  }
}

@media (max-width: 767.98px) {
  .hero-card {
    margin: 1rem;
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .hero-image {
    max-width: 300px;
  }
}

@media (max-width: 575.98px) {
  .hero-container {
    padding: 1rem 0.5rem;
  }

  .hero-card {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-image {
    max-width: 250px;
  }
}

.row {
  --bs-gutter-x: 0;
}

.container-fluid {
  padding: 0;
}