
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.white-header {
  background: white;
  height: 200px;
  display: flex;
  justify-content: center;   /* Horizontally center */
  align-items: center;       /* Vertically center */
  padding: 0;
}

.white-header img {
  width: 80%;
  height: auto;
  max-height: 98%;
  display: block;
}

.logo {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}




.hero {
  background: linear-gradient(to bottom, #e0f0ff, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  color: #0056b3;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #FF6F00;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.badge {
  margin-top: 20px;
  font-weight: bold;
}

footer {
  background-color: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}
/* === Services Section === */
.services {
  background: #f9f9f9;
  padding: 20px 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}
.services ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}
.services li {
  margin: 10px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* === Testimonials Section === */
.testimonials {
  background: #ffffff;
  padding: 20px 0;
  text-align: center;
}
.testimonials h2 {
  color: #003366;
}
.testimonials blockquote {
  font-style: italic;
  color: #444;
  margin: 20px auto;
  max-width: 700px;
  font-size: 1.1rem;
}

/* === Call to Action (CTA) Section === */
.cta {
  background: #003366;
  color: white;
  padding: 20px 0;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta .btn {
  display: inline-block;
  background: orange;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta .btn:hover {
  background: darkorange;
}
/* === Services Section === */
.services {
  background: #f9f9f9;
  padding: 20px 0;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #003366;
}

.service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.service h3 {
  color: #003366;
  margin-top: 15px;
}

/* === About Section === */
.about {
  background: #e8f1fc;
  padding: 30px 0;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #003366;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.about-text,
.about-img {
  flex: 1 1 400px;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* === Flex Layout for Hero & Services Section with Images === */
.hero-flex, .services-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-image, .services-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.hero-image img, .services-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.hero-text, .services-text {
  flex: 1 1 55%;
  text-align: left;
}

@media (max-width: 700px) {
  .white-header img {
    width: 97%;
    height: auto;
    max-height: none;
  }
}

  .hero-text, .services-text {
    text-align: center;
  }

  .hero-image, .services-image {
    max-width: 97%;
  }
}
@media screen and (max-width: 600px) {
  .white-header img.logo {
    max-width: 95% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

