.intro {
  /* background:url('../assets/img/Background_Who\ we\ are.jpg') ,linear-gradient(to right, rgba(0, 102, 255, 0.05), rgba(0, 198, 255, 0.05));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  margin-bottom: 20px;
  width: 100%;
  height: 540px;
  animation: fadeIn 1.5s ease;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

/* .intro::before
{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.511);
  z-index: 1;
} */

.intro .content {
  padding-top: 10px;
  background-color: white;
  color: black;
  text-align: center;
  width: 50%;
  height: 100%;
  /* border: 1.5px solid black; */
  border-radius: 10px;
}

.intro .content h3 {
  color: #162d42;
  font-size: 2rem;
  letter-spacing: 1px;
  margin: 8px 0;
  position: relative;
}

.intro .content p {
  padding: 0 20px;
  text-align: justify;
  font-size: 1rem;
  color: black;
  max-width: 900px;
  line-height: 1.4;
}

.intro .img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.intro .img img {
  height: 100%;
  width: 100%;
}





/* about-us css*/
.about-us {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px;
  background: #fff;
  box-sizing: border-box;
}

.about-text {
  box-sizing: border-box;
  padding: 30px;
  width: 40%;
  height: 100%;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #162d42;
  /* brand deep blue */
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  position: relative;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.about-image {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}





.purpose {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 50px;
  height: 350px;
  /* padding: 20px; */
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: slideUp 1.2s ease;
  margin-bottom: 30px;
  /* padding: 20px 10%; */
  position: relative;
  z-index: 1;
}

.purpose .content {
  padding: 30px;
}

.purpose .content h3 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: black;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.purpose .content p {
  font-size: 1rem;
  color: black;
  max-width: 900px;
  line-height: 1.8;
}

.purpose .img {
  width: 50%;
  height: 100%;
}

.purpose .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.people {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  padding: 20px;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  background: linear-gradient(135deg, #e3f2fd, #f8fbff);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
  transition: all 0.3s ease;
}

.people .content {
  padding: 40px;
  width: 50%;
  height: 100%;
}


.people .content h3 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #162d42;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.people .content p {
  font-size: 1rem;
  color: black;
  max-width: 900px;
  line-height: 1.8;
}

.people .img {
  width: 50%;
  height: 100%;
}

.people .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.people .img img:hover {
  transform: scale(1.10);
}

.people:hover {
  transform: translateY(-4px);
}



.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 50px;
  padding: 0;
}

.container>div {
  flex: 0 0 390px;
  background: #fff;
  border-radius: 24px;
  box-sizing: border-box;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.container>div:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
  transform: scale(1.15);
}

.container img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin-top: 25px;
  border-radius: 14px;
  transition: transform 0.4s ease;
}



.container h3 {
  font-size: 22px;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



