* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-image: url(aaaa.jpg);
  background-size: cover;
  background-position: center;
  color: #333;
  padding-top: 90px;
}

.container {
  width: 100%;
  padding: 0 5%;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #003C8D;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.nav-content img {
  width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #003C8D;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 18px;
}

.nav-links a:hover {
  color: #04254f;
  transition: 0.1s ease;
}

.hero {
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.hero img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  
}

.section {
  background-image: url(25255635_rm222batch5-mind-02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 5%;
}

.transparent-box {
  padding-bottom: 50px;
}

.transparent-box h2 {
  color: #000;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 50px;
}

.transparent-box p {
  color: black;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 0 10%;
  margin-bottom: 40px;
}

.services-cont {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px 5%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.services-cont h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.services-cont p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.three-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 25px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.info-box:hover {
  background: rgba(9, 2, 186, 0.7);
  color: white;
}

.info-box:hover h3 {
  color: #ffe600;
}

.info-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1rem;
  line-height: 1.6;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.trusted-by {
  background-color: #003C8D;
  padding: 40px 20px;
  margin-top: 40px;
  text-align: center;
}

.trusted-by h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 2px #000;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 5%;
}

.logo-grid img {
  max-width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .transparent-box p {
    padding: 0 5%;
    font-size: 1rem;
  }

  .services-cont {
    padding: 30px 5%;
  }

  .services-cont p {
    padding: 0;
    font-size: 1rem;
  }

  .nav-links a {
    font-size: 16px;
    margin-left: 10px;
  }

  .info-box h3 {
    font-size: 1.5rem;
  }

  .info-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero img {
    max-width: 100%;
  }

  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 0;
  }

  .transparent-box p {
    padding: 0 20px;
  }

  .info-box {
    padding: 20px;
  }

  .services-cont {
    padding: 20px;
  }
}
