/* About Banner css */
.about-banner-section {
  position: relative;
  /* height: 70vh; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-banner-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  /* filter: brightness(0.5); */
}

#about-banner-img {
  background-image: url("../img/about-us/about-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-banner h1 {
  font-size: 50px;
  line-height: 2.81;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-transform: capitalize;
  font-weight: 200;
}

/* about vision & mission css */

.about-vision-section {
  padding: 70px 0px;
  background-color: #161616;
}

.new-mission-card {
  position: relative;
  overflow: hidden;
  transition: background-color 0.7s ease;
  height: calc(90vh - 160px);
  /* For example, full height minus header/footer */
  background-color: #232323;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 2vh;
  color: white;
  box-sizing: border-box;

}

.new-mission-card::before {
  content: "";
  position: absolute;
  /* bottom: -100%; */
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E5403E;
  transition: bottom 0.7s ease-in-out;
  z-index: 1;
}

.new-mission-card:hover::before {
  bottom: 0;
}

.new-mission-card .mission_img {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 2;
  height: calc(30vh - 80px);
  transition: all 0.7s ease;
  opacity: 0.05;
}

.new-mission-card:hover .mission_img {
  opacity: 0.3;

}

.new-mission-content h2 {
  font-size: 48px;
  font-weight: 200;
  transition: all 0.8s ease-in-out;
  margin-bottom: 25px;
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 5%;
  right: 5%;
  line-height: 40px;

}

.new-mission-content p {
  font-size: 18px;
  font-weight: 100;
  color: white;
  width: 80%;
  position: absolute;
  top: 25%;
  left: 5%;
  right: 5%;
  z-index: 1;
  height: auto;
  clip-path: inset(0% 0% 100% 0%);
  transition: all 0.8s ease-in-out;

}

.new-mission-card:hover .new-mission-content p {
  clip-path: inset(0% 0% 0% 0%);
}

.new-core-title h2 {
  font-size: 48px;
  text-align: left;
  color: #fff;
  position: relative;
}

.bt-line {
  border-bottom: 3px solid #e65a2e;
  transform: translateX(-50%);
}

.right-scroll {
  /* overflow-y: scroll;
height: 500px;
scrollbar-width: none;
-ms-overflow-style: none; */

  position: sticky;
  top: 0;
  max-height: 300vh;
  overflow-y: scroll;
}

.right-scroll::-webkit-scrollbar {
  display: none;
}

/* about-us-values-section start */
.about-us-values-section {
  background-color: #161616;
  max-width: 800px;
  margin: auto;
  padding: 0px 0 80px 0;
  width: 100%;
}

.about-us-values-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.accordion-item {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  border-bottom: solid 0.8px #636363;
  /* new change for arun bro tell */
  height: 82px;
}

.accordion-item.active {
  transition: all 0.5s ease-in-out;
  height: 320px;

}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  /* border-bottom: solid 0.8px #636363; disyne have */
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 200;
  line-height: 1.2;
  text-align: left;
  color: #fff;
}

.accordion-item .icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #E5403E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}

.accordion-item .icon span {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #E5403E;
  border-radius: 1px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.accordion-item .icon span:first-child {
  transform: rotate(0deg);
}

.accordion-item .icon span:last-child {
  transform: rotate(90deg);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.accordion-item.active .icon span:last-child {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.accordion-body {
  padding: 20px 20px;
}

.accordion-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.accordion-content img {
  width: 307px;
  height: 200px;
  border-radius: 2px;
  object-fit: cover;
}

.accordion-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 100;
  line-height: 1.67;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
}

/* about-us-values-section end */

/* about-us-deavault-section start */

.about-us-deavault-section {
  padding: 65px 0;
  height: 100%;
  background-color: #232323;
}

.about-us-deavault-row {
  align-items: center;
}

.about-us-deavault-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  margin-bottom: 12px;
}

.about-us-deavault-content {
  height: 100%;
  width: 85%;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: all 2.5s ease-in-out;

}

.about-us-deavault-image-visible .about-us-deavault-content {
  opacity: 1;
  transition: all 2.5s ease-in-out;
  clip-path: inset(0 0 0 0) !important;
}

.about-us-deavault-para {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.highlight {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  font-weight: 200;
  color: #e5403e;
}

.about-us-deavault-sub-title {
  font-size: 24px;
  font-weight: 200;
  line-height: 2.5;
  text-align: left;
  color: #fff;
  margin-bottom: 16px;
}

.about-us-deavault-list {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 13px;
  list-style-type: square;
  cursor: pointer;

}

.about-us-deavault-list::marker {
  color: #e5403e;
}

.about-us-deavault-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 516px;
  width: 100%;
}

.about-us-deavault-main-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-deavault-main-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-deavault-overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-deavault-main-img1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 371px;
  height: 287.9px;
  display: block;
  transition: all 2s ease-in-out;
  transform: scale(0.5);

}

