/* Reset and base styling */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #062b44;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  background-color: #062b44;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  height: 50px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #d3ecff;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #062b44 0%, #175c8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffffff;
  color: #062b44;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #e2ecf3;
  transform: scale(1.05);
}

/* Features */
.features {
  background-color: #f5f9fc;
  padding: 80px 20px;
  animation: fadeInUp 1.4s ease;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 30%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Mid CTA */
.mid-cta {
  background-color: #062b44;
  color: white;
  text-align: center;
  padding: 70px 20px;
  animation: fadeIn 1.6s ease;
}

.cta-button-alt {
  background-color: #ffffff;
  color: #062b44;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.cta-button-alt:hover {
  background-color: #d3ecff;
  transform: scale(1.05);
}

/* Industry List */
.industry-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  font-size: 1.1rem;
}

.industry-list li {
  background-color: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.industry-list li:hover {
  background-color: #e2ecf3;
  transform: scale(1.04);
}

/* Footer */
.footer {
  background-color: #062b44;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
  }

  .nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }
}
