.intro-area {
    position: relative;
    overflow: hidden;
    background-color: #2f2c97;
    padding: 40px;
    text-align: center;
} 

.img-sec {
    padding-bottom: 120px;
    margin: auto 0;
    padding-top: 250px;
}

.content-1 p {
    color:#fff;
    padding:20px 0;
    text-align:center;
    font-size:20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .intro-area {
        padding: 20px;
    }

    .img-sec {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .content-1 p {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .intro-area {
        padding: 15px;
    }

    .img-sec {
               padding-top: 90px;
        padding-bottom: 0px;
    }

    .content-1 p {
        font-size: 14px;
        line-height: 1.4;
    }
}


/* Team Section */
.team-1 {
  /*padding: 60px 20px;*/
  /*background: #f9f9f9;*/
  text-align: center;
}

.team-1 .section-title {
  font-size: 33px;
  font-weight: 700!important;
  margin-bottom: 40px;
  color: #2a354e;
  position: relative;
}
.overview-area {
    background: linear-gradient(120deg, #d8e1ef, #fdfdfd);
    padding: 80px 0;
}
.team-1 .section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2f2c97, #00bcd4);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Team Member */
.team-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-gallery .col-sm-4 {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(25% - 30px);
  max-width: 260px;
}

.team-gallery .col-sm-4:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-gallery img {
  width: 100%;
    max-width: 280px;
    border-radius: 15px;
    
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.team-gallery span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #2f2c97;
  padding-top:20px;
  margin-bottom: 5px;
}

.team-gallery p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .team-gallery .col-sm-4 {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .team-gallery {
    gap: 20px;
  }
  .team-gallery .col-sm-4 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