.about-us-deavault-image-visible .about-us-deavault-main-img1 {
  transition: all 2s ease-in-out;
  transform: scale(1);
}

.about-us-deavault-main-img2 {
  position: absolute;
  bottom: 0;
  /* left: 0; */
  width: 471.2px;
  height: 366px;
  display: block;
  transition: all 2s ease-in-out;
  transform: scale(0.5);
  padding-top: 10px;
  padding-right: 10px;
  background-color: #232323;
}

.about-us-deavault-image-visible .about-us-deavault-main-img2 {
  transition: all 2s ease-in-out;
  transform: scale(1);
}

.about-us-deavault-overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: all 2s ease-in-out;
  z-index: 2;
}

.about-us-deavault-image-visible .about-us-deavault-overlay-img {
  position: absolute;
  /* min-width: 144px;
min-height: 144px; */
  width: 144px;
  height: 144px;
  top: 38%;
  left: 65%;
  transform: none;
  transition: all 2s ease-in-out;
  z-index: 5;
}

/* about-us-dealvault-section end */

/* about-us-timeline-section start */

.about-us-timeline-section {
  scroll-snap-type: y mandatory;
  min-height: 100vh;
  height: 100%;
  padding: 70px 0;
}

.about-us-timeline-container {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.about-us-timeline-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.about-us-timeline-para {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.about-us-timeline-stage {
  scroll-snap-align: center;
  min-height: 30vh;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-around;
  gap: 100px;
  padding: 40px 0;
  opacity: 0.5;
  transition: all 0.5s ease;
  filter: grayscale(100%);
  flex-wrap: wrap;
  position: relative;
}

.about-us-timeline-stage:nth-child(odd) {
  flex-direction: row;
}

.about-us-timeline-stage:last-child::before {
  height: 10%;
  ;

}

.about-us-timeline-stage::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #232323;
  transform: translateX(-50%);
  z-index: 1;
}

.about-us-timeline-stage::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border: solid 1px #fff;
  background-color: #e5403e;
  transform: translateX(-50%);
  z-index: 1;
}

.about-us-timeline-stage.active {
  opacity: 1;
  filter: none;
}

.about-us-timeline-stage .about-us-timeline-text {
  flex: 1 1 400px;
  padding: 0 20px;
}

.about-us-timeline-stage .about-us-timeline-image {
  flex: 1 1 400px;
  padding: 20px;
}

.about-us-timeline-stage img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  transition: filter 0.3s ease;
}

.about-us-timeline-sub-title {
  font-size: 32px;
  line-height: 1.88;
  text-align: left;
  color: #fff;
  font-weight: 200;
}

.about-us-timeline-sub-para {
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  line-height: 1.5;
  text-align: left;
  color: #e5403e;
}

/* about-us-timeline-section end */

/* about-us-Leadership Team section start*/

.about-us-leadership-section {
  background-color: #232323;
  height: 100%;
  padding: 40px 0 0 0;
  position: relative;
}

.about-us-leadership-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;

}

