
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #f0f0f0;
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #6c3a76, #5ad0c3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-banner {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
}

.hero-content .logo {
  width: 100px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 2.7rem;
  color: #6c3a76;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #6c3a76;
  border: none;
}

.img-con {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-con img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
}


/* Design number 2 CSS */

.hero-banner2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #6c3a76, #5ad0c3);
    color: white;
    font-family: 'Lucida Grande';
}
.hero-content2 {
    max-width: 700px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.Design2 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.tagline2 {
    font-size: 1.3rem;
    font-family: 'Montserrat';
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.85;
}
.cta-button2 {
    display: inline-block;
    padding: 15px 40px;
    background-color: #5ad0c3; 
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.cta-button2:hover {
    background-color: #6c3a76; 
    transform: translateY(-3px);
}
@media (max-width: 425px) {
    .hero-banner2 {
      padding: 20px;
    }
  
    .hero-content2 {
      text-align: center;
    }
  
    .Design2 {
      font-size: 28px; 
      line-height: 1.2;
    }
  
    .tagline2 {
      font-size: 16px; 
      margin: 10px 0;
    }
  
    .cta-button2 {
      font-size: 14px;
      padding: 12px 20px;
      margin-top: 15px;
    }
  }
  
  @media (max-width: 375px) {
    .Design2 {
      font-size: 24px; 
    }
  
    .tagline2 {
      font-size: 14px;
    }
  
    .cta-button2 {
      font-size: 12px;
      padding: 10px 18px;
    }
  }
  
  @media (max-width: 320px) {
    .Design2 {
      font-size: 22px; 
    }
  
    .tagline2 {
      font-size: 12px;
    }
  
    .cta-button2 {
      font-size: 12px;
      padding: 8px 16px;
    }
  }

 /* Design # 3 */

.hero-2 {
  min-height: 100vh;
  background: linear-gradient(135deg, #6c3a76, #5ad0c3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-banner3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffffdd;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  padding: 2rem 3rem;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.Design3 {
  font-size: 3rem;
  color: #6c3a76;
  margin-bottom: 1rem;
}

.tagline3 {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta-button3 {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #6c3a76;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease;
}

.cta-button3:hover {
  background-color: #5a2e63;
}


.img-con {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-con img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}


@media (max-width: 900px) {
  .hero-banner3 {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .Design3 {
    font-size: 2.2rem;
  }

  .tagline3 {
    font-size: 1.1rem;
  }

  .img-con {
    margin-top: 2rem;
  }
}
