/* sec - 4 */

.sec-4 {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.sec-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00000080;
  z-index: 1;
}

.sec-4 .bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  z-index: 0;
}

.sec-4 .bg-slide.active {
  opacity: 1;
}

.sec-4-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  background-color: #000000a6;
  border-radius: 20px;
  border: 1px solid #454545;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0px 0px 117px -54px #000000 inset,
    inset 10px 9px 12px -9px #000000;
  color: #ffffff;
  padding: 3rem;
}

.sec-4-container .title {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sec-4-container .sub-title {
  font-size: 1rem;
  text-align: center;
  margin: 0rem auto 2rem auto;
  font-weight: 300;
  max-width: 300px;
  color: #ffffff;
}

.sec-4-container .tagline {
  font-size: 1rem;
  text-align: center;
  margin: 0rem auto 2rem auto;
  font-weight: 300;
  color: #ffffff;
}

.sec-4-container .stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.sec-4-container .stats .stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.sec-4-container .stats .stat-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}

.sec-4-container .stats .stat-item label {
  font-size: 0.75rem;
  font-weight: 400;
}

.sec-4-container .show-more-btn {
  width: fit-content;
  margin: auto;
  background-color: #ffffff;
  color: #000000;
  padding: 0.6rem 1rem;
  border: none;
  font-size: 1rem;
  border-radius: 60px;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.sec-4-container .show-more-btn:hover {
  background-color: #f3f3f3;
  transform: translateY(-3px);
}

.sec-5-container .show-more-btn svg {
  width: 1rem;
  height: 1rem;
}
