/*--------------------------------------------------------------
# contactUs Section
--------------------------------------------------------------*/
.products {
  padding-top: 300px;
  position: relative;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

#products {
  background-image: url('../img/products/products/products-background-1.png'); 
  background-size: cover; 
  background-position: center; 
  height: 85vh;
}

#products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%; 
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(128, 128, 128, 0.4), rgba(255, 255, 255, 0));
  pointer-events: none; 
  z-index: 2;
}

.products .products-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.8;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products .products-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991.98px) {
  .products {
    padding-left: 15px;
  }

  .products .products-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .products {
    padding-top: 14vh;
    padding-left: 3vw;
  }
  #products {
    height: 50vh;
  }
  #products::before {
    width: 75%; 
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(128, 128, 128, 0.6), rgba(255, 255, 255, 0));
  }
  .products .products-title {
    font-size: 1.75rem;
  }
  .products .products-description {
    font-size: 1rem;
  }  
}

/*--------------------------------------------------------------
# Manage Section
--------------------------------------------------------------*/
.manage-title {
  font-size: 2.5rem;
  line-height: 0.8;
  margin-bottom: 1.5rem;
}

.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: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.manage .manage-content i {
  font-size: 1.3rem;
  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 {
    padding: 0;
    margin-bottom: 0;
  }

  .manage .manage-content h3 {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .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 {
    flex-direction: column;
    text-align: center;
  }

  .manage .manage-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
}

/*--------------------------------------------------------------
# Description Section
--------------------------------------------------------------*/
.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 !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card-content-desc {
  font-size:1.2rem;
  line-height: 2rem;
  color: #5C5C5C;
}

#card-description-img-1 {
  background-image:  
    url('../img/products/products/description-img-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  color: white;
}

#card-description-img-2 {
  background-image:  
    url('../img/products/products/description-img-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  color: white;
}

#card-description-img-3 {
  background-image:  
    url('../img/products/products/description-img-3.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  color: white;
}

#card-description-img-4 {
  background-image:  
    url('../img/products/products/description-img-4.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 350px;
  color: white;
}

#card-description-img-5 {
  background-image:  
    url('../img/products/products/description-img-5.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  color: white;
}

#card-description-img-6 {
  background-image:  
    url('../img/products/products/description-img-6.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  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-1, #card-description-img-2, #card-description-img-3, 
  #card-description-img-4, #card-description-img-5, #card-description-img-6 {
    background-size: contain;
    height: 50vh;
    width: 80vw;
  }
}

@media (max-width: 767.98px) {  
  .description-item p {
    font-size:1.1rem;
  }

  .card-content-title {
    font-size:1.75rem;
    line-height: 2rem !important;
  }

  .card-content-desc {
    font-size:1.1rem;
    line-height: 1.5rem;
  }  

  #card-description-img-1, #card-description-img-2, #card-description-img-3, 
  #card-description-img-4, #card-description-img-5, #card-description-img-6 {
    height: 30vh;
  }

  .description .description-container {
    max-width: 600px;
    padding: 1rem 0;
  }

  .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 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: 180px;
  padding: 15px;
  border-radius: 18px;
  background-color: #E83C3C;
  border-color: #dc3545;
}

.contact a:hover {
  color: #fff;
  background-color: #C23636;
  border-color: #b02a37;
}
