/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f4f6f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #0a3d62;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

header nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ffc312;
}

/* Hero Banner */
.hero {
  background: url('https://images.unsplash.com/photo-1533750516457-a7f992034fec?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  color: #fff;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #ffc312;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .btn {
  background: #ffc312;
  color: #333;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #f6b10a;
}

/* Services */
.services {
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: #555;
}

/* Contact Form */
.contact {
  background: #eaf0f6;
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

input, textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

button {
  background: #0a3d62;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

button:hover {
  background: #06407a;
}

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
