/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
 
/* Navbar */
.navbar {
  background: #0a3d62;
  padding: 1rem 0;
  color: #fff;
}
 
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
 
.navbar .logo {
  height: 50px;
}
 
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
 
.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
 
.navbar nav ul li a:hover {
  text-decoration: underline;
}
 
/* Hero */
.hero {
  background: url('assets/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
 
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
 
.hero p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
 
.btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
 
.btn:hover {
  background: #cf711f;
}
 
/* Sections */
.section {
  padding: 60px 20px;
}
 
.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #0a3d62;
}
 
.alt-bg {
  background: #f4f4f4;
}
 
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
 
.service {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  text-align: center;
}
 
.service img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
 
.service h3 {
  margin-bottom: 10px;
  color: #e67e22;
}
 
/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
 
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
 
.contact-form button {
  background: #0a3d62;
  color: #fff;
  border: none;
  cursor: pointer;
}
 
.contact-form button:hover {
  background: #062a44;
}
 
/* Footer */
.footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}