/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0a2540;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover {
  color: #00b4d8;
}

/* Hero */
.hero {
  background: url("images/photo-1535223289827-42f1e9919769.avif?auto=format&fit=crop&w=1600&q=80")
    no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 80px 40px;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a2540;
}
.section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.section img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.service-card img {
  border-radius: 8px;
  margin-bottom: 15px;
  max-height: 180px;
  object-fit: cover;
}
.service-card h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form button {
  background: #0a2540;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #0077b6;
}

/* Footer */
.footer {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
