/* Global Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header and Navigation */
header {
  background: #004080;
  color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('../1ca01cc2-92c9-49cb-8afb-7907e20fbff0.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  background: #0073e6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}

.btn:hover {
  background: #005bb5;
}

/* Expertise / Cards */
.expertise {
  padding: 3rem 0;
}

.expertise h2,
.why-us h2,
.cta h2 {
  color: #004080;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: #004080;
  margin-top: 0;
}

/* Why Us Section */
.why-us {
  background: #eaf0f6;
  padding: 3rem 0;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 3rem 0;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Page Hero */
.page-hero {
  background: #004080;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  margin-top: 0;
}

/* Service Details */
.service-detail .container {
  margin-bottom: 2rem;
}

.service-detail h2 {
  color: #004080;
  margin-top: 0;
}

.service-detail p {
  max-width: 800px;
}

/* About Page */
.about-content h2 {
  color: #004080;
  margin-top: 0;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content li {
  margin-bottom: 0.5rem;
}

/* Forms */
form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #004080;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

form button {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease-in-out;
}

form button:hover {
  background: #005bb5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}