/* General typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh;
  color: white;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* Section headings */
h2 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
}
footer p {
  margin: 0;
  font-size: 14px;
}

/* Forms */
input, textarea, select {
  border-radius: 8px !important;
  border: 1px solid #ddd;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 8px 20px;
}

.fade {
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

/* Simple styling for error messages */
.error-message {
    color: #dc3545; /* Bootstrap's danger color */
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* below two are for showing the pdf */
.wrapper{
    position:relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 100vh;
}

.hidelogo{
    position: absolute;
    width: 100px;
    height: 100px;
    background: transparent;
    right: 2px;
    top: 2px;
    z-index:999;
    display: block;
    color: #fff;
}
