/* Hero Section */
.hero-section {
  padding: 60px 200px;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.hero-inner{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
 
}

.hero-main-title{

}

.tagline {
  color: #e22850;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.arrow {
  margin-left: 8px;
}

.hero-image {
 width: 100%;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1600px) {
    .hero-section {
        padding: 60px 100px;
         padding-top: 150px;
    }
  }

@media (max-width: 1400px) {
    .hero-section {
        padding: 60px 50px;
         padding-top: 150px;
    }
  }

  @media (max-width: 1400px) {
 .hero-inner{
    gap: 30px;

}
  }

@media (max-width: 767px) {
 .hero-inner{
    grid-template-columns: 1fr;
}

    .hero-section {
        padding:  30px;
        padding-top: 100px;
    }
  }

@media (max-width: 450px) {
    .hero-section {
        padding: 30px;
        padding-top: 100px;
    }
}

/* Team About Section */
.team-about{
  overflow: hidden;
}

.teamabout-section {
  display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}


.teamabout-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}


.teamabout-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #18548a;
}

.teamabout-text p {
  font-size: 25px;
  color: #18548a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}



/* Responsive Design */
@media (max-width: 768px) {
  .teamabout-section {
    grid-template-columns: 1fr;
}

.teamabout-img{
 order:2;
}

.teamabout-text{
  order:1;
}

  .teamabout-img img {
  max-height: 300px;
}

.vxl-team-section{
padding-bottom: 50px;
}
}



/* Members  */
.vxl-team-section{
  overflow: hidden;
}


.team-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  /* height: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden; 
  transition: transform 0.3s ease;
}


.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;

}
.team-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #004080;
}

.team-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}


.team-card1 {
background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 20px;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 200px;
    display: grid;
    place-content: center;
}

.team-card1 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  margin-bottom: 15px;
  border: 1px solid #00529b;
}
.team-card1 h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #004080;
}

.team-card1 p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.card-inner {
    margin:  10px;
}

.partner-text {
    text-align: left;
}

.partner-section{
  overflow: hidden;
}