.aboutUsWrapper {
  margin-top: 70px;
  margin-bottom: 30px;
}

.hero {
  background: linear-gradient(135deg, #0c506d 0%, #0083cb 100%);
  background-image: url('../images/background/about-us.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 200px 20px;
  height: 500px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.container {
  padding: 60px 20px;
}

.section {
  margin-bottom: 60px;
}

.section h2 {
  color: #0c506d;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #0083cb;
}

.section p {
  color: #555;
  margin-bottom: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #e8f4fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #0083cb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(12, 80, 109, 0.15);
}

.value-card h5 {
  color: #0c506d;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
}

.team-section {
  background: #ffffff;
  padding: 0px 20px 0px 20px;
}

.proceed-section {
  text-align: center;
  padding: 60px 20px 60px 20px;
  background: linear-gradient(to bottom, #d2edfa, #ffffff);
}

.proceed-btn {
  background: linear-gradient(135deg, #0c506d 0%, #0083cb 100%);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.proceed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 131, 203, 0.4);
  color: #ffffff;
}

.proceed-btn:active {
  transform: translateY(-1px);
}

.proceed-btn .mdi {
  margin-left: 10px;
}

.strMisSection p {
  text-align: justify;
}

.ftrLogo a img {
  max-width: 120px;
  padding: 0px;
}

.tagLine {
  color: #0083cb;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: cursive;
}

.proceed-section h3 {
  color: #0c506d;
  margin-bottom: 30px;
}

.proceed-section p {
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.heroSection {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSection .contentWrap {
  max-width: 630px;
  margin-right: 40px;
}

.heroSection .contentWrap h1 {
  font-weight: 900;
  color: #0c506d;
  margin-bottom: 50px;
  letter-spacing: 1.5px;
}

.heroSection .contentWrap h6 {
  margin-bottom: 60px;
}

.heroSection .imgWrap img {
  min-width: 400px;
  max-width: 410px;
}

@media (max-width: 767.98px) {
  .hero {
    padding: 35px 20px;
    height: 200px;
  }

  .hero h1 {
    margin-bottom: 15px;
  }

  .section {
    margin-bottom: 20px;
  }

  .section h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .section h2::after {
    height: 2px;
  }

  .container {
    padding: 30px 10px;
  }

  .ourValueWrapper h3,
  .team-section h3,
  .proceed-section h3 {
    margin-bottom: 20px;
  }

  .value-card {
    padding: 15px;
  }

  .value-card h3 {
    margin-bottom: 5px;
  }

  .proceed-section {
    padding: 20px 10px 20px 10px;
    margin-bottom: 20px;
  }

  .proceed-section p {
    margin-bottom: 25px;
  }

  .proceed-btn {
    padding: 8px 16px;
    border-radius: 24px;
  }

  .tagLine {
    display: none !important;
  }

  .values-grid {
    margin-top: 15px;
  }

  .team-section {
    padding: 0px 0px 0px 0px;
  }

  .heroSection {
    flex-direction: column-reverse;
  }

  .heroSection .imgWrap img {
    min-width: 200px;
    max-width: 200px;
    margin-bottom: 25px;
  }

  .heroSection .contentWrap {
    margin-right: 0;
    text-align: center;
  }

  .heroSection .contentWrap h1 {
    margin-bottom: 25px;
  }

  .heroSection .contentWrap h6 {
    margin-bottom: 30px;
  }
}