/*--------------------------------------------------------------
# contactUs Section
--------------------------------------------------------------*/
.aboutUs {
  position: relative;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.aboutUs .aboutUs-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.8;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.aboutUs .aboutUs-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .aboutUs .aboutUs-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .aboutUs .aboutUs-title {
    font-size: 1.75rem;
  line-height: 1.5
  ;
  }
  .aboutUs .aboutUs-description {
    font-size: 1rem;
  }
}

.aboutUs .cta-wrapper .btn-primary {
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.aboutUs .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
.card-content-title-1 {
  padding: 80px 30px 30px 0px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2rem;
}

.card-content-desc-1 {
  font-size:1rem;
  color: #5C5C5C;
}

#card-solutions-img-1 {
  background-image:  
    url('../img/about/about-aboutUs-1.png');
  background-size: cover, cover;          
  background-position: center, center;   
  background-repeat: no-repeat, no-repeat;
  height: 350px;                          
  color: white;  
}

.mission .mission-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.mission .mission-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.mission .mission-item .content {
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
  .card-content-title-1 {
    padding: 30px;
  }
  .mission .mission-container {
    max-width: 600px;
    padding: 1rem 0;
  }

  .mission .mission-item {
    padding-bottom: 2rem;
  }

  .mission .mission-item .content {
    border-width: 1px;
  }
}

/*--------------------------------------------------------------
# Trust Section
--------------------------------------------------------------*/
.trust-title {
  font-size: 2.5rem;
  line-height: 0.8;
  margin-bottom: 1.5rem;
}

.trust .trust-item {
  display: flex;
  background-color: rgba(224, 248, 255, 0.5);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.trust .trust-content {
  flex-grow: 1;
}

.trust .trust-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.trust .trust-content p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trust .trust-content .title-icon {
  display: inline-block; 
  width: 50px; 
  height: 50px; 
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
  background-size: contain; 
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .trust-title {
    font-size: 2.0rem;
    line-height: 1.2;
  }
  
  .trust .trust-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .trust .trust-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .trust .trust-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .trust-title {
    font-size: 1.6rem;
  }
  
  .trust .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .trust .trust-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.contact .contact-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact .contact-item:hover {
  box-shadow:  0 8px 15px rgba(0, 0, 0, 0.1), 
    0 -4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(2px);
}