/* ---------------------------
   GLOBAL STYLES
---------------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1c1f26; /* Dark navy text */
  line-height: 1.6;
}

h1, h2, h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #0a4ba0; /* Primary blue */
}

/* ---------------------------
   HEADER
---------------------------- */
.main-header {
  background-color: #0a4ba0; /* Primary blue */
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  flex-wrap: wrap;
}
/* ---------------------------
   LOGO AREA
---------------------------- */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;          /* remove if you want sharp edges */
  background-color: #ffffff;   /* makes logo pop on blue header */
  padding: 4px;
}

.logo-text h1 {
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: #bfc5d2;
  margin: 2px 0 0;
}


.main-header h1 {
  font-size: 1.8rem;
  margin: 0;
}

.tagline {
  font-size: 0.9rem;
  margin-top: 4px;
}

nav a {
  color: white;
  margin: 0 12px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #bfc5d2; /* Light silver hover */
}

.btn-nav {
  background-color: #ffffff;
  color: #0a4ba0;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: 600;
}

.btn-nav:hover {
  background-color: #e9f1fb; /* light blue hover */
}

/* ---------------------------
   HERO SECTION
---------------------------- */
.hero {
  background: linear-gradient(
              rgba(10, 75, 160, 0.7),
              rgba(10, 75, 160, 0.7)
            ),
            url("images/mesh-ErMrzAqjrq8-unsplash.jpg") center center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-request {
  background-color: #ffffff;
  color: #0a4ba0;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-request:hover {
  background-color: #e9f1fb;
}

/* ---------------------------
   ABOUT
---------------------------- */
.about {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ---------------------------
   SERVICES
---------------------------- */
.services {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-grid div {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-grid div:hover {
  transform: translateY(-6px);
}

/* ---------------------------
   CONTACT
---------------------------- */
.contact {
  padding: 80px 20px;
  text-align: center;
  background-color: #e9f1fb; /* light blue background */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 30px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #bfc5d2;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-submit {
  background-color: #0a4ba0;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c1f26; /* dark navy hover */
}

.call-direct a {
  color: #0a4ba0;
  font-weight: 600;
}

/* ---------------------------
   FOOTER
---------------------------- */
footer {
  background-color: #0a4ba0;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ---------------------------
   SUCCESS MESSAGE
---------------------------- */
.form-success {
  color: #0a4ba0;
  background-color: #e9f1fb;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* ---------------------------
   RESPONSIVE DESIGN
---------------------------- */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    text-align: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
