/* style.css */

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

body {
  font-family: Arial, sans-serif;
  background: #050816;
  color: white;
  line-height: 1.6;
}

header {
  background: #0f172a;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #1e293b;
}

header h1,
header h2 {
  margin-bottom: 10px;
}

nav a {
  color: #60a5fa;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 20px;
}

.hero-content {
  max-width: 800px;
}

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

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #1d4ed8;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.section h2 {
  margin-bottom: 30px;
  font-size: 36px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.content-grid img {
  width: 100%;
  border-radius: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  padding: 20px 20px 10px;
}

.card p {
  padding: 0 20px 20px;
}

.mission-card {
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
}

.mission-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.mission-card div {
  padding: 25px;
}

footer {
  text-align: center;
  background: #0f172a;
  padding: 25px;
  margin-top: 50px;
  border-top: 1px solid #1e293b;
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

}