/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0A2240;
  font-size: 24px;
  font-weight: 700;
}
.logo img {
  max-height: 50px;
  margin-right: 10px;
}
.nav ul {
  list-style: none;
  display: flex;
}
.nav ul li {
  margin-left: 20px;
}
.nav ul li a {
  text-decoration: none;
  color: #0A2240;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav ul li a:hover,
.nav ul li a.active {
  color: #F1B82D;
}

/* Hero Section with home background (hpbg.png) */
.hero {
  background: url('hpbg.png') no-repeat center center/cover;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,34,64,0.6);
}
.hero-container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background: #F1B82D;
  color: #0A2240;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #d9a31d;
}

/* Page Header (for inner pages) */
.page-header {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.page-header .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,34,64,0.6);
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: 36px;
}

/* Section Headings */
.services-overview, .why-choose-us, .cta, .about-content, .services-details, .contact-form-section {
  padding: 60px 0;
}
.services-overview h2,
.why-choose-us h2,
.cta h2,
.about-content h2,
.services-details h2,
.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #0A2240;
}

/* Grid Layouts */
.services-grid, .features-grid, .team-grid {
  display: grid;
  gap: 20px;
}
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}
.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

/* Service Item */
.service-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #0A2240;
}
.service-item p {
  font-size: 16px;
  color: #555;
}

/* Feature Items (Why Choose Us) */
.feature-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #0A2240;
}
.feature-item p {
  font-size: 16px;
  color: #555;
}

/* Services Details */
.services-details .service-detail {
  margin-bottom: 40px;
}
.services-details .service-detail h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0A2240;
}
.services-details .service-detail p {
  font-size: 16px;
  color: #555;
}

/* Team (if needed) */
.team-member {
  text-align: center;
}
.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
}
.team-member h3 {
  font-size: 20px;
  color: #0A2240;
  margin-bottom: 5px;
}
.team-member p {
  font-size: 16px;
  color: #555;
}

/* Contact Form */
.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-section form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form-section form input,
.contact-form-section form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-radius: 3px;
  font-size: 16px;
}
.contact-form-section form button {
  width: 100%;
  padding: 12px;
  background: #F1B82D;
  color: #0A2240;
  border: none;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form-section form button:hover {
  background: #d9a31d;
}

/* Call to Action Section */
.cta {
  background: #0A2240;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta a.btn {
  background: #F1B82D;
  color: #0A2240;
}

/* Footer */
footer {
  background: #0A2240;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  .page-header h1 {
    font-size: 28px;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    margin: 10px 0;
  }
}

/* Custom styling for the centered, shorter "Get in Touch" button */
.get-in-touch-button {
  display: block;
  margin: 40px auto 0;
  max-width: 200px;
  text-align: center;
}
