* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hero {
  background: url('../images/trial.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 2rem;
  margin-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.6);
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  position: relative;
  padding: 2rem;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
      animation: bounce 2s infinite;
      font-size: 2rem;
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: white;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0) translateX(-50%); }
      50% { transform: translateY(10px) translateX(-50%); }
    }


main h2 {
  font-size: 2.4rem;
  color: #007BFF;
  margin-bottom: 1.5rem;
    padding-left: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
}
main h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007BFF;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

section {
  margin-bottom: 6rem;
  padding: 0 2rem;
}


.who{
  
  padding: 5rem 2rem;
  text-align: center;
}
.text {
  text-align: center;
  margin-bottom: 2rem;
}

.text h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.text h3 {
  font-size: 1.3rem;
  color: #0056b3;
  margin-top: 2rem;
}

.text p {
  font-size: 1.1rem;
  color:#01497c;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Services Section */
.services {
  background-color: #eef2f5;
  padding: 5rem 2rem;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.service {
  flex: 1 1 300px;
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.service h3 {
  color: #004080;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service p {
  color:#01497c;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Why & Difference */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}
.difference{
  background-color: #eef2f5;
  padding: 2rem;
}
.container p {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.8;
}


.values {
  padding: 5rem 2rem;
  text-align: center;
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.vission{
  background-color: #eef2f5;
  padding: 5rem 2rem;
  text-align: center;
}
.value {
  flex: 1 1 280px;
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  background-color: #eef2f5;
}

.value h3 {
  color: #004080;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.value p {
  color:#01497c;
  font-size: 1.05rem;
  line-height: 1.8;
}


@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero{
    height: 90vh;
  }


  .hero-overlay p {
    font-size: 1rem;
  }

  h2 {
    text-align: center;
    padding-left: 0;
    border-left: none;
    
    display: inline-block;
  }

  .service-grid,
  .value-grid {
    flex-direction: column;
    align-items: center;
  }

  .text p {
    padding: 0 1rem;
  }

  section {
    padding: 0 1rem;
    margin-bottom: 4rem;
  }

  .services,
  .values,
  .container,
  .two-col {
    padding: 3rem 1rem;
  }
}
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #a2d2ff;
  margin-bottom: 1rem;
  border-left: 3px solid #a2d2ff;
}
