.contact-section {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  width: 100%;
}

.contact-section h2 {
  font-size: 25px;
  font-weight: 800;
  color: #1a144f;
  margin-bottom: 40px;
}

.contact-section .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #34c5be; 
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 14px 20px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s ease;
}




.icon {
  margin-right: 5px;
  display: inline-flex;       
  align-items: center;
  justify-content: center;
}


.detail-card ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.detail-card ul li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.detail-card p {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}


.details {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  width:100%;
}

.details .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.detail-card {
  background-color: #f8f8fa;
  flex: 1 1 calc(33.333% - 20px);
  padding: 30px;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box;
}

.detail-card h3 {
  font-size: 22px;
  font-family: 'MuseoSansRounded', Arial, sans-serif;
  font-weight: 700;
  color: #1a144f;
  margin-bottom: 15px;
}

.detail-card p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.detail-card .quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: bold;
  color: #34c5be;
}

@media (max-width: 768px) {
  .details .container {
    flex-direction: column;
    align-items: center;
  }

  .detail-card {
    flex: 1 1 100%;
    max-width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact-section {
    margin-bottom: 40px;
  }

  .detail-card .quote {
    position: static;
    display: block;
    margin-top: 15px;
  }

  .detail-card ul li {
    text-transform: capitalize;
  }
}




.banner-business {
  background-color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  width: 100%;
}

.banner-business .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-business .banner-text {
  flex: 1 1 50%;
  max-width: 550px;
}

.banner-business h1 {
  font-size: 46px;
  color: #000;
  margin-bottom: 20px;
  font-family: 'MuseoSansRounded', Arial, sans-serif;
}

.banner-business p {
  font-size: 18px;
  color: #1a144f;
  margin-bottom: 30px;
}

.banner-business .btn-contact {
  display: inline-block;
  background-color: #34c5be;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-business .btn-contact:hover {
  background-color: #34c5be;
}

.banner-business .licenses {
  margin-top: 40px;
  font-size: 14px;
  color: #1a144f;
}

.banner-business .licenses strong {
  font-weight: 700;
}

.banner-business .licenses span {
  margin-right: 20px;
}

.banner-business .banner-image {
  flex: 1 1 40%;
  text-align: right;
}

.banner-business .banner-image img {
  max-width: 600px;
  height: auto;
}
@media (max-width: 768px) {
  .banner-business .container {
    flex-direction: column;
    text-align: center;
  }

  .banner-business .banner-text {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .banner-business h1 {
    font-size: 38px;
  }

  .banner-business p {
    font-size: 16px;
  }

  .banner-business .btn-contact {
    font-size: 16px;
    padding: 14px 35px;
    border-radius: 8px;
  }

  .banner-business .licenses {
    margin-top: 25px;
    font-size: 13px;
  }

  .banner-business .banner-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .banner-business .banner-image img {
    max-width: 90%;
  }
}




#loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .pulse-dot {
      width: 90px;
      height: 90px;
      background-color: #684fff;
      border-radius: 50%;
      animation: pulse 1s ease-in-out infinite;
      display: inline-block;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.6; }
      100% { transform: scale(1); opacity: 1; }
    }



.hero {
  background-color: #684FFF;
  color: white;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 200px;
  padding: 100px 60px;
  height: auto;
  box-sizing: border-box;
  width: 100%;
}

.hero-text {
  max-width: 500px;
  margin-top: 100px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #1FD9C2;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #17b3a3;
}

.hero-image {
  position: relative;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 10px;
  }

  .hero-image {
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .btn-primary {
  background-color: #1FD9C2;
  color: white;
  border: none;
  padding: 14px 80px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
  
  .hero-text h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}

  .hero-text {
    max-width: 100%;
    margin-top: 0;
  }
}