html, body {
  overflow: hidden;
}

/* General Reset */
body, h1, h2, p, a, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    background-color: #000;
}

  
  /* Header */
  header {
    position: absolute; /* Make the header overlay the hero section */
    top: 0;
    left: 0;
    right: 0; /* Ensure it doesn't extend beyond the viewport */
    width: 100%; /* Make it span the full width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    color: #fff;
    z-index: 10; /* Ensure the header stays above other elements */
    box-sizing: border-box; /* Include padding in the width */
    background-color: #002b5c90;
    border-bottom-left-radius: 75%;
    border-bottom-right-radius: 25%;
  }
  
  header .logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
  }
  header .logo {
    display: flex;
    flex-direction: column; /* Stack the text */
    align-items: flex-start; /* Align text neatly */
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2; /* Adjust spacing between the lines */
  }

  header .logo .browse {
      font-size: 2rem; /* Slightly larger for visibility */
      color: #ffa500; /* Vibrant orange */
      font-family: 'Poppins', sans-serif;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Stronger shadow for visibility */
  }

  header .logo .board {
      font-size: 2.5rem; /* Larger text for emphasis */
      color: #ffffff; /* Clean white for contrast */
      font-family: 'Roboto', sans-serif; /* Different font for distinction */
      text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); /* Enhanced shadow */
      text-transform: uppercase; /* Highlight importance */
  }

  
  .navbar a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #ffa500; /* Accent color */
  }
  
  .navbar a.search-btn {
    padding: 10px 20px;
    background: linear-gradient(90deg, #0073e6, #0056a6); /* Gradient Blue */
    border-radius: 20px;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .navbar a.search-btn:hover {
    background: linear-gradient(90deg, #0056a6, #003d80);
  }
  
  /* Hero Section */
  .hero {
    background: 
        linear-gradient(to bottom, rgba(0, 40, 85, 0.4), rgba(0, 0, 0, 1)),
        url('wallpaper2.jpg');
    background-size: cover;
    background-position: center;
    padding: 15% 20px;
    text-align: center;
    color: #fff;
    position: relative;
  }

  .hero-text h1 {
      font-size: 3.5rem; /* Large and bold */
      font-weight: 900;
      color: #ffa500; /* Vibrant orange */
      text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Strong shadow for depth */
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px; /* Spacing between text and icons */
      flex-wrap: wrap; /* Ensures responsiveness */
  }

  .hero-text .icon {
      font-size: 2.5rem; /* Adjust size for emphasis */
      color: #ffa500;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add subtle glow */
  }

  .hero-text .hero-subtext {
      font-size: 1.5rem;
      margin: 10px 0 30px 0;
      color: #f5f5f5; /* Softer white for contrast */
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .search-bar {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 10px;
  }

  .search-bar input {
      width: 400px;
      padding: 12px 15px;
      border-radius: 25px 0 0 25px;
      border: none;
      font-size: 1rem;
      outline: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  }

  .search-bar button {
      padding: 12px 25px;
      border-radius: 0 25px 25px 0;
      border: none;
      font-size: 1.2rem;
      background: linear-gradient(90deg, #ffa500, #ff5500); /* Gradient for visual appeal */
      color: white;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .search-bar button:hover {
      background: linear-gradient(90deg, #ff5500, #ff2200);
      transform: scale(1.05); /* Slight zoom on hover */
  }

  .search-bar button i {
      margin: 0;
  }

  @media (max-width: 768px) {
      .hero-text h1 {
          font-size: 2.5rem;
      }
      .search-bar input {
          width: 100%;
      }
  }

  
  /* Features Section */
  .features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 80px;
    margin-top: -90px;
    border-radius: 20px;
    backdrop-filter: blur(10px); /* Stronger blur for glass effect */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* More prominent shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .features:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); /* Lift on hover for emphasis */
  }

  .feature {
    text-align: center;
    flex: 1;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer; /* Indicates interactiveness */
  }

  .feature:hover {
    transform: translateY(-10px); /* More pronounced lift */
    background: rgba(255, 255, 255, 0.3); /* Slightly brighter on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Shadow emphasis */
  }

  .feature img {
    width: 60px; /* Slightly larger icon */
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s, filter 0.3s;
    filter: drop-shadow(0 4px 8px #ffa500); /* Icon glow */
  }

  .feature:hover img {
    transform: scale(1.2); /* More zoom on hover */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)); /* Enhanced glow */
  }

  .feature h3 {
    font-size: 1.25rem; /* Add heading for clarity */
    font-weight: 700;
    color: #ffa500; /* Vibrant accent color */
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Slight shadow for emphasis */
  }

  .feature p {
    font-size: 1rem; /* Clean and readable */
    font-weight: 400;
    color: #f5f5f5; /* Softer white for readability */
    margin-top: 10px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .feature {
        padding: 20px;
    }
  }

  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    .navbar {
      margin-top: 10px;
    }
  
    .features {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
      }
    
    .search-bar input {
      width: 100%;
    }
  
    .search-bar {
      flex-direction: column;
      gap: 10px;
    }
  
    .search-bar button {
      border-radius: 25px;
    }
  }
  