body {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.glass-bg {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler .fa-bars,
.navbar-toggler .fa-times {
    color: white;
    font-size: 1.5rem;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.btn-purple {
    background-color: #6c5ce7;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.tools-grid .card {
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    transition: all 0.3s ease-in-out;
}

.tools-grid .card:hover {
    transform: translateY(-5px);
}

footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    width: 100%;
}

.underline{
    text-decoration: none;
}
.underline:hover{
    text-decoration: none;
}
.btn{
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}
.btn:hover{
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);

}
 
.tool-link {
    cursor: pointer;
    position: relative;
    padding: 20px 40px;
    border-radius: 12px;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tool-link:hover {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  /* The sweeping glow */
  .tool-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .tool-link:hover::before {
    left: 100%;
    animation: sweep-glow 0.8s forwards;
  }
  
  /* Animate the ::before from left to right */
  @keyframes sweep-glow {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  

  .tool-card-ins{
    height: 200px;
  }