  .dropshadow{
    -ms-box-shadow: 0px 3px 5px #444444 !important;
  -moz-box-shadow: 0px 3px 5px #444444 !important;
  -webkit-box-shadow: 0px 3px 5px #444444 !important;
  box-shadow: 0px 3px 5px #444444 !important;
  }
  
  .shadow-footer{
    margin-right:0px; /* Set to 0 if you don't want shadow at the right side */
    margin-left:0px; /* Set to 20px if you want shadow at the left side */
    margin-top:20px; /* Set to 20px if you want shadow at the top side */
    margin-bottom:0px; /* Set to 20px if you want shadow at the bottom side */
    box-shadow: 0 .5rem 4rem rgba(0, 0, 0, 0.25);
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  }

  .hover-gradient-text:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .gradient-border {
    position: relative;
    display: inline-block;
     border-radius: 0.5rem;
    border: 2px solid linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  }

  .gradient-border.gradient-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
  }

  .btn-hero {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
  }

  .btn-hero:hover::before {
    left: 100%;
  }

  .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .feature-box {
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUpIn 0.6s ease forwards;
  }

  .feature-box:nth-child(1) {
    animation-delay: 0.1s;
  }

  .feature-box:nth-child(2) {
    animation-delay: 0.2s;
  }

  .feature-box:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes slideUpIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
  }

  .sign-in-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid;
    border-color:  #2563eb;
    border-radius: 0.5rem;
    background-color: transparent;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
  }

  .sign-in-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transition: left 0.3s ease;
    z-index: -1;
  }

  .sign-in-btn:hover {
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
  }

  .sign-in-btn:hover::before {
    left: 0;
  }

