input[type="file"] {
  margin: 1em auto;
  display: block;
  padding: 0.5em;
  font-size: 1rem;
}

.convert-btn {
  display: inline-block;
  background: #0b74de;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  margin: 1em auto;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.convert-btn:hover {
  background: #0959b6;
}

.pkpass-preview {
  margin-top: 2em;
  text-align: center;
}

.pass-card {
  display: inline-block;
  text-align: left;
  background: #fff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  font-size: 1rem;
}
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1em 0;
  font-size: 0.85rem;
  margin-top: auto;
}

/* Style for file input */
input[type="file"] {
  padding: 12px;
  border: 2px solid red;
  border-radius: 8px;
  background-color: #fff0f0;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

input[type="file"]:hover {
  box-shadow: 0 0 10px red;
  transform: scale(1.02);
}

/* Hide default file input label */
input[type="file"]::-webkit-file-upload-button {
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background: #b30000;
}

/* Convert Button */
.convert-btn {
  margin-top: 15px;
  padding: 12px 24px;
  background-color: red;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.convert-btn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
  box-shadow: 0 0 15px red;
}

/* Button animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0px red;
  }
  50% {
    box-shadow: 0 0 12px red;
  }
  100% {
    box-shadow: 0 0 0px red;
  }
}
.hero ul {
  text-align: center;            /* Center the text */
  list-style-position: inside;  /* Keep bullets inside and aligned */
  padding-left: 0;
  margin: 1em 0;
}

.hero ul li {
  margin-bottom: 0.5em;
}





.tool-button {
  padding: 8px 16px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
}

.tool-button:hover {
  background-color: #e0e0e0;
}

/* Responsive info section with white cards */
.webp-info-section {
  max-width: 980px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 15px;
}

.webp-info-section .info-box {
  flex: 1 1 280px;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
  text-align: left;
  box-sizing: border-box;
}

.webp-info-section .info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.webp-info-section .info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #222;
}

.webp-info-section .info-box p {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .webp-info-section {
    padding: 0 10px;
  }

  .webp-info-section .info-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



