/* style.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
}

.hero {
  height: 50vh;
  background: linear-gradient(to bottom right, #00aaff, #ff77aa);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 1rem;
}

h1 {
  margin-bottom: 1rem;
  color: #000000; /* Change to any color you like */
  border: 10px solid transparent;
  padding: 10px;
  border-image: url('assets/img/download.jpg') 30 round; /* Replace with your image path */
}

input#placeholderInput {
  padding: 0.7rem;
  width: 60%;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

input#placeholderInput:focus {
  box-shadow: 0 0 10px #fff;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.box {
  background: #bef3fa;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
}

.box:hover {
  transform: scale(1.05);
}
