* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    padding: 2rem;
    background-color: transparent;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  #wallpaper {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
  }
  
  .frosted-glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Hero section translucent box */
  .hero-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    max-width: 700px;
  }
  
  #contact {
    margin-top:2rem;
  }

  .hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-effect:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .frosted-glass h5{
    color:#ffffff
  }

  .frosted-glass p.text-muted {
    color: #dddddd
  }

  .frosted-glass p:last-child {
    color: #fffb91;
    font-weight: 500;
  }
  