.carousel-inner img {
  height: 700px;     /* Fixed height */
  object-fit: cover; /* Crop and scale images to fill */
  filter: blur(3px); 
}

.carousel-caption {
    color: #e2e2e2;
    text-shadow: 1px 1px 0px #000000;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity to darken */
    z-index: 2;
    pointer-events: none;
}

.carousel-caption {
    z-index: 3;
}

.carousel-caption > h2 {
    font-size: 36px;
}

.carousel-caption > p {
    font-size: 24px;
}

.text-title-custom {
    vertical-align: middle;
    padding-top: 20px;
}

.text-title-custom p:first-child{
    font-size: 28px;
}

.text-title-custom p:nth-child(2){
    font-size: 18px;
}

.intro {
    padding-top: 150px;
}

.digital-wellnes {
    padding-top: 100px;
}

@media (min-width: 768px) {
    .column1 {
        padding-top: 0;
    }
}

.column1 h2 {
    padding-bottom: 25px;
}

.watch-out {
    padding: 0px 100px;
    padding-top: 100px;
}

.watch-out > h2 {
    padding-bottom: 50px;
}

.watch-out .row > div > div {
    background-color: #D3D3D3;
    border-radius: 8px;
    padding: 40px 30px;
}

.watch-out > div > div > div > h2{
    font-size: 22px;
    padding-bottom: 40px;
}



.why-it-matter > h2 {
    padding-top: 40px;
    padding-bottom: 60px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
  justify-content: center;
}

/* Default collapsed state */
.card ul {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0px 50px;
  padding-top: 15px;
}

/* Expanded state */
.card.expanded ul {
  max-height: 500px;
  opacity: 1;
  color: rgb(220,220,220);
}

.card {
  background: #000000;
  color: #fdfdfdf3;
  padding: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.why-it-matter {
    padding-bottom: 80px;
}
