.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensures the video is behind the content */
  }

  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Covers the entire background */
  }

  #hero {
    position: relative;
    color: white; /* Ensuring text remains readable */
    background: linear-gradient(90deg, rgba(88, 70, 249, 0.5) 0%, rgba(123, 39, 216, 0.5) 100%),  center center no-repeat; /* Add slight background overlay for readability */
    padding: 80px 0;
  }

  .btn-get-started {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .btn-get-started:hover {
    background-color: #f8f9fa;
  }

  .icon-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: rgba(0, 123, 255, 0.1); /* Light blue background */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }
  
  .icon-box:hover .icon {
    background: rgba(0, 123, 255, 0.3); /* Darker blue background on hover */
    transform: scale(1.1);
  }
  
  .icon-box .icon i {
    font-size: 36px;
    transition: all 0.3s ease-in-out;
  }
  
  .icon-box:hover .icon i {
    color: #0056b3; /* Darker blue icon color */
  }
  
  .icon-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .icon-box p {
    font-size: 14px;
    color: #6c757d;
  }
  


  /* .icon-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  
  .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
  }
  
  .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }
  
  .icon-box:hover .icon {
    transform: scale(1.1); 
  }
  
  .icon-box .icon i {
    font-size: 30px;
    transition: all 0.3s ease-in-out;
  } */
  
 