/* NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  background-color: #004466;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #28a745; /* Highlight on hover */
}



/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}
h1, h2, h3 {
  color: #004466;
}
button, .cta-button {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* HERO */
/* HERO STYLING */
#hero {
  background: url("../images/hero-banner.jpg") center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 68, 102, 0.3); /* semi-transparent deep blue- reduced from 0.8 to 0.5 */
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  z-index: 10;
  max-width: 1000px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text {
  color: white;
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 500px;
}
.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.hero-form button {
  width: 100%;
  background-color: #28a745;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}
/* ===============================
   SERVICES SECTION STYLING
   =============================== */

   #services {
    background-color: #f9f9f9;
    padding: 60px 20px;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 300px;
    flex: 1 1 280px;
    text-align: left;
  }
  
  .card h3 {
    color: #004466;
    margin-bottom: 10px;
  }
/* ===============================
   GENERAL SECTION SPACING
   =============================== */

   section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  h2 {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
  }
    /* GENERAL SECTION SPACING TUNING */
#why-us,
#testimonials {
  padding: 60px 20px;
}

#why-us p,
#testimonials p {
  margin-top: 15px;
  margin-bottom: 15px;
}

#why-us ul {
  margin-top: 15px;
  margin-bottom: 25px;
}

#testimonials {
  background: #f4f6f8; /* light background to separate it visually */
  text-align: center;
}

#testimonials p {
  font-style: italic;
  font-size: 1.1rem;
}
#services {
  margin-bottom: 80px;
}
#testimonials {
  margin-top: 60px;
}
#why-us .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#why-us {
  padding: 60px 20px;
}
html {
  scroll-behavior: smooth;
}
/* MOBILE NAVIGATION */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #004466;
    text-align: center;
    padding: 10px 0;
  }
  .nav-links li {
    margin: 12px 0;
  }
  .nav-links li a {
    color: #fff;
    font-size: 18px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links.active {
    display: flex;
  }
  
}
/* RESPONSIVE TEXT + LAYOUT */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-form {
    max-width: 90%;
    padding: 20px;
  }
}
.hero-text h1 {
  color: white !important;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
/* WHY CHOOSE SECTION STYLING */
.why-section {
  background-color: #004466; /* Deep blue */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.why-section h2,
.why-section p,
.why-section ul {
  color: white; /* ensure all text is white */
}

.why-section ul {
  list-style-type: none;
  margin-top: 20px;
  padding-left: 0;
}

.why-section ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  position: relative;
}

/* custom bullet */
.why-section ul li::before {
  content: "✔";           /* checkmark */
  color: #28a745;          /* green check color */
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  margin-right: 8px;
}
