*{padding: 0; margin: 0; box-sizing: border-box;}
body{
    overflow-x: hidden;
    background-color: whitesmoke;
    
}

.navbar-collapse {
    overflow: hidden;
  }
  .navbar-nav{
    overflow: hidden;
  }
  
  .image-container {
    position: relative;
    display: inline-block; /* Ensures container size matches image size */
}

.image-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.0) 70%, /* Transparent up to 70% */
        rgba(0, 0, 0, 0.2) 80%, /* Slight visibility at 80% */
        rgba(0, 0, 0, 0.7) 90%, /* More visible at 90% */
        rgba(0, 0, 0, 0.9) 95%, /* Almost solid at 95% */
        rgba(0, 0, 0, 1.0) 100% /* Fully solid at 100% */
    );
}


  
  

  .cta {
    display: flex;
    padding: 11px 33px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: white;
    background: #6225E6;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    margin-left: 40px;
  }
  /* Media query for small screens */
@media (max-width: 296px) {
  .cta {
    margin-left: 0; /* Reset margin for small screens */
  }
}

/* Media query for medium screens */
@media (min-width: 296px) and (max-width: 1400px) {
  .cta {
    margin-left: 0; /* Reset margin for medium screens */
  }
}

  
  .cta:focus {
    outline: none;
  }
  
  .cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
  }
  
  .cta .second {
    transition: 0.5s;
    margin-right: 0px;
  }
  
  .cta:hover  .second {
    transition: 0.5s;
    margin-right: 45px;
  }
  
  .span {
    transform: skewX(15deg)
  }
  
  .second {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
  }
  
  .one {
    transition: 0.4s;
    transform: translateX(-60%);
  }
  
  .two {
    transition: 0.5s;
    transform: translateX(-30%);
  }
  
  .cta:hover .three {
    animation: color_anim 1s infinite 0.2s;
  }
  
  .cta:hover .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
  }
  
  .cta:hover .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
  }
  
  @keyframes color_anim {
    0% {
      fill: white;
    }
  
    50% {
      fill: #FBC638;
    }
  
    100% {
      fill: white;
    }
  }
  /* about */


/* #text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
} */

/* Add styles for the card */
#card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    
}
.shadow {
    filter: drop-shadow(0px 5px 5px rgba(133, 115, 115, 0.5)); /* Adjust the values to change the shadow appearance */
  }

  



  