/*--------------------------------------------------------------
# contactUs Section
--------------------------------------------------------------*/
.products {
  position: relative;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

#products {
  display: flex;
  align-items: center;
  background-image: url('../img/products/products-robotics/products-background-1.png'); 
  background-size: cover; 
  background-position: center; 
  height: 85vh;
}

#products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%; 
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(128, 128, 128, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none; 
  z-index: 2;
}

#rosiwit-logo {
  position: relative;
  transform: translate(-2vw, -27vh);
  background-image: url('../img/products/products-robotics/rosiwit.png'); 
  background-size: cover; 
  background-position: center; 
  width: 220px;
  height: 40px;
  z-index: 3;
}

.products .products-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 0.8;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 991.98px) {
  #rosiwit-logo {
  transform: translate(0vw, -16vh);
  }

  .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;
  }
}
/*--------------------------------------------------------------
# Robot Section
--------------------------------------------------------------*/
#detail-item-1 {
  background-image: url('../img/products/products-robotics/skywalker-gt.png'); 
}

#detail-item-2 {
  background-image: url('../img/products/products-robotics/titan-810.png'); 
}

#detail-item-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.85); /* lightgray with 85% opacity */
  z-index: 1;
}

#detail-item-2::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;  
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
  text-align: center;
}

.robot .detail-item-1 {
  display: flex;
  background-color: #FFFFFF;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  background-size: cover; 
  background-position: center; 
  height: 80vh;
}

.robot .detail-content {
  flex-grow: 1;
}

.robot .detail-content .white-border {
  border-bottom: solid 1px white;
}

.robot .detail-content h4 {
  font-size: 4vh;
}

.robot .detail-content p {
  font-size: 2.2vh;
}

.robot .detail-content a {
  font-weight: 500;
  font-size: 2.5vh;
  color: #284CFF; 
}

.robot .detail-content a:hover {
  color: #001ECC; 
  cursor: pointer;
}

.robot .detail-content .title-icon {
  display: inline-block; 
  width: 35px; 
  height: 35px; 
  background-size: contain; 
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .detail-title {
    font-size: 2.0rem;
    line-height: 1.2;
  }
  
  .robot .detail-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .robot .detail-content h4 {
    font-size: 1.2rem;
  }

  .robot .detail-content p {
    margin-bottom: 0.9rem;
    line-height: 1.3rem;
    font-size: 1rem;
    height: 35px;
  }
  
  .robot .detail-content a {
    font-size: 1rem;
  }

  .robot .detail-content .title-icon {
    width: 25px; 
    height: 25px; 
  }
  
  .robot .detail-item-1 {
    padding: 15px;
    height: 60vh;
  }
}

@media (max-width: 575.98px) {
  .detail-title {
    font-size: 1.6rem;
  }
  
  .robot .detail-item {
    flex-direction: column;
    text-align: center;
  }

  .robot .detail-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
}
/*--------------------------------------------------------------
# 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: 400;
  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
--------------------------------------------------------------*/
.specs h3, .specs h3 .section-title {
  color: #696969 !important;
}

.specs p {
  color: #696969;
  font-size: 24px;
  text-align: center;
}
#specs-item-1 {
  display: flex;
  align-items: center;
  background-image: url('../img/products/products-robotics/cleaning-robot-1.gif'); 
  background-size: contain; 
  background-position: center; 
  width: 864px;
  height: 486px;
}
#specs-item-2 {
  display: flex;
  align-items: center;
  background-image: url('../img/products/products-robotics/cleaning-robot-2.gif'); 
  background-size: contain; 
  background-position: center; 
  width: 864px;
  height: 486px;
}
#specs-item-3 {
  display: flex;
  align-items: center;
  background-image: url('../img/products/products-robotics/cleaning-robot-3.gif'); 
  background-size: contain; 
  background-position: center; 
  width: 864px;
  height: 486px;
}
#specs-item-4 {
  display: flex;
  align-items: center;
  background-image: url('../img/products/products-robotics/products-background-2.png'); 
  background-size: contain; 
  background-position: center; 
  width: 856px;
  height: 328px;
}
@media (max-width: 767.98px) {    
  #specs-item-1, #specs-item-2, #specs-item-3 {
    width: 432px;
    height: 243px;
  }
  #specs-item-4 {
    width: 428px;
    height: 164px;
  }
}
/*--------------------------------------------------------------
# Applications Section
--------------------------------------------------------------*/
.applications-slider .slick-slide {
  box-sizing: border-box;
  border: 2px solid #fff;  
  border-radius: 5px;       
  overflow: hidden; 
  margin: 0 10px;           
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.applications .applications-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.applications .applications-img img {
  min-width: 9vw !important;
  min-height: 22.5vh !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
  display: inline-block;
}

.applications .applications-img .text-applications {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1vw;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
}

@media (max-width: 850px) {  
  .applications-slider .slick-slide {
    margin: 0 2px;
  }
  .applications .applications-img img {
    min-width: 255px !important;
    min-height: 160px !important;
  }  
  .applications .applications-img .text-applications {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .applications .applications-img img {
    min-width: 300px !important;
    min-height: 170px !important;
  }  
}
/*--------------------------------------------------------------
# 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;
}


