@font-face {
  font-family: 'Quicksand';
  src: url('fonts/Quicksand-Regular.woff2') format('woff2'),
       url('fonts/Quicksand-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; /* Dark background */
  color: #fff; /* White text */
  text-align: center;
  width: 100vw;
  /* overflow: hidden; */
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  height: 100vh;
  position: relative;
  /* height: 100vh; */
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header {
  padding: 20px 0;
}

.header img {
  max-width: 200px;
}

.hero {
  padding: 10px 20px;
  /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 100,100" style="fill:rgba(255,165,0,0.2);"/><polygon points="0,100 100,0 0,0" style="fill:rgba(255,165,0,0.2);"/></svg>'); Orange wave background */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  margin-top: 10px;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
  margin-top: 10px;
  background: linear-gradient(
    to bottom,
    rgba(247, 153, 32, 1),
    rgba(211, 20, 88, 1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff9800; /* Orange button */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero a:hover {
  background-color: #f57c00; /* Darker orange on hover */
}

.illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.illustration img {
  max-width: 80%;
}

.hero-icon {
  width: 440px;
  height: 228px;
}

.hero-bottom {
  display: flex;
  /* justify-content: end; */
  align-items: end;
  gap: 4rem;
  padding: 4rem;
}

.learn-more-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(to bottom, #ffa500, #ff6347);
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero-bottom-content {
  text-align: start;
  margin-bottom: 3rem;
}

.hero-text {
  padding-right: 8rem;
  font-size: 15px !important;
}

.footer {
  padding: 20px 0;
  background-color: #111; /* Darker background */
  font-size: 0.9em;
  position: relative;
  /* margin-top: 50px; */
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #ff9800,
    transparent
  ); /* Orange gradient line */
}

/* Responsive design */

@media (max-width: 992px) {
  body {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  body,
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
  }

  .container {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .hero {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: 1.5em;
  }

  .hero h2 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 0.75em;
  }

  .hero a {
    padding: 10px 20px;
  }

  .hero-icon {
    width: 100%;
    height: 100%;
    max-width: 20rem !important;
    max-height: 15rem !important;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    margin-bottom: 0;
    align-items: center;
  }

  .hero-bottom-content {
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .footer {
    position: relative;
    left: 0;
    width: 100%;
    bottom: 0;
  }
}
