/* styles.css */

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.hero {
  background: linear-gradient(to bottom right, #0d1b2a, #1b263b);
  color: #aaa;
  padding: 120px 0;
  text-align: center;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: #ccc;
}

.intro, .applications, .project, .contact {
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 30px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  background: #1b263b;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #0d1b2a;
  color: #aaa;
  font-size: 0.9rem;
}