.about-us-leadership-gallery-top {
  /* width: 411px; */
  height: 446px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.about-us-leadership-details {
  opacity: 0;
  transform: translateY(30vh);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;

}

.swiper-slide-active .about-us-leadership-details {
  opacity: 1;
  transform: translateY(0);
}

.about-us-leadership-image-slider {
  width: 87%;
  cursor: pointer;
  margin-left: 17%;
  /* height: 100%; */
}

.about-us-leadership-image-slider img {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
}

.about-us-leadership-image-slider .swiper-slide-active img {
  opacity: 1;
}

.about-us-leadership-section .leadership-content-wrapper {
  position: relative;

}

.about-team-mySwiper-title {
  font-size: 32px;
  line-height: 1;
  text-align: left;
  color: #fff;
  font-weight: 200;
}

.about-team-mySwiper-onepara {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.about-team-mySwiper-twopara {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}

.about-team-mySwiper-threepara {
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: 0.75px;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 100;
}

.about-team-mySwiper-fourpara {
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: 0.75px;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 100;
}

.about-us-leadership-section .btn-container {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  align-items: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 0;
  background-color: transparent !important;
}

.about-us-leadership-section .btn {
  border: none;
  color: #ffffff !important;
  font-size: 35px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background-color: transparent !important;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;

}
.about-us-leadership-section  .btn.disabled, .btn:disabled, fieldset:disabled .btn {
      opacity: 0.5  !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background-color: transparent !important;
  color: #ffffff4c !important;

}

.about-us-leadership-section .service-tab-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  cursor: pointer;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 150px;
  -webkit-backdrop-filter: blur(17.7px);
  backdrop-filter: blur(17.7px);
  border: solid 0.9px #2e2d2d;
  background-color: #2e2d2d;
}

.about-us-Leadership-sub-tab {
  padding: 10px;
  width: 170px;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.about-us-Leadership-sub-img {
  width: 72px;
  height: 72px;
  padding: 3px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  border: solid 2px transparent;

}

.about-us-Leadership-sub-tab.active .about-us-Leadership-sub-img {
  border: solid 2px #e5403e;
  padding: 3px;
  border-radius: 50%;

}

.about-us-Leadership-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-Leadership-sub-title {
  font-size: 18px;
  line-height: 1;
  text-align: left;
  color: #fff;
  font-weight: 200;
  margin-bottom: -5px;
}

.about-us-Leadership-sub-para {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.29;
  text-align: center;
  color: #fff;
  margin-bottom: 0px;
}

/* about-us-Leadership Team section end*/


/* board director new style css */

.board-director {
  background-color: #161616;
  padding: 0px 0px 70px 0px;
}

.director-title {
  font-size: 48.2px;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-weight: 200;
  margin-bottom: 50px;
}

.director-card {
  background: white;
  border-radius: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.director-card .img-wrapper {
  width: 100%;
  height: auto;
}

.director-card .img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.director-card:hover .img-wrapper img {
  transform: scale(1.08);
}

.board-director-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  width: 100%;
  padding: 40px 6px;
}

.board-director-content h4 {
  font-size: 32px;
  margin-top: 20px;
  color: #161616;
  font-weight: 400;
}

.board-director-content p {
  font-size: 18px;
  line-height: 1.2;
  color: rgba(22, 22, 22, 0.5);
  font-weight: 100;

}

.director-card .hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  transition: all 0.4s ease;
  transform: translateY(40px);
  cursor: pointer;
}

.director-card .hover-overlay img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.director-card:hover .hover-overlay {
  transform: translateY(0);
}

.director-view p {
  text-align: left;
  color: rgba(22, 22, 22, 0.8);
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
}

.director-view h5 {
  font-size: 24px;
  text-align: left;
  color: #161616;
}

.popup-top {
  display: flex;
  gap: 20px;
  align-items: center;
}

.popup-top img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.popup-top h4 {
  font-size: 32px;
  text-align: left;
  color: #161616;
  font-weight: 400;

}

.popup-top p {
  font-size: 20px;
  text-align: left;
  color: rgba(22, 22, 22, 0.5);
}

.modal-close {
  width: 32px;
  cursor: pointer;
  height: 28px;
  opacity: 1;
  margin-right: 5px;
  pointer-events: visible;
}

.modal-close img {
  width: 100% !important;
  height: 100% !important;
  opacity: 1;
  object-fit: cover !important;
}

.board-director-slider {
  position: relative;
}

.director-view h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.director-view h5 div {
  display: inline-block;
  width: 6px !important;
  height: 6px !important;
  border-radius: 1px;
  background-color: #e5403e;
}

/* Style the arrows */
.mobile-arrow {
  position: absolute;
  top: 30%;
  width: 30px;
  height: 30px;
  z-index: 10;
  background: transparent;
  color: #161616;
  border-radius: 50%;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.modal-dialog {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
}

.modal-header {
  border-bottom: 0px;
}

.modal-dialog-scrollable .modal-content {
  padding: 50px;
}

.modal-content {
  background-origin: 0 !important;
  border-radius: 0 !important;
}

.mar-top30 {
  margin-top: 30px;
}

/* Hide arrows on desktop */
@media (min-width: 768px) {
  .mobile-arrow {
    display: none !important;
  }


}

@media (max-width: 1199px) {
  .new-mission-content h2 {
    font-size: 30px;
  }

  .new-mission-content p {
    font-size: 12px;
  }

  .about-us-deavault-main-img1 {
    width: 50%;
    height: 50%;
  }

  .about-us-deavault-main-img2 {
    width: 75%;
    height: 75%;
  }

  .about-us-deavault-image-visible .about-us-deavault-overlay-img {
    width: 24%;
    height: 17%;
  }

  .about-us-leadership-gallery-top {
    height: 400px;
  }


  .about-team-mySwiper-title {
    font-size: 28px;

  }

  .about-team-mySwiper-onepara {
    font-size: 18px;
  }

  .about-team-mySwiper-twopara {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.3;
  }

  .about-team-mySwiper-threepara {
    font-size: 13px;
    line-height: 1.47;
  }

  .about-team-mySwiper-fourpara {
    font-size: 13px;
    line-height: 1.47;
  }

}

@media (max-width: 992px) {
  .about-us-timeline-stage {
    gap: 50px;
  }

  .about-us-timeline-stage .about-us-timeline-text {
    flex: 1 1 300px;
  }

  .about-us-timeline-stage .about-us-timeline-image {
    flex: 1 1 300px;
  }
}

/* resposive design */

@media (max-width: 768px) {
  
  .about-banner h1 {
    font-size: 32px;
  }
  
  .new-mission-card {
    background-color: #e5403e;
    height: calc(53vh - 160px);
  }

  .new-mission-card .mission_img {
    display: none;
  }

  .accordion-content {
    flex-direction: column;
  }

  .accordion-body {
    background-color: #232323;
  }

  .about-us-values-section {
    max-width: 400px;
    padding: 0 0 43px 0px;
  }

  .about-us-values-section h2 {
    font-size: 24px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 0px;
  }

  .accordion-item {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border-bottom: solid 0.8px #636363;
    height: 57px;
  }

  .accordion-header {
    padding: 15px 0px;
  }

  .accordion-header h3 {
    font-size: 16px;
    font-weight: 200;
    line-height: 1;
  }

  .accordion-item.active {
    transition: all 0.5s ease-in-out;
    height: auto;
  }

  .accordion-content img {
    width: 100%;
    height: 100%;
  }

  .accordion-content p {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.27;
    text-align: center;
  }

  .accordion-item .icon {
    width: 25px;
    height: 25px;
  }

  .accordion-item .icon span {
    position: absolute;
    width: 10px;
    height: 1px;
  }

  .about-us-deavault-main-img1 {
    left: 0;
    width: 145.5px;
    height: 149px;
  }

  .about-us-deavault-main-img2 {
    top: 15%;
    right: 0;
    bottom: auto;
    right: 0;
    padding-top: 0;
    padding-right: 0;
    padding-top: 5px;
    padding-left: 5px;
    width: 262px;
    height: 240.9px;
  }

  .about-us-deavault-image-visible .about-us-deavault-overlay-img {
    top: 40%;
    width: 78px;
    height: 78px;
    left: 40px;
  }

  .about-us-deavault-main-img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about-us-deavault-main-img2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about-us-deavault-overlay-img img {
    width: 100%;
    object-fit: cover;
  }
  
  .service-confidence-image-visible .service-confidence-overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }



  .about-vision-section {
    padding: 40px 0px;
  }

  .new-mission-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    min-height: 212px;
  }

  .new-mission-content h2 {
    font-size: 28px;
    position: static;
    text-align: center;
    margin-bottom: 15px;
  }

  .new-mission-content p {
    font-size: 16px;
    font-weight: 100;
    color: white;
    width: 85%;
    margin: auto;
    position: static;
    text-align: center;
    clip-path: inset(0% 0% 0% 0%);

  }

  .about-us-deavault-section {
    padding: 24px 0px;
  }

  .about-us-deavault-title {
    font-size: 24px;
    font-weight: 200;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 20px;
  }

  .about-us-deavault-para {
    font-size: 14px;
    font-weight: 100;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.43;
  }

  .highlight {
    font-size: 16px;
    line-height: 1;
    font-weight: 200;
    color: #e5403e;
  }

  .about-us-deavault-sub-title {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .about-us-deavault-content {
    width: 100%;
    margin-top: 20px;
  }

  .about-us-deavault-content ul {
    padding-left: 1rem;
    margin-bottom: 0px;
  }

  .about-us-deavault-list {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;

  }

  .about-us-deavault-row {
    flex-wrap: wrap-reverse;
  }

  .dealvault_div {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }

  .about-us-deavault-image-wrapper {
    min-height: 300px;
  }

  .about-us-deavault-row {
    align-items: center;
    justify-content: center;
    max-width: 375px;

  }


  .about-us-timeline-section {
    padding: 40px 0px 0px 0px;
  }

  .about-us-timeline-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .about-us-timeline-para {
    font-size: 14px;
  }

  .about-us-timeline-container {
    margin-top: 0px;
    padding: 0px 30px;
  }

  .about-us-timeline-stage {
    padding: 20px 0px 50px 20px;
    gap: 0;
  }

  .about-us-timeline-stage:last-child{
    padding: 20px 0px 0px 20px;
  }

  .about-us-timeline-sub-title {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 0;
  }

  .about-us-timeline-sub-para {
    font-size: 16px;
    height: 30px;

  }

  .about-us-timeline-stage .about-us-timeline-text {
    padding: 0px;
  }

  .about-us-timeline-stage .about-us-timeline-image {
    padding: 0px;
  }

  .about-us-timeline-stage::before {
    top: 3%;
    left: 0%;
  }

  .about-us-timeline-stage::after {
    top: 10%;
    left: 0%;
    width: 16px;
    height: 16px;
  }
  
  .about-us-timeline-stage img {
    border-radius: 0px;
  }

  .about-us-timeline-stage:last-child::before {
    height: 100%;
  }

  .about-us-timeline-stage::before {
    top: 3%;
    left: 0%;
  }

  .about-us-timeline-stage::after {
    top: 10%;
    left: 0%;
    width: 16px;
    height: 16px;
  }


  .about-us-leadership-section {
    padding: 24px 0 20px 0;
  }

  .about-us-leadership-title {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .about-us-leadership-image-slider {
    width: 100%;
    height: 100%;
    margin-left: 0px;
  }

  .about-us-leadership-gallery-top {
    height: 350px;
  }

  .about-us-leadership-section .btn-container {
    width: 100%;
    top: 24%;
    left: 0;
    z-index: 2;
  }

.about-us-leadership-row {
    flex-wrap: wrap-reverse;
    gap: 30px;
    margin-top: 35px;
  }

  .service-tab-container {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
  }

  .about-team-mySwiper-title {
  font-size: 28px;
  font-weight: 300;
      text-align: center;
     }

  .about-team-mySwiper-onepara {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    line-height: 1.3;
  }

  .about-team-mySwiper-twopara {
     font-size: 16px;
  font-weight: 300;
    text-align: center;
    line-height: 1.05;
  }

  .about-team-mySwiper-threepara {
  font-size: 16px;
  font-weight: 300;
      text-align: center;
    line-height: 1.5;
  }

  .about-team-mySwiper-fourpara {
    font-size: 15px;
    line-height: 1.58;
    text-align: center;
    letter-spacing: 0.75px;
  }

  .about-us-Leadership-sub-tab {
    width: auto;
    text-align: center;
    margin-right: 5px;
  }


  .board-director-section {
    padding: 40px 0px;
  }

  .director-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .modal-dialog {
    margin: 20px;
  }

  .popup-top {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .popup-top img {
    width: auto;
    height: 80px;

    margin-bottom: 10px;
  }

  .popup-top h4 {
    font-size: 24px;
    text-align: left;
    color: #161616;
    margin-bottom: 0px;
    font-weight: 300;
  }

  .popup-top p {
    font-size: 16px;
    text-align: left;
    color: #161616;
    margin-bottom: 0px;
  }

  .director-view h5 {
    font-size: 18px;
    text-align: left;
    font-weight: 300;
    color: #161616;
  }

  .director-view p {
    text-align: left;
    font-size: 16px;
  }


  .swiper-wrapper:first-child {
    margin-left: 0;
  }

  .board-director-content h4 {
    margin-top: 0px;
    font-size: 24px;
  }

  .board-director-content p {
    font-size: 16px;
  }

  .board-director-content a {
    font-size: 14px;
    text-align: center;
    color: #e5403e;
    text-decoration: underline;
  }

  .board-director {
    padding: 40px 0px;
  }

  .modal-content {
    align-items: end;
  }

  .modal-dialog-scrollable .modal-content {
    padding: 20px;
  }

  .modal-header {
    width: 100%;
  }

  .director-view h5 div {
    width: 4px !important;
    height: 4px !important;
  }

  #about-banner-img {
    background-image: url("../img/about-us/about-mb-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .about-banner-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .mobile-mission-section {
    padding: 40px 0px 20px 0;
  }

  .mission-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
    border-radius: 8px;
    background-color: #e5403e;
    margin-bottom: 1rem;
    height: 260px;
    text-align: center;
  }

  .mission-card h1 {
    font-size: 28px;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
  }

  .mission-card p {
    opacity: 0.7;
    font-size: 15px;
    font-weight: 200;
    line-height: 1.47;
    color: #ffffff;
  }

  .about-us-leadership-details {
    padding: 0px 0px 0px 0px;
    align-items: center;
    text-align: center;
  }
}