.our-team-wrapper {
  width: 100%;
  margin-top: 116px;
  background-image: url('/assets/images/our-team-banner.png');
  height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
}

.rect-3{
  background-image: url('/assets/images/our-team-banner.png') !important;
}

.our-team-description {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content !important;
}

.our-team-description p {
  width: 50%;
  font-size: 21px;
  font-weight: 200;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: unset !important;
  margin-top: 20px;
}

.arr-downn{
  width: 24px;
  margin-top: 4px !important;
}


.contact-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.contact-inner-wrapper {
  width: 1300px;
  padding: 50px 0px;
}

.contact-inner-wrapper p {
  font-size: 40px;
  font-weight: 700;
}

.card-contact-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 20px;
}


.contact-card {
  width: 400px;
  min-height: 500px;
  border-radius: 12px;
  border: 1px solid #E9EAEC;
  font-family: sans-serif;
  background-color: #fff;
  overflow: visible;
  position: relative;
  padding-bottom: 10px;
}

.dropdown-content {
  display: none;
  position: static;
  left: 16px;
  right: 16px;
  top: 92%;
  margin-top: 8px;
  background-color: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}



.profile-img {
    background-position: center center;
    object-fit: cover;
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 12px 12px 0px 0px;
}

.card-info {
  padding: 16px 30px;
  text-align: left;
}

.card-info h3 {
  margin: 8px 0 4px;
  font-size: 18px;
}

.card-info p {
  margin: 0;
  color: #555;
}

.dropdown-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
}

.dropdown-btn img {
  margin-top: 8px;
  width: 30px;
}

.c-p-1 {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: black !important;
  font-family: 'Poppins';
}

.c-p-2 {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #393A3C !important;
  margin-top: 2px !important;
  font-family: 'Poppins';
}


.bg-light {
  background-color: #f2f2ea !important;
}


.make-toggle{
  cursor: pointer;
  /* border-top: 2px solid black; */
  /* border-bottom: 2px solid black; */
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.make-toggle span{
  font-size: 24px;
  color: black;
  margin-right: 14px;
  border: 2px solid black;
  border-radius: 50px;
  padding: 0px 8px;
  padding-top: 4px;
}

.pd-btm{
  padding-bottom: 50px;
}




.contact-inner-wrapper{
  padding-top: 0px;
  padding-bottom: 10px !important;
  border-bottom: 1px solid gainsboro !important;
}

.card-contact-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.card-contact-wrapper.expanded {
  height: auto; /* Will be set to scrollHeight dynamically */
  /*justify-content:center !important;*/
  padding-bottom: 50px;
}



/* Optional smooth slide effect (requires more work with max-height & JS if needed) */