/* Oasis-style hero */
body {
  background-color: #e6f7f7;
  background-image: radial-gradient(circle at 10% 20%, rgba(176, 224, 230, 0.7) 0%, rgba(224, 245, 245, 0.3) 90%);
}
.header-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #20B2AA;
  text-decoration: none;
}
.header-logo img {
  height: 32px;
  margin-right: 8px;
}
.nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.nav-link-dropdown::after {
  content: "▼";
  font-size: 8px;
  margin-left: 5px;
  position: relative;
  top: -2px;
}
.btn-login {
  background-color: #20B2AA;
  color: white;
  border-radius: 6px;
  padding: 8px 24px;
  font-weight: 500;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.hero-badge-avatars {
  display: flex;
  margin-right: 8px;
}
.hero-badge-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.hero-badge-avatar:first-child {
  margin-left: 0;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.hero-title-highlight {
  color: #20B2AA;
  border: 2px solid #20B2AA;
  border-radius: 4px;
  padding: 0 8px;
  position: relative;
}
.hero-subtitle {
  color: #555;
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.btn-get-started {
  background-color: #20B2AA;
  color: white;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 500;
}
.btn-watch-demo {
  background-color: #B0E0E6;
  color: #333;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trusted-by {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.client-logo {
  height: 28px;
  opacity: 0.7;
}

/* Original styles */
.expertise-card {
  border: none;
  border-bottom: 1px solid #d3d3d3;
  border-radius: 0;
  margin-bottom: 1.5rem;
  background: transparent;
}
.expertise-card:last-child {
  border-bottom: none;
}
.expertise-btn {
  border: 1px solid #20B2AA;
  color: #20B2AA;
  border-radius: 20px;
  padding: 0.25rem 1.25rem;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.expertise-btn:hover {
  background: #20B2AA;
  color: #fff;
}
.expertise-title {
  font-family: serif;
  font-size: 2rem;
  font-weight: 500;
}
.expertise-section-title {
  font-family: serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.expertise-industry-title {
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
}
/* Add serif fonts to all headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: serif;
}

/* Additional color classes */
.bg-primary {
  background-color: #20B2AA !important;
}
.bg-secondary {
  background-color: #B0E0E6 !important;
}
.text-primary {
  color: #20B2AA !important;
}
.text-secondary {
  color: #3f3f3f !important;
}
.btn-primary {
  background-color: #20B2AA;
  border-color: #20B2AA;
}
.btn-secondary {
  background-color: #B0E0E6;
  border-color: #B0E0E6;
  color: #333;
}
.badge-primary {
  background-color: #20B2AA;
}
.badge-secondary {
  background-color: #B0E0E6;
  color: #333;
} 