body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Internet_map_1024.jpg/1024px-Internet_map_1024.jpg') no-repeat center center/cover;
    color: white;
  }
  .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .container {
    position: relative;
    z-index: 2;
    padding: 40px;
  }
  .logo {
    width: 80px;
    height: 80px;
  }
  .search-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .search-input {
    width: 60%;
    padding: 15px;
    border-radius: 40px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: #eee;
    color: #333;
  }
  .btn {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(to right, #9000ff, #6300a0);
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  .title {
    margin-top: 60px;
    font-size: 2rem;
    font-weight: 800;
    text-align: left;
    max-width: 500px;
  }
  .about-box {
    margin-top: 30px;
    background: #222;
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    color: #ccc;
  }
  .about-box h3 {
    color: white;
  }
  