/* Card Styling */
.card {
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

/* Slide Up Effect on Hover */
.card:hover {
    transform: translateY(-10px); /* Moves card up */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.card:hover .card-img-overlay {
    opacity: 1;
}

.card-title, .card-text {
    color: white;
}
.btn-icon:hover i {
        transform: translateX(5px);
        transition: 0.3s;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Puts video in the background */
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the whole section */
  }

  #hero {
    position: relative;
    height: 40%; /* Adjust based on your layout 100vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
        .about .container {
    text-align: center;
  }

  .about .feature-list {
    list-style: none;
    padding: 0;
    display: inline-block; /* Ensures lists are centered */
    text-align: left; /* Keeps bullet points aligned properly */
  }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Adds a visible background */
    border-radius: 50%; /* Makes it rounded */
    width: 50px;
    height: 50px;
}
