*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.section-container{
    width: 100%;
    height: 100%;
}
.banner-section{
    width: 100%;
    height: 100%;
    position : relative;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensures the video is behind other content */
  }
  
  #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: brightness(45%);
  }
  .banner-content{
    width: 100%;
    height: 100%;
    position : relative;
    top : 10%;
    padding: 100px 100px;
    z-index: 1;
  }
  .banner-content h4{
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    line-height: 1.5;
  }

  .content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:20px;
    text-align: justify;
  }

  .content-container{
    width: 80%;
    padding : 50px 0px;
    margin : 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap : 100px;
  }

  .card-section{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap : 80px;
  }
  .card-content{
    position :absolute;
    left: 0;
    bottom: 0;
    padding : 30px;
    color: #fff;
  }

  .card-content h3{
    font-size: 25px;
    font-weight: 400;
  }
  .card-content p{
    font-weight: 200;
    line-height: 1.5;
  }

  @property --angle{
    syntax : "<angle>";
    initial-value : 0deg;
    inherits: false;
  }

  .card::after, .card::before{
    content: '';
    position : absolute;
    width: 100%;
    height: 100%;
    background-image : conic-gradient(from var(--angle), transparent 70%, rgb(188, 10, 232), rgb(12, 8, 239), rgb(55, 255, 0));
    top : 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 10px;
    padding: 4px;
    z-index: -1;
    animation: spin 3s linear infinite;
  }
  .card::before{
    filter: blur(1rem);
    opacity: 0.3;
    z-index: -2;
  }

  .card {
    width: 300px;
    max-width: 300px;
    /* height: 400px; */
    max-height: 500px;
    border : 1px solid rgba(255, 255, 255, 0.0.8);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(71, 71, 71, 0.6);
    position : relative;
    background-color: #000;
  }
  .card img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #000;
    --webkit-mask : linear-gradient(to top, transparent, rgba(0, 0, 0, 0.8) 30% );
    mask : linear-gradient(to bottom, white 30%, rgba(0, 0, 0, 0.2) 80% );
  }

  .card:hover::after, .card:hover::before{
    background-image : none;
  }
  .card:hover{
    scale : 1.1;
    transition : all 1s ease-in-out;
  }

  
  @keyframes spin{
    from {
      --angle : 0deg;
    }
    to {
      --angle : 360deg;
    }
  }



@media  screen and (max-width : 768px) {
  .content-container{
    display: flex;
    justify-content: center;
  }
    .card-section{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin : 0 auto;
        gap:50px;
        padding: 0px 30px;
    }
    .card{
      width: 100%;
      height: auto;
    }
}

