/* style.css */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background-color: #002b5b;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.nav ul {
  display: flex;
  gap: 20px;
}
.nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #66ccff;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #eaf6ff, #f8fafc);
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002b5b;
}
.hero p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #444;
}
.cta-button {
  background-color: #0066cc;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #004b99;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 70px 0;
  background-color: #ffffff;
}
.services h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #002b5b;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: #f2f7fb;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h4 {
  margin-bottom: 10px;
  color: #004b99;
}

/* ABOUT SECTION */
.about {
  padding: 70px 0;
  text-align: center;
}
.about h3 {
  font-size: 1.8rem;
  color: #002b5b;
  margin-bottom: 20px;
}
.about p {
  max-width: 700px;
  margin: 0 auto 25px;
}
.highlights {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  color: #004b99;
}
.highlights li {
  margin: 10px 0;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background-color: #002b5b;
  color: white;
  padding: 20px 0;
  margin-top: 60px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  color: #66ccff;
  margin-left: 15px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
