* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Mobile Menu Styles */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

#mobile-menu a {
  border-bottom: 1px solid #334155;
}

#mobile-menu a:last-child {
  border-bottom: none;
}

#mobile-menu-button {
  transition: transform 0.3s ease;
}

#mobile-menu-button:hover {
  transform: scale(1.1);
}

#mobile-menu-button:active {
  transform: scale(0.95);
}

.hero-section {
  /* background: #1e3a8a; */
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.section-title {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border: 1px solid #475569;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.company-card:hover::before {
  left: 100%;
}

.company-card:hover {
  transform: translateY(-8px);
  border-color: #60a5fa;
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.3);
}

.coming-soon-card {
  opacity: 0.7;
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.ceo-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  color: white;
}

.icon-wrapper i {
  color: white;
}

.company-card:hover .icon-wrapper {
  transform: rotate(360deg);
}

.pattern-bg {
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.ceo-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
  object-fit: cover;
}

/* Logo in Navigation */
.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hero Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("./images/backgrounds/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
}

/* Value Cards with Images */
.value-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border: 1px solid #475569;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #60a5fa;
  box-shadow: 0 15px 40px rgba(96, 165, 250, 0.2);
}

.value-image-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.value-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.value-icon-fallback {
  display: none;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}

/* Company Logos/Images */
.company-image-container {
  position: relative;
  margin-bottom: 16px;
}

.company-logo {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
}

.company-image-container .icon-wrapper {
  display: none;
}

.company-logo + .icon-wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .ceo-image {
    width: 150px;
    height: 150px;
  }

  .value-image,
  .value-icon-fallback {
    height: 150px;
  }
}
