@import url(https://fonts.googleapis.com/css?family=Open+Sans);
.home {
  padding: 2rem;
}
.hero-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  margin-bottom: 3rem;
}
.hero-text {
  max-width: 500px;
}
.hero-title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-description {
  color: #555;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
.btn-learn-more {
  background-color: #ff4d61;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
}
.btn-learn-more:hover {
  background-color: #e63946;
}
.btn-how-it-works {
  background-color: #f4f4f4;
  border: 2px solid #4c4b4b;
  border-radius: 30px;
  color: #555;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 20px;
  width: 600px;
}
.engagement-box {
  background-color: #fff;
  border-radius: 8px;
  bottom: -20px;
  box-shadow: 0 5px 15px #0000001a;
  left: 50%;
  padding: 1rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}
.engagement-box p {
  color: #888;
  font-size: 1.25rem;
  margin: 0;
}
.engagement-box h2 {
  color: #1d3557;
  font-size: 1.6rem;
  margin: 0.5rem 0;
}
.engagement-box span {
  color: #2a9d8f;
  font-size: 1.2rem;
}
.statistics-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin-top: 5rem;
}
.stat-card {
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 280px;
}
.stat-card h3 {
  font-size: 2.5rem;
  margin: 0;
}
.stat-card p {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}
.stat-card span {
  font-size: 1rem;
}
.stat-card.blue {
  background-color: #1d4ed8;
}
.stat-card.red {
  background-color: #ef4444;
}
.stat-card.yellow {
  background-color: #e0a40d;
  color: #fff;
}
.stat-card.black {
  background-color: #111827;
}
.services {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}
.services-intro h1 {
  color: #6d28d9;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.services-intro p {
  color: #555;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.services-intro .highlight {
  color: #6d28d9;
  font-weight: 700;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px #0000001a;
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 40rem;
}
.service-card:hover {
  box-shadow: 0 8px 20px #0003;
  transform: translateY(-10px);
}
.service-icon {
  color: #6d28d9;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-description {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services-intro h1 {
    font-size: 2.5rem;
  }
  .services-intro p {
    font-size: 1.5rem;
  }

  .hero-image img{
    display: none;
  }

  .engagement-box{
    display: none;
  }
}
.about-container {
  background: #f7f7f7;
  padding: 4rem 2rem;
  text-align: center;
}
.about-intro {
  margin: 0 auto 3rem;
  max-width: 800px;
}
.about-tagline {
  color: #6b7280;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.about-intro h2 {
  color: #111827;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-description {
  color: #6b7280;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.learn-more-button {
  background: #6d28d9;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.learn-more-button:hover {
  box-shadow: 0 8px 15px #0003;
  transform: translateY(-3px);
}
.about-features {
  grid-gap: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px #0000001a;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 8px 20px #0003;
  transform: translateY(-5px);
}
.feature-icon {
  height: 48px;
  margin-bottom: 1rem;
  width: 48px;
}
.feature-title {
  color: #6d28d9;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature-description {
  color: #4b5563;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2.5rem;
  }
  .about-description {
    font-size: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .feature-title {
    font-size: 1.8rem;
  }
  .feature-description {
    font-size: 1.6rem;
  }
}
.contact-container {
  background: linear-gradient(145deg, #c0aae2, #c5bbe3);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem;
}
.contact-details {
  grid-gap: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  max-width: 45%;
  width: 50%;
}
.contact-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px #0000001a;
  color: #1a1a1a;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 8px 20px #0003;
  transform: translateY(-5px);
}
.contact-icon {
  color: #6d28d9;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: #6d28d9;
  text-decoration: none;
}
.contact-card a:hover {
  color: #0d47a1;
}
.contact-form-section {
  background: #6d28d9;
  border-radius: 8px;
  max-width: 50%;
  padding: 2.5rem;
  width: 45%;
}
.contact-form-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-input,
.form-textarea {
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  padding: 1rem;
}
.form-input:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px #7d3faa;
  outline: none;
}
.form-textarea {
  min-height: 120px;
}
.form-submit-button {
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #6d28d9;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
.form-submit-button:hover {
  background: #007bff;
  transform: translateY(-3px);
}
@media (max-width: 1024px) {
  .contact-container {
    align-items: center;
    flex-direction: column;
  }
  .contact-details,
  .contact-form-section {
    max-width: 100%;
    width: 100%;
  }
  .contact-details {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .contact-form-section {
    padding: 2rem;
  }
  .form-input,
  .form-textarea {
    font-size: 1.4rem;
  }
  .form-submit-button {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .contact-details {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .contact-card h3 {
    font-size: 1.5rem;
  }
  .contact-card p {
    font-size: 1.4rem;
  }
  .contact-icon {
    font-size: 2.2rem;
  }
}
.strategies-section {
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  padding: 4rem 14rem;
}
.strategies-intro {
  max-width: 50%;
}
.strategies-intro h2 {
  color: #333;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.strategies-intro p {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.learn-more-btn {
  background: #6d28d9;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.learn-more-btn:hover {
  box-shadow: 0 8px 15px #0003;
  transform: translateY(-3px);
}
.strategies-grid {
  grid-gap: 2rem;
  display: grid;
  flex: 1 1;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.strategy-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px #0000001a;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strategy-card:hover {
  box-shadow: 0 8px 20px #0003;
  transform: translateY(-5px);
}
.strategy-icon {
  height: 60px;
  margin-bottom: 1rem;
  width: 60px;
}
.strategy-card h3 {
  color: #333;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.strategy-card p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .strategies-section {
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
  }
  .strategies-intro {
    max-width: 100%;
  }
  .strategies-grid {
    flex-direction: column;
  }
}
.header {
  align-items: center;
  background: linear-gradient(90deg, #4c1d95, #6d28d9);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}
.header.scrolled {
  background: linear-gradient(90deg, #1e293b, #111827);
  box-shadow: 0 4px 10px #0000004d;
}
.header-logo {
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
}
.hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  width: 30px;
  z-index: 1100;
}
.hamburger .line {
  background-color: #fff;
  border-radius: 5px;
  height: 3px;
  transition: all 0.3s ease;
}
.hamburger .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger .line2 {
  opacity: 0;
}
.hamburger .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header-nav {
  align-items: center;
  display: flex;
}
.header-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav ul li {
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.header-nav ul li:hover {
  color: #16a34a;
}
.navbtn button {
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  .header-nav {
    background: linear-gradient(90deg, #4c1d95, #6d28d9);
    box-shadow: -4px 0 10px #0003;
    flex-direction: column;
    height: 100vh;
    padding: 2rem;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    width: 250px;
    z-index: 1000;
  }
  .header-nav.open {
    transform: translateX(0);
  }
  .header-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .navbtn {
    display: none;
  }
  .navbtn.open {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}
.footer-section {
  flex: 1 1;
  min-width: 250px;
  text-align: left;
}
.footer-section h3 {
  color: #38bdf8;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.footer-branding h2 {
  color: #38bdf8;
  cursor: pointer;
  font-size: 2.5rem;
}
.footer-branding p {
  color: #bdbdbd;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social-icons a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease;
}
.footer-social-icons a:hover {
  color: #38bdf8;
}
.footer-legal ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-legal li,
.footer-links li {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.footer-legal a,
.footer-links a {
  color: #bdbdbd;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover,
.footer-links a:hover {
  color: #38bdf8;
}
.footer-contact p {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.footer-contact a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #66d9ff;
}
.footer-bottom {
  background-color: #0d0d0d;
  color: #bdbdbd;
  font-size: 1.2rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-section {
    text-align: center;
  }
}
.privacy-policy-content a {
  color: #007bff;
}
.privacy-policy {
  background-color: #f9f9f9;
  color: #333;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 4rem 5rem;
}
.privacy-policy-header {
  margin-bottom: 3rem;
  text-align: center;
}
.privacy-policy-header h2 {
  color: #333;
  font-size: 3rem;
  font-weight: 700;
}
.privacy-policy-content h3 {
  color: #444;
  font-size: 2rem;
  margin-top: 2rem;
}
.privacy-policy-content p,
.privacy-policy-content ul {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.privacy-policy-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}
.privacy-policy-content ul li {
  margin-bottom: 0.5rem;
}
.privacy-policy-content a {
  color: #fdae33;
  text-decoration: none;
}
.privacy-policy-content a:hover {
  text-decoration: underline;
}
.service-details-container {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px #0000001a;
  font-family: Arial, sans-serif;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem;
}
.service-header {
  margin-bottom: 2rem;
  text-align: center;
}
.service-header h1 {
  color: #6d28d9;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.service-description {
  color: #4a4a4a;
  font-size: 1.6rem;
}
.service-content {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.service-image-section {
  flex: 1 1;
  text-align: center;
}
.service-image {
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
  max-width: 80%;
}
.service-info {
  flex: 1 1;
  padding: 1rem;
}
.service-info h2 {
  color: #6d28d9;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-info p {
  color: #4a4a4a;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.cta-button {
  background: linear-gradient(90deg, #6d28d9, #a78bfa);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  transition: transform 0.3s, background 0.3s;
}
.cta-button:hover {
  background: linear-gradient(90deg, #4c1d95, #6d28d9);
  transform: translateY(-5px);
}
.service-features-section {
  margin-top: 2rem;
}
.service-features-section h2 {
  color: #6d28d9;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.feature-item {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
  display: flex;
  font-size: 1.2rem;
  padding: 1rem;
  width: calc(50% - 1rem);
}
.feature-icon {
  height: 20px;
  margin-right: 0.5rem;
  width: 20px;
}
.service-testimonials-section {
  margin-top: 3rem;
  width: 100%;
}
.service-testimonials-section h2 {
  color: #6d28d9;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.service-testionialslist {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
.testimonial-card {
  box-shadow: 0 4px 10px #0000001a;
  margin-bottom: 1rem;
}
.testimonial-feedback {
  color: #4a4a4a;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.testimonial-name {
  color: #6d28d9;
}
@media (max-width: 768px) {
  .features-list,
  .service-content {
    flex-direction: column;
  }
  .features-list {
    gap: 1rem;
  }
  .feature-item {
    width: 100%;
  }
}
.testimonials-container {
  background: #f9f9f9;
  margin: 0 auto;
  max-width: 1200px;
  padding: 4rem 2rem;
  text-align: center;
}
.testimonials-header {
  color: #007bff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.testimonials-intro {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px #0000001a;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px #0003;
  transform: translateY(-10px);
}
.testimonial-image {
  border-radius: 50%;
  height: 80px;
  margin-bottom: 1rem;
  object-fit: cover;
  width: 80px;
}
.testimonial-content {
  margin-top: 1rem;
}
.testimonial-feedback {
  color: #555;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonial-name {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.testimonial-designation {
  color: #777;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .testimonials-list {
    align-items: center;
    flex-direction: column;
  }
}
.newsletter-section {
  background-color: #6d28d9;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.container {
  margin: 0 auto;
  max-width: 800px;
}
.newsletter-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.newsletter-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.newsletter-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.newsletter-form input {
  border: none;
  border-radius: 5px;
  flex: 1 1;
  font-size: 1.25rem;
  outline: none;
  padding: 15px;
}
.newsletter-form input::placeholder {
  color: #888;
}
.subscribe-button {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  color: #6d28d9;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 15px 50px;
  transition: background-color 0.3s ease;
}
.subscribe-button:hover {
  background-color: #38bdf8;
}
@media (max-width: 768px) {
  .newsletter-section h2 {
    font-size: 2rem;
  }
  .newsletter-section p {
    font-size: 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .subscribe-button {
    padding: 15px;
    width: 100%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: Open Sans;
  font-size: 10px;
}
/*# sourceMappingURL=main.45ecf5aa.css.map*/
