* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}
hr {
    margin: auto;
    padding-bottom: 20px;
}
.hero-banner {
    background: linear-gradient(135deg, #6e4797, #4fbfb4); 
    color: #ffffff;
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Lucida Grande';
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Montserrat';
  }
  
  .hero-content .btn-cta {
    background: #ffffff;
    color: #4fbfb4; 
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Lucida Sans';
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .hero-content .btn-cta:hover {
    background: #4fbfb4; 
    color: #ffffff; 
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .hero-content .btn-cta {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
  }

  /* Header 2 CSS */
.hero-banner-alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #9b65c3, #4fbfb4);
    color: #ffffff;
    height: 100vh;
    padding: 0 40px;
    box-sizing: border-box;
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Lucida Grande';
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Montserrat';
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .hero-buttons .btn-outline,
  .hero-buttons .btn-solid {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: #4fbfb4;
  }
  
  .hero-buttons .btn-solid {
    background: #4fbfb4;
    color: #ffffff;
    border: none;
  }
  .hero-buttons .btn-solid:hover {
    background: #3a9c92; 
    transform: scale(1.1);
  }
  
  .hero-image img {
    max-width: 750px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .hero-banner-alt {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 20px;
    }
    .hero-text {
      max-width: 100%;
      margin-bottom: 20px;
    }
    .hero-text h1 {
      font-size: 2.2rem;
    }
    .hero-text p {
      font-size: 1rem;
    }
    .hero-image img {
      max-width: 300px;
    }
  }

  /* Header 3 CSS */
.hero-banner-centered {
    position: relative;
    background: linear-gradient(135deg, #6e4797, #4fbfb4); 
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
  }
  
  .hero-content {
    z-index: 1; 
    max-width: 600px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0; 
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-buttons .btn-explore,
  .hero-buttons .btn-signup {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .hero-buttons .btn-explore {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .hero-buttons .btn-explore:hover {
    background: #ffffff;
    color: #6e4797; 
    transform: scale(1.05);
  }
  
  .hero-buttons .btn-signup {
    background: #4fbfb4; 
    color: #ffffff;
    border: none;
  }
  
  .hero-buttons .btn-signup:hover {
    background: #3a9c92; 
    transform: scale(1.05);
  }
  

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
    .hero-buttons .btn-explore,
    .hero-buttons .btn-signup {
      padding: 12px 30px;
      font-size: 0.9rem;
    }
  }
  