
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.6;
}

header {
  background: url('images/hero.jpg') center bottom 80%/cover no-repeat;
  color: white;
  text-align: center;
  padding: 160px 20px 100px;
  background-blend-mode: overlay;
  background-color: rgba(0, 51, 102, 0.6);
  position: relative;
}

header h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #fefefe;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

header p {
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto 20px;
  color: #f5f5f5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-cta {
  margin-top: 30px;
}

.hero-cta .cta-button {
  background: #ffcc33;
  color: #111;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}

.hero-cta .cta-button:hover {
  background: #e6b800;
}

nav {
  background-color: #003366;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc33;
}

.cta {
  text-align: center;
  background: #00509e;
  color: #fff;
  padding: 50px 20px;
}

.cta-button {
  background: #ffcc33;
  color: #111;
  padding: 14px 28px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e6b800;
}

.logos {
  text-align: center;
  background-color: #ffffff;
  padding: 40px 20px;
}

.logo-row img {
  width: 120px;
  margin: 0 20px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-row img:hover {
  opacity: 1;
}

.testimonials {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 20px;
}

.carousel video {
  width: 320px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}

h1, h2 {
  font-weight: 600;
  color: #003366;
}

footer {
  background: #002244;
  color: #ddd;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

a {
  color: #ffcc33;
}

nav.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .overlay {
  background-color: rgba(0, 51, 102, 0.6);
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.trust-note, .testimonial-note {
  font-style: italic;
  color: #666;
  margin-top: 10px;
  font-size: 0.95rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Owl Carousel basic styling */
.testimonial-carousel {
  margin: 30px auto;
  max-width: 1000px;
}

.testimonial-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  cursor: pointer;
}

/* Simple Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
