/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Background and container */
body {
  background-color: #F0F0F0;
  color: #1a202c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to bottom right, #2d3748, #1a202c, #0bc1d2);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-blur {
  position: absolute;
  background: rgba(6, 174, 255, 0.2);
  border-radius: 9999px;
  filter: blur(100px);
}

.top-left {
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
}

.bottom-right {
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
}

.hero-content {
  padding: 0 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #0bc1d2;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.highlight {
  color: #0bc1d2;
}

.hero-description {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #cbd5e0;
}

.cta-buttons {
  margin-top: 40px;
}

.cta-button {
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button.primary {
  background-color: #0bc1d2;
  color: #1a202c;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
  background-color: #3b82f6;
}

.cta-button.secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #0bc1d2;
}

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  margin-top: 8px;
}

/* Industry Focus */
.industry-focus {
  padding: 100px 0;
  background-color: #f7fafc;
}

.industry-cards {
  display: flex;
  gap: 40px;
}

.industry-card {
  background-color: white;
  padding: 40px;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.industry-card.subsea {
  background-color: #f1f5f9;
}

.industry-card.gmp {
  background-color: #2d3748;
  color: white;
}

.icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  color: #0bc1d2;
}

.industry-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.industry-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-features {
  list-style-type: none;
  margin-top: 20px;
}

.industry-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.industry-features li::before {
  content: "•";
  font-size: 1.5rem;
  color: #0bc1d2;
  margin-right: 10px;
}

/* Portfolio Section */
.research-portfolio {
  padding: 80px 0;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-card {
  background-color: white;
  padding: 20px;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
}

/* CTA Section */
.cta {
  background-color: #2d3748;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}