/*--------------------------------------------------------------
# contactUs Section
--------------------------------------------------------------*/
#card-description-img-1 {
  background-image:  
    url('../img/products/products-gts/products-background-1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  color: white;
}

@media (max-width: 991.98px) {
  #card-description-img-1 {
    height: 60vh;
  }
}
@media (max-width: 767.98px) {
  #card-description-img-1 {
    height: 50vh;
  }
  .card-content-desc {
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# Manage Section
--------------------------------------------------------------*/
.manage-title {
  font-size: 2.5rem;
  line-height: 0.8;
  margin-bottom: 1.5rem;
}

.manage .manage-item-container {
  width: 20%;
}

.manage .manage-item {
  display: flex;
  padding: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.manage .manage-content {
  flex-grow: 1;
}

.manage .manage-content .title-icon {
  display: inline-block; 
  width: 70px; 
  height: 70px; 
  margin-top: 1rem;
  margin-bottom: 0.1rem;
  background-size: contain; 
  background-repeat: no-repeat;
}	

.manage .manage-content h3 {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  height: 30px;
  align-content: center;
  color: var(--heading-color);
}

.manage .manage-content i {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 1px var(--heading-color);
  color: var(--heading-color);
}

@media (max-width: 767.98px) {
  .manage-title {
    font-size: 2.0rem;
    line-height: 1.2;
  }
  
  .manage .manage-item-container {
    width: 50%;
  }
  
  .manage .manage-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .manage .manage-content h3 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .manage .manage-content i {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .manage-title {
    font-size: 1.6rem;
  }
  
  .manage .manage-item-container {
    width: 50%;
  }

  .manage .manage-item {
    flex-direction: column;
    text-align: center;
  }

  .manage .manage-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
}

/*--------------------------------------------------------------
# Description Section
--------------------------------------------------------------*/
.card-description {
  padding-top: 5px;
}

.description-item p {
  font-weight: 400;
  font-size:1.5rem;
  color: #00AAFF;	
}

.card-content-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card-content-desc {
  font-size:1.2rem;
  line-height: 2rem;
  color: #949494;
}

.description .card-content-desc .card-content-icon {
  display: inline-block; 
  width: 42px; 
  height: 42px; 
  margin-right: 20px;
  background-size: contain; 
  background-repeat: no-repeat;
}	

#card-description-img-2 {
  background-image:  
    url('../img/products/products-gts/description-img-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  color: white;
}

#card-description-img-3 {
  background-image:  
    url('../img/products/products-gts/description-img-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  color: white;
}

#card-description-img-4 {
  background-image:  
    url('../img/products/products-gts/description-img-3.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 50px;
  height: 300px;
  color: white;
}

#card-description-img-5 {
  background-image:  
    url('../img/products/products-gts/description-img-4.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  color: white;
}

#card-description-img-6 {
  background-image:  
    url('../img/products/products-gts/description-img-5.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  color: white;
}

.description .description-container {
  max-width: 1000px;
  margin: 0 auto;
}

.description .description-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.description .description-item .content {
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 991.98px) {  
  #card-description-img-2, #card-description-img-3, #card-description-img-4, 
  #card-description-img-5, #card-description-img-6 {
    height: 50vh;
    width: 80vw;
    background-size: contain;
    background-position: center;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) { 
  .card-content-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .card-content-title, .description-item p {
    padding-left: 20px;
  }
  .card-content-desc {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #card-description-img-2, #card-description-img-3, #card-description-img-4, 
  #card-description-img-5, #card-description-img-6 {
    height: 35vh;
    width: 90vw;
  }

  .description .description-container {
    max-width: 600px;
    padding: 1rem 0;
  }

  .description .description-item p {
    font-size: 1.25rem;
  }

  .description .description-item {
    padding-bottom: 2rem;
  }

  .description .description-item .content {
    border-width: 1px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.contact {
  background-color: #F2FCFF;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact h3 {
  font-size: 2.2rem;
  font-weight: 600;
}

.contact p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #949494;
}

.contact a, .title a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: 180px;
  padding: 15px;
  border-radius: 18px;
  background-color: #E83C3C;
  border-color: #dc3545;
}

.contact a:hover, .title a:hover {
  background-color: #C23636;
  border-color: #b02a37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) { 
  .contact h3 {
    font-size: 1.75rem;
  } 
  .contactp3 {
    font-size: 1rem;
  }
}