/* Hero section  */

.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Five btn container  */

.five-btn-container {
  display: flex;
  justify-content: center;
}

.five-btn {
  display: flex;
  justify-content: center;
  gap: 40px;
  background-color: #64c6fb1a;
  border-radius: 30px;
  width: max-content;
  padding: 10px 10px;
}

.five-btn p {
  padding: 15px 10px;
  border-radius: 30px;
}

.five-btn p:hover {
  background-color: #ffffff;
  cursor: pointer;
}

.btn-active {
  background-color: #ffffff;
  /* Change this to the desired hover color */
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}

/* black  */

.black-slider {
  display: flex;
  overflow: hidden;
  height: 100%;
  position: relative;
  gap: 40px;
  border-radius: 10px;
  scroll-snap-type: x mandatory;
}

.pos-black {
  width: 100%;
  flex: 0 0 auto;
  height: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  scroll-snap-align: center;
  margin: 0 40px;
}

.black-row {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  gap: 30px;
}

.black-row-1 {
  border-bottom: 1px solid rgb(255, 255, 255);
  padding: 20px 0px;
}

.black-row-1 .black-column {
  padding: 10px;
}

.black-row-1 .black-left-column {
  display: flex;
  background-color: white;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 30%;
}

.black-row-1 .black-right-column {
  width: 70%;
}

.black-row-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.black-circle-column {
  display: flex;
  align-items: center;
  width: 30%;
}

.black-circle-column p {
  color: white !important;
}

.black-circle {
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.black-circle img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.black-row-3 {
  display: flex;
  gap: 30px;
}

.p-bold {
  text-align: center;
}

.us-man-img {
  border-radius: 10px;
  width: 100%;
}

.us-man-img img {
  border-radius: 10px;
}

.white-bg {
  width: 43%;
  background-color: white;
  border-radius: 10px;
  padding: 12px;
}

.white-bg p {
  padding-bottom: 10px;
}

/* Fourth Section  */

.three-set-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.three-set-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  box-sizing: border-box;
  height: 400px;
}

.three-set-row {
  cursor: pointer;
  border-left: 4px solid rgb(207, 207, 207);
  height: 300px;
  padding: 20px;
}

.three-set-row h6 {
  margin: 0;
}

.three-set-row p {
  display: none;
  margin-top: 15px;
  width: 70%;
}

.three-set-right {
  width: 50%;
}

.three-set-right img {
  width: 100%;
  border-radius: 10px;
}

.three-active {
  border-left-color: #046498;
}

.three-active h3,
.three-active p {
  color: black !important;
}

/* Base styling for mobile container */

.mobile-container {
  display: none;
  flex-direction: column;
  padding: 15px;
  background-color: #f9f9f9;
}

.mobile-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.mobile-row h6 {
  margin-bottom: 20px;
}

.mobile-row p {
  margin-bottom: 20px;
}

.mobile-row img {
  height: auto;
  border-radius: 8px;
}

.transparent-border{
  background: transparent!important;
  border: 2px solid white;
}
@media (max-width: 992px) {
  .five-btn p {
    padding: 10px 0px;
    border-radius: 30px;
    width: 165px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .black-row {
    flex-direction: column;
  }

  .black-circle-column {
    width: 100%;
  }

  .white-bg {
    width: auto;
  }

  .black-row-1 .black-right-column {
    width: 100%;
  }

  .black-row-1 .black-left-column {
    width: 60%;
  }
}

@media (max-width: 600px) {
  .five-btn-container {
    display: flex;
    justify-content: center;
    transform: translateX(180px);
    transition: transform 0.3s ease;
  }

  .five-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 10px 10px;
    gap: 0px;
  }

  .five-btn p {
    padding: 10px 0px;
    border-radius: 30px;
    width: 165px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
}
