* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { color: #007BFF; text-decoration: none; }

header {
  background: #000; color: #fff; padding: 20px 0; position: sticky;
  top: 0; z-index: 100;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  font-weight: bold;
}

.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}

.nav-links {
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  background: url('assets/hero_bg_1.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay for readability */
  z-index: 1;
}

.hero > div {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}


section { padding: 60px 0; }
section h2 { text-align: center; margin-bottom: 30px; font-size: 2rem; color: #002F5F; }

#about {
  background: #f7f7f7;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  box-shadow: 0 8px 24px rgba(0, 47, 95, 0.1);
  text-align: center;
}

#about h2 {
  color: #002F5F;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

#about p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #004080;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.service-box h3 {
  margin-bottom: 10px;
  color: #002F5F;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding-top: 20px;
}

.partners-logos img {
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  opacity: 0.8;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  opacity: 1;
}

.testimonial {
  background: #fff;
  border-left: 5px solid #0066FF;
  padding: 25px 30px 25px 20px;
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
  position: relative;
  font-style: normal;
  color: #222;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
}

.testimonial p::before {
  content: "“";
  font-size: 3rem;
  color: #0066FF;
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: bold;
  font-family: serif;
}

.testimonial h4 {
  text-align: right;
  font-weight: 600;
  color: #0066FF;
  font-size: 1rem;
  margin-top: 10px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 12px;
  border: none;
  background: #007BFF;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

form button:hover {
  background: #0056b3;
}

footer {
  background: #f1f1f1;
  text-align: center;
  padding: 20px 0;
  font-size: .9rem;
  color: #555;
}

.service-card-alt {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-alt:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card-alt .icon-box {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-alt h3 {
  margin-bottom: 0.75rem;
  color: #0066FF;
  font-size: 1.25rem;
}

.service-card-alt p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #000;
    width: 100%;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
   .logo img {
    height: 45px;
  }
  .hero {
  background: url('assets/hero_bg_1.jpg') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}
  .hero h1 {
  font-size:1.7rem;
  margin-bottom: 7px;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}
.hero p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
}