html {
  scroll-behavior: smooth;
  
}
.background-slide{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-web{
  width: auto;
}
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mobile{
  display: none;
}
.desktop{
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
}
.banner-graphic-mobile{
  display: none;
}
.unik-support-element{
    position: absolute;
    transform: translate(112%, -100%);
    height: auto;
}
.banner-circle-graphic {
  position: absolute;
  left: 0%;
  /* top: -30%; */
  width: 100%;
  height: 1122px;
  z-index: 11;
  pointer-events: none;
}

.unik-partner{
  margin-top: -25%;
  padding-top: 80px;
}
.unik-why-choose{
  margin-top: 3%;
  height: 800px;
}
.circle-container{
  height: 1122px;
  margin-top: -10%;
  top: 220px;
}
.unik-support-section{
  padding: 176px 0 0 0;
}
.banner-img {
  position: relative;
  height: auto;
  z-index: 1;
  width: 100%;
}
.element{
  position: absolute;
  left: 0;
  width: 100%;
  
}
.banner-container {
  display: flex;
  margin: auto;
  max-width: 100%;
}

.banner-container .body-content {
  position: absolute;
  margin-top: -50%;
  z-index: 2;
  left: 20%;
  max-width: 35%;
  font-family: 'Avant Garde';
}

.banner-container .body-content .banner-title {
  font-size: 42px;
  color: rgba(255, 103, 64, 1);
  margin-bottom: 20px;
  font-weight: 600;
}

.banner-container .body-content .unik-logo {
  /* width: 200px; */
  height: 87px;
}

.banner-container .body-content .banner-subtitle {
  font-size: 30px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  font-weight: 400;
}

.banner-container .body-content .banner-desc {
  font-size: 1rem;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  line-height: 1.5;
}

.banner-container .body-content .banner-btn {
  display: inline-block;
  background: #FF6A2B;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.banner-container .body-content .banner-btn:hover,
.banner-container .body-content .banner-btn:focus {
  background: #ff8c4d;
  text-decoration: none;
}

.banner-container .body-content .banner-btn:active {
  background: #e14a00;
  text-decoration: none;
}

.banner-container .banner-graphics {
  position: absolute;
  margin-top: -50%;
  z-index: 2;
  left: 58%;
  /* transform: translate(-50%, -50%); */
}
.anima-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    animation: floatGlobePosition 16s ease-in-out infinite;
}
.anima-bg-moveup{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  /*background-size: cover;*/
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  animation: scrollUp 10s linear infinite;
  opacity: 0.5;
}
.anima-bg-moveupfast{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  animation: scrollUp 4s linear infinite;
}

.slider-container {
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform:  translateX(100%);
  filter: blur(4px);
  transition: all 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform:  translateX(0%);
  filter: blur(0);
  z-index: 2;
  pointer-events: auto;
}
.slide.enter-from-left {
  transform:  translateX(-100%);
  /* filter: blur(0);
  z-index: 2;
  pointer-events: auto;
  opacity: 1; */
}

.slide.enter-from-right {
  transform:  translateX(100%);
  /* filter: blur(0);
  z-index: 2;
  pointer-events: auto;
  opacity: 1; */
}
/* .slide.exit {
  opacity: 0;
  transform: scale(0.95) translateX(-50%);
  filter: blur(3px);
  z-index: 1;
} */
.slide.exit-left {
  opacity: 0;
  transform:  translateX(-50%);
  filter: blur(3px);
  z-index: 1;
}

.slide.exit-right {
  opacity: 0;
  transform:  translateX(50%);
  filter: blur(3px);
  z-index: 1;
}
.slider-controls {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none; /* để không chắn nội dung */
}

.slider-controls button {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  pointer-events: auto; /* khôi phục pointer cho nút */
  cursor: pointer;
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.slider-controls svg {
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.slider-controls button:hover svg {
  stroke: #FF6A2B; /* Hoặc màu khác nếu bạn thích */
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes floatGlobePosition {
  0% {
    background-position-y: 0%;
  }
  50% {
    background-position-y: -20%;
  }
  100% {
    background-position-y: 0%;
  }
}

.img-globe {
  position: absolute;
  left: 77%;
  top: 31%;
  transform: translate(-50%, -50%);
  animation: floatGlobe 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatGlobe {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.banner-container .banner-graphics .img-saly{
  position: absolute;
  left: 16%;
  top: 50%;
  animation: floatGlobe 5s ease-in-out infinite;
  /*animation: rocketLoop 8s ease-in-out infinite;*/
  will-change: transform, opacity;
}

@keyframes rocketLoop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  65% {
    transform: translateY(-200px);
    opacity: 1;
  }
  70% {
    transform: translateY(-250px);
    opacity: 0;
  }
  100% {
    transform: translateY(-250px);
    opacity: 0;
  }
}

.element-growArrow{
  position: absolute;
  left: 10%;
  top: 30%;
}
.element-growArrow1{
  position: absolute;
  left: 75%;
  top: 60%;
}
.element-growArrow2{
  position: absolute;
  left: 40%;
  top: 45%;
}

.element-master-anima{
  transform: translate(0%, 0%);
  animation: masterAnima 50s ease-in-out infinite;
  will-change: transform;
}

.anime-grow{
  transform: translate(-50%, -50%);
  animation: growArrow 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes growArrow {
  0% {
    transform: translate(-50%, -50%) ;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -200%) ;
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -240%);
    opacity: 0;
  }
}

@keyframes masterAnima {
  0% {
    opacity: 1;
    transform: translate(0%, 0%) translateY(0) translateX(0) scale(1);
  }

  29% {
    opacity: 1;
  } 

  30% {
    transform: translate(0%, -20%) translateY(45px) translateX(15px);
    opacity: 0;
  }

  32% {
    transform: translate(0%, 0%) translateY(0) translateX(0) scale(1);
    opacity: 0;
  }  

  34% {
    opacity: 1;
    transform: translate(0%, 0%) translateY(0) translateX(0) scale(1);
  }   

  94% {
    opacity: 1;
  }   
  96% {
    opacity: 0;
    transform: translate(0%, -25%) translateY(45px) translateX(15px);    
  }

  98% { 
    transform: translate(0%, 0%) translateY(0) translateX(0) scale(1);
  }

  100% {
    opacity: 1;  
  }
}

.unik-partner-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.unik-partner-row {
  display: flex;
  position: relative;
  left: 18%;
  align-items: center;
  gap: 12px;
  margin-top: 100px;
}

.unik-partner-top-title {
  position: relative;
  text-align: center;
  font-size: 38px;
  color: #ffffff;
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 18px;
  margin-top: -80px;
}

.unik-partner-left {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-size: 50px;
  color: #4210B1;
  font-weight: 600;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 2px;
}

.unik-partner-right {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-size: 100px;
  color: #4210B1;
  font-weight: 700;
  /* letter-spacing: 4px; */
}

.unik-partner-sub {
  color: #FF6A2B;
  font-size: 25px;
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-left: 0;
  text-align: left;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0 120px;
}

.unik-partner-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;

}

.unik-partner-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(66, 16, 177, 0.08);
  padding: 40px 36px 36px 36px;
  max-width: 60%;
  min-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.unik-partner-icon {
  width: 75px;
  margin-bottom: 18px;
}

.unik-partner-name {
  font-size: 2rem;
  color: #27076C;
  font-family: 'SVN-Aguda', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: bold;
}

.unik-partner-desc {
  font-family: 'Avant Garde', Arial, sans-serif;
  color: #4210B1;
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.unik-partner-btn {
  font-family: 'Avant Garde', Arial, sans-serif;
  display: inline-block;
  background: #FF6A2B;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.unik-partner-btn:hover {
  background: #ff8c4d;
}

.unik-partner-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unik-partner-human {
  min-width: 90%;
  border-radius: 18px;
}

.banner-circle-bg {
  position: absolute;
  left: 20%;
  top: -32%;
  width: 56%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
}

.unik-platform-title-custom {
  padding-top: 5%;
  padding-left: 25%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: 'SVN-Aguda', Arial, sans-serif;
  margin-bottom: 60px;
  flex-wrap: wrap;
  text-align: center;
  flex-direction: column;
  line-height: 0.5;
  position: relative;
  z-index: 12;
}

.unik-title-left {
  font-size: 90px;
  font-weight: bold;
  color: #4A0FC5;
}

.unik-title-right {
  font-size: 78px;
  font-weight: bold;
  color: #4A0FC5;
}

.unik-title-center {
  padding-left: 200px;
  font-size: 28px;
  font-weight: bold;
  color: #FF5C39;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: end;
  line-height: 1.2;
  margin-top: 12px;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo img {
  width: 350px;
  height: 350px;
}

.tech-item {
  position: absolute;
  width: 225px;
  z-index: 3;
  text-align: center;
  color: rgba(20, 23, 120, 1);
  transition: all 0.5s linear, opacity 0.2s linear;
  opacity: 1;  
}

.tech-item img {
  width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: rgba(20, 23, 120, 1);
  background: radial-gradient(circle at center, #ffffff 30%, #e6f0ff);
}

.tech-item h4 {
  font-weight: 600;
  font-family: 'Avant Garde', Arial, sans-serif;
  margin: 0;
  margin-top: 10px;
  font-size: 20px;
}

.tech-item p {
  font-size: 14px;
  font-family: 'Avant Garde', Arial, sans-serif;
  margin: 4px 0 0;
  line-height: 1.5;
}

 .item1 {
  top: 60%;
  left: 0;
  transform: translate(0, -50%);  

}

.item2 {
  top: 25%;
  left: 20%;
  transform: translate(-50%, -50%);  

}

.item3 {
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);  

}

.item4 {
  top: 25%;
  left: 80%;
  transform: translate(-50%, -50%);  

}

.item5 {
  top: 60%;
  right: 0;
  transform: translate(0, -50%);
}

.item6 {
  /*transition: all 0.25s ease, opacity 0.25s ease;*/
  top: 80%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: -99999;
  opacity: 0;
  pointer-events: none;
}

.item7 {
  /*transition: all 0.25s ease, opacity 0.25s ease;*/
  top: 80%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: -99999;
  opacity: 0;
  pointer-events: none;
}

.unik-arrow {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 40px;
  color: #3b0ca6;
  cursor: pointer;
  transition: transform 0.2s;
}

.unik-arrow.left {
  left: 8%;
}

.unik-arrow.right {
  right: 8%;
}

.unik-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.unik-why-title {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-size: 57px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  text-align: left;
  text-transform: uppercase;
  justify-content: center;
  line-height: 1;
}

.unik-why-title .highlight {
  color: #ff682a;
  margin: 0 5px;
  font-size: 92px;
  font-weight: 400;
}

.none-highlight {
  color: white;
  font-size: 77px;
  font-weight: 500;
}

/* .unik-why-features {
  background: transparent;
  padding: 40px 0 80px 0;
}

.unik-why-features-container {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-family: 'Avant Garde', Arial, sans-serif;
  margin: 0 auto;
  flex-wrap: nowrap;
  position: relative;
}

.unik-feature-box1 {
  width: 300px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 24px 18px;
}

.unik-feature-box1 .unik-feature-img img {
  max-width: 300px;
  border: 5px solid #4a0fc5;
  border-radius: 32px;
}

.unik-feature-box1 .unik-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  text-align: center;
}

.unik-feature-box1 .unik-feature-link {
  color: #fff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.unik-feature-box2 {
  width: 220px;
  position: relative;
  min-height: 340px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 24px 18px;
  top: 120px;
}

.unik-feature-box2 .unik-feature-img img {
  max-width: 180px;
  border: 5px solid #4a0fc5;
  border-radius: 32px;
}

.unik-feature-box2 .unik-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  text-align: center;
}

.unik-feature-box2 .unik-feature-link {
  color: #fff;
  font-size: 14px;
 
  text-align: center;
  cursor: pointer;
}

.unik-feature-box3 {
  width: 300px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 28px 30px 28px;
  z-index: 2;
  position: relative;
}

.unik-feature-box3 .unik-feature-img img {
  max-width: 300px;
  border-radius: 36px;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.18), 0 4px 24px 0 rgba(0, 0, 0, 0.10);
  border: 5px solid #fff;
}

.unik-feature-box3 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b2c;
  margin-bottom: 18px;
  margin-top: 18px;
  text-align: center;
}

.unik-feature-box3 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
  text-align: center;
  min-height: 60px;
  line-height: 18px;
}

.unik-feature-box4 {
  width: 220px;
  min-height: 340px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 24px 18px;
  position: relative;
  top: 80px;
}

.unik-feature-box4 .unik-feature-img img {
  max-width: 180px;
  border: 5px solid #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.unik-feature-box4 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b2c;
  margin-bottom: 18px;
  margin-top: 18px;
  text-align: center;
}

.unik-feature-box4 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
 line-height: 18px;
  text-align: center;
  min-height: 60px;
}

.unik-feature-box5 {
  width: 220px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 24px 18px;
}

.unik-feature-box5 .unik-feature-img img {
  max-width: 180px;
  border: 5px solid #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.unik-feature-box5 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b2c;
  margin-bottom: 18px;
  margin-top: 18px;
  text-align: center;
}

.unik-feature-box5 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
 line-height: 18px;
  text-align: center;
  min-height: 60px;
} */

.unik-why-features {
  background: transparent;
  padding: 120px 0 80px 0;
  max-width: 1200px;
  margin: auto;
}

.unik-why-features-container {
  display: flex;
  justify-content: center;
  /* gap: 36px; */
  font-family: 'Avant Garde', Arial, sans-serif;
  margin: 0 auto;
  flex-wrap: nowrap;
  position: relative;
  z-index: 10;
}
.hidden-content {
    display: none !important;
}

#features-wrapper{
  width: 100%;
}
#features-wrapper .state-anima{
  opacity: 1;
  transition: all 0.6s allow-discrete;
}
#features-wrapper .opacity-hidden-content {
    /*opacity: 0;*/
    /*pointer-events: none;*/
}
 .unik-feature-box1 .unik-feature-img {
    height: 290px;
    width: 100%;
    position: relative;
    border: 5px solid #ffffff;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 18px;
  } 

  .unik-feature-box2 .unik-feature-img {
    height: 230px;
    width: 100%;
    position: relative;
    border: 4px solid #ffffff;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 18px;
  } 
  .unik-feature-box3 .unik-feature-img {
    height: 405px;
    width: 100%;
    position: relative;
    
    border: 4px solid transparent;
    border-radius: 32px;
    background: linear-gradient(white, white) padding-box, linear-gradient(180deg, rgba(99, 0, 220, 1) 0%, rgba(24, 64, 226, 0.96) 100%) border-box;
    overflow: hidden;
    margin-bottom: 18px;
  }  
  .unik-feature-box4 .unik-feature-img {
    height: 225px;
    width: 100%;
    position: relative;
    border: 4px solid transparent;
    border-radius: 32px;
    background: linear-gradient(white, white) padding-box, linear-gradient(180deg, rgba(99, 0, 220, 1) 0%, rgba(24, 64, 226, 0.96) 100%) border-box;
    overflow: hidden;
    margin-bottom: 18px;
  }
  .unik-feature-box5 .unik-feature-img {
    height: 225px;
    width: 100%;
    position: relative;
    border: 4px solid transparent;
    border-radius: 32px;
    background: linear-gradient(white, white) padding-box, linear-gradient(180deg, rgba(99, 0, 220, 1) 0%, rgba(24, 64, 226, 0.96) 100%) border-box;
    overflow: hidden;
    margin-bottom: 18px;
  }   
.unik-feature-box1 {
  width: 253px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
 
}

.unik-feature-box1 .unik-feature-img img {
  width: 253px;
  border: 5px solid #ffffff;
  border-radius: 32px;
}

.unik-feature-box1 .unik-feature-desc{
  width: 240px;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}
.unik-feature-box1 .unik-feature-title {
  font-size: 16px;
  font-weight: 600;
  width: 250px;
  /* margin-bottom: 12px;*/
  margin-top: -18px; 
  text-align: center;
}

.unik-feature-box1 .unik-feature-link {
  color: #fff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.unik-feature-box2 {
  width: 195px;
  position: relative;
  min-height: 340px;
  /*margin-top: -4%;*/
  display: flex;
  flex-direction: column;
  align-items: center;
}
.unik-feature-box2 .unik-feature-desc{
  width: 160px;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}
.unik-feature-box2 .unik-feature-img img {
  width: 195px;
  border: 5px solid #ffffff;
  border-radius: 32px;
}

.unik-feature-box2 .unik-feature-title {
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  /* margin-bottom: 12px;
  margin-top: 18px; */
  margin-top: -18px;
  text-align: center;
}

.unik-feature-box2 .unik-feature-link {
  color: #fff;
  font-size: 14px;
 
  text-align: center;
  cursor: pointer;
}

.unik-feature-box3 {
  width: 253px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;

  /*z-index: 2;*/
  position: relative;
  /*top: 50px;*/
}

.unik-feature-box3 .unik-feature-img img {
  width: 253px;
  /*height: 100%;*/
  border-radius: 36px;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.18), 0 4px 24px 0 rgba(0, 0, 0, 0.10);
   border: 5px solid #4a0fc5;
}

.unik-feature-box3 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  
  /* margin-bottom: 12px;
  margin-top: 18px; */
  margin-top: -18px;
  text-align: center;
}

.unik-feature-box3 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
  text-align: center;
  min-height: 60px;
  line-height: 18px;
  width: 200px;
}

.unik-feature-box4 {
  width: 195px;
  min-height: 340px;
  /*margin-top: -6%;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.unik-feature-box4 .unik-feature-img img {
  width: 195px;
   border: 5px solid #4a0fc5;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.unik-feature-box4 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  
  /* margin-bottom: 12px;
  margin-top: 18px; */
  margin-top: -18px;
  text-align: center;
}

.unik-feature-box4 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  min-height: 60px;
  width: 160px;
}

.unik-feature-box5 {
  width: 195px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /*top: 230px;*/
}

.unik-feature-box5 .unik-feature-img img {
  width: 195px;
   border: 5px solid #4a0fc5;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.unik-feature-box5 .unik-feature-title {
  font-size: 16px;
  font-weight: 700;
  
  /* margin-bottom: 12px;
  margin-top: 18px; */
  margin-top: -18px;
  text-align: center;
}

.unik-feature-box5 .unik-feature-desc {
  color: #fff;
  font-size: 14px;
 line-height: 18px;
  text-align: center;
  min-height: 60px;
  width: 160px;
}
.img-f{
    position: absolute;
    left: 0;
    top: 0;   
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;    
}

@media (min-width: 767px) {
  
    
}
.unik-feature-link{
  font-size:13px;
}
.orange{
  color: #ff682a;
}



.state-top-active .unik-feature-box2{
  margin-top: -100px;
}
.state-top-active .unik-feature-box3{
  margin-top: 50px;
}
.state-top-active .unik-feature-box4{
  margin-top: -120px;
}
.state-top-active .unik-feature-box5{
  margin-top: 230px;
}
.feature-box-animate{
    transform-origin: 0% 0%;
    transition: all 0.7s;
/*    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.7s cubic-bezier(0.33, 1, 0.68, 1.5);*/

}
.state-top-active .feature-box-animate .state-top{
  transition: all 0.4s;
  /*transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1.5);*/
  margin-top: 0%;
  transform: scaleY(1);
}

.state-top-active .feature-box-animate .state-bottom{
  transition: all 0.4s;
  /*transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1.5);*/
  opacity: 0;
}
.unik-feature-box3 .unik-feature-img{
  transition: all 0.4s;
  /*transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1.5);*/
}
.state-bottom-active .unik-feature-box1 .unik-feature-img{
  border: 4px solid transparent;
  border-radius: 32px;
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, rgba(99, 0, 220, 1) 0%, rgba(24, 64, 226, 0.96) 100%) border-box;
} 
.state-bottom-active .unik-feature-box2 .unik-feature-img{
  border: 4px solid transparent;
  border-radius: 32px;
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, rgba(99, 0, 220, 1) 0%, rgba(24, 64, 226, 0.96) 100%) border-box;
}
.state-bottom-active .unik-feature-box3 .unik-feature-img{
  height: 225px;  
  border: 4px solid #ffffff;
} 
.state-bottom-active .unik-feature-box4 .unik-feature-img{
  
  border: 4px solid #ffffff;
} 
.state-bottom-active .unik-feature-box5 .unik-feature-img{
  
  border: 4px solid #ffffff;
} 
.state-bottom-active .feature-box-animate .state-bottom{
  transition: all 0.4s;
  /* transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1.5); */
  /* margin-top: 0%; */
  opacity: 1;
  transform: scaleY(1);

}

.state-bottom-active .feature-box-animate .state-top{
  transition: all 0.4s;
  /*transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1.5);*/
  opacity: 0;
  /*transform: scaleY(1.3);*/
}

.state-top-active .feature-box-animate.anima-group{
  
  animation: bounce-move-down 1.6s ease forwards;

}

.state-top-active .feature-box-animate.anima-group1{
  /*animation: animationstateTopActive 1.0s ease-in-out;*/
  animation: bounce-move 1.6s ease forwards;
}


.state-bottom-active .feature-box-animate.anima-group{
  animation: bounce-move 1.6s ease forwards;


}

.state-bottom-active .feature-box-animate.anima-group1{
  animation: bounce-move-down 1.6s ease forwards;
}

@keyframes bounce-move {
  0%   { top: 0px; transform: scaleY(1);}
  40%  { top: 0px; transform: scaleY(1);}
  /*50%  { top: 0px; }*/
  60%  { top: 0px; transform: scaleY(1);}
  80%  { top: 0px; }
  100% { top: 0px; transform: scaleY(1);}
}

@keyframes bounce-move-down {
  0%   { bottom: 0px; transform: scaleY(1);}
  40%  { bottom: 0px; transform: scaleY(1);}
  /*50%  { top: 0px; }*/
  60%  { bottom: 0px; transform: scaleY(1);}
  80%  { bottom: 0px; }
  100% { bottom: 0px; transform: scaleY(1);}
}


.state-bottom-active .unik-feature-box1{
  margin-top: -100px;
}

.state-bottom-active .unik-feature-box2{
  margin-top: 100px;
}
.state-bottom-active .unik-feature-box3{
  margin-top: -100px;
}
.state-bottom-active .unik-feature-box4{
  margin-top: 150px;
}
.state-bottom-active .unik-feature-box5{
  margin-top: -100px;
}


@keyframes animationscalce {
  0%   { transform: scaleY(1);}
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}

@keyframes animationscalceActive {
  0%   { transform: scaleY(1);}
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}


/* Ensure elements are initially hidden for GSAP to animate them in */
.desktop .unik-feature-box1,
.desktop .unik-feature-box2,
.desktop .unik-feature-box3,
.desktop .unik-feature-box4,
.desktop .unik-feature-box5 {
    /*opacity: 0;*/
    /*transform: translateY(0) scaleY(1);*/
}

/* New styles from user */
#state-bottom-active {
    position: absolute;
    top: 0;

}

/* Specific positioning for items in the bottom active state */
#state-bottom-active .unik-feature-box1 {
    /*top: -100px;*/
}
#state-bottom-active .unik-feature-box2 {
    /*top: 100px;*/
}
#state-bottom-active .unik-feature-box3 {
    /*top: -100px; */
}
#state-bottom-active .unik-feature-box3 .unik-feature-img img{
    height: auto; 
    transition: height 0.3s ease; 
}
#state-bottom-active .unik-feature-box4 {
    /*top: 150px;*/
}
#state-bottom-active .unik-feature-box5 {
    /*top: -80px; */
}

#state-bottom-active .unik-feature-box3 .unik-feature-desc,

#state-bottom-active .unik-feature-box3 .unik-feature-title
{
  text-align: left;
  width: 250px;
}
#state-bottom-active .unik-feature-box4 .unik-feature-desc,
#state-bottom-active .unik-feature-box5 .unik-feature-desc,
#state-bottom-active .unik-feature-box4 .unik-feature-title,
#state-bottom-active .unik-feature-box5 .unik-feature-title {
  text-align: left;
  width: 200px;
}
#state-bottom-active .unik-feature-box1 .unik-feature-desc,
#state-bottom-active .unik-feature-box2 .unik-feature-desc,
#state-bottom-active .unik-feature-box1 .unik-feature-title,
#state-bottom-active .unik-feature-box2 .unik-feature-title{
  text-align: center;
}
#state-bottom-active .unik-feature-box3 .unik-feature-img img,
#state-bottom-active .unik-feature-box4 .unik-feature-img img,
#state-bottom-active .unik-feature-box5 .unik-feature-img img{
  border: 5px solid #ffffff;
}
#state-bottom-active .unik-feature-box1 .unik-feature-img img,
#state-bottom-active .unik-feature-box2 .unik-feature-img img{
  border: 5px solid #4a0fc5;
}
.feature-box-animate{
  will-change: transform, opacity,margin-top;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /*transition: all 0.2s ease-in-out;*/
}

.line-17{
  position: relative;
  left: 50%;
}
.line-18{
  position: relative;
  height: 100px;
  right: 50%;
}
.state-top-active svg.line-17 {
    opacity: 1;
    transform: translateY(-50%);
}
.state-bottom-active svg.line-17  {
    height: 50px;
    opacity: 1;
    transform: translateY(-160%);
}
.state-top-active svg.line-18 {
    opacity: 1;
    transform: translateY(-150%);
}
.state-bottom-active svg.line-18 {
    height: 35%;
    opacity: 1;
    transform: translateY(-70%);
}

svg.line-17,
svg.line-18 {
  
  will-change: height, transform, opacity;
  transition: all 0.4s ease-in-out, transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
svg.line-17 path,
svg.line-18 path {
  stroke-dasharray: 220; /* tổng chiều dài path */
  stroke-dashoffset: 220;
  animation: drawLine 1.5s ease forwards;
}


svg.line-17 circle,
svg.line-18 circle {
  opacity: 0;
  animation: fadeInDot 0.3s ease forwards;
  animation-delay: 1.5s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInDot {
  to {
    opacity: 1;
  }
}


.unik-client-section {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.unik-client-title {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.unik-client-subtitle {
  font-family: 'Avant Garde', Arial, sans-serif;
  color: #bbb;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 0px;
}

.unik-client-button {
  background-color: #ff682a;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 40px;
  transition: background 0.3s;
}

.unik-client-button:hover {
  background-color: #e55b1f;
}

.unik-client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin: 48px auto 0 auto;
  max-width: 1100px;
  border-radius: 32px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);
  box-shadow: 0px -2px 10px 0px rgba(154, 156, 255, 0.57), 0px -2px 40px 0px rgba(155, 168, 255, 0.15);
  padding: 40px 32px 32px 32px;
}

.client-logo {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(44,0,120,0.85) 60%, rgba(255,108,180,0.18) 100%);
  border-radius: 32px;
  box-shadow: 0 0 32px 8px rgba(120,60,255,0.25), 0 4px 24px 0 rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.client-logo img {
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(255,255,255,0.25));
  transition: transform 0.2s;
  background: transparent;
  border-radius: 16px;
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 0 48px 16px rgba(120,60,255,0.35), 0 8px 32px 0 rgba(0,0,0,0.22);
}

.unik-news-section {
  
  padding: 50px 0 0 0;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;

}
.banner-circle-content{
  position: relative;
  height: 1122px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.unik-news-header {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0;
  flex-direction: column;
}

.unik-news-title {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-size: 48px;
  color: #18006a;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1;
  margin-top:25px;
}

.unik-news-subtitle {
  font-family: 'Avant Garde', Arial, sans-serif;
  color: #3c2e7c;
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 0;
}

.unik-news-btn {
  font-family: 'Avant Garde', Arial, sans-serif;
  background: #ff682a;
  color: #fff;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 8px;
  margin-top: 8px;
  display: inline-block;
}

.unik-news-btn:hover {
  background: #ff8c4a;
}

.unik-news-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.unik-news-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  margin: 0 auto 0 auto;
  max-width: 1400px;
}

.unik-news-card img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.unik-news-list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 24px 0;
}

.unik-news-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(44,0,120,0.08);
  overflow: hidden;
  width: 275px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  text-decoration: none;
}

.news-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px rgba(44,0,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.news-arrow.left {
  margin-right: 16px;
}

.news-arrow.right {
  margin-left: 16px;
}

.news-arrow:hover {
  background: #f5f5f5;
  color: #ff682a;
}

.unik-news-list::-webkit-scrollbar {
  display: none;
}

.unik-news-badges {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
}

.unik-news-badge {
  background: #fff;
  color: #18006a;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  padding: 2px 10px;
  box-shadow: 0 2px 8px 0 rgba(44,0,120,0.08);
  display: flex;
  align-items: center;
}

.unik-news-badge.dark {
  background: #222;
  color: #fff;
}

.unik-news-badge i {
  margin-left: 4px;
  color: #ff682a;
  font-size: 12px;
}

.unik-news-meta {
  font-size: 13px;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 18px 0 0 18px;
  font-family: 'Avant Garde', Arial, sans-serif;
}

.unik-news-headline {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 8px 0 0 18px;
  font-family: 'Avant Garde', Arial, sans-serif;
  line-height: 24px;
}

.unik-news-desc {
  padding: 18px 18px 24px 18px;
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: 'Avant Garde', Arial, sans-serif; 
}

.unik-support-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.unik-support-left {
  color: #fff;
  padding-right: 32px;
  min-width: 320px;
}

.unik-support-title {
  font-family: 'SVN-Aguda', Arial, sans-serif;
  font-weight: bold;
  line-height: 0.85;
  margin-bottom: 18px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  position: relative;
  bottom: 80px;
  /* left: 10%; */
  
}

.unik-support-title .orange {
  color: #ff682a;
  font-size: 3rem;
  font-weight: bold;
}

.unik-support-title .white {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

.unik-support-title .small {
  font-size: 1.5rem;
  text-align: end;
  font-weight: 600;
}

.unik-contact-frame-section {
  background: transparent;
  padding: 48px 0 64px 0;
  display: flex;
  justify-content: center;
}

.unik-contact-frame {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);
  box-shadow: 0px -2px 10px 0px rgba(154, 156, 255, 0.57), 0px -2px 40px 0px rgba(155, 168, 255, 0.15);
  padding: 40px 32px 32px 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  backdrop-filter: blur(3px);
}

.unik-contact-frame-text {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Avant Garde', Arial, sans-serif;
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.unik-contact-frame-btn {
  font-family: 'Avant Garde', Arial, sans-serif;
  display: inline-block;
  background: #ff682a;
  color: #fff;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 16px 0 rgba(255,104,42,0.18);
  border: none;
  cursor: pointer;
}

.unik-contact-frame-btn:hover {
  background: #ff8c4a;
}

.unik-support-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 260px;
}

.unik-support-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  margin-bottom: -30px;
  filter: drop-shadow(0 8px 32px rgba(44,0,120,0.18));
}
.title-mobile {
  display: none;
}
/* Media Queries Responsive */
@media (min-width: 2560px) {
  .banner-img{
    height: 100vh;
  }
.unik-support-element{
  transform: translate(176%, -100%);
}
  .banner-circle-bg{
    height: 120%;
    left: 23%;
    top: -26%;
  }
  .unik-partner{
    margin-top: -30% ;
    
  }
  .unik-partner-top-title{
    font-size: 52px;
    margin-top: -60px;
  }
  .banner-graphics {
    transform: translate(-20%, 20%);

  }
  .unik-why-features{
    padding: 180px 0 80px 0;
  }
  .slider-controls {
    top: 20%;
  }
  .unik-support-img{
    max-width: none;
  }
  .banner-container .body-content {
    max-width: 35%;
    margin-top: -47%;
  }
  .unik-support-content{
    max-width: 2560px;
  }
  .banner-container .body-content .banner-title{
    font-size: 32px;
  }
  .banner-container .body-content .banner-subtitle{
    font-size: 22px;
  }
  .banner-container .body-content .banner-desc {  
    font-size: 15px;
    width: 60%;
  }
  
  .unik-partner-left {
    font-size: 50px;
  }
  
  .unik-partner-right {
    font-size: 90px;
  }
  
  .unik-partner-sub {
    font-size: 25px;
  }
  .unik-partner-row{
    left: 30%;
  }

  .circle-container{
    margin-top: -8%;
  }
  /* .unik-support-title .white {
    font-size: 6rem;
  }
   */
  /* .unik-support-title .orange {
    font-size: 4rem;
  } */
  .unik-title-left{
    font-size: 70px;
  }
  .unik-title-center{
    padding-left: 100px;
  }
  .unik-platform-title-custom{
    padding-left: 30%;
    padding-top: 3%; 
  }
  .unik-why-choose{
    margin-top: 3%;
    height: 900px;
  }
}
@media screen and (min-width: 1440px) {
  .banner-container .body-content .banner-title{
    font-size: 32px;
  }
  .banner-container .body-content .banner-subtitle{
    font-size: 22px;
  }
  .banner-container .body-content .banner-desc{
    font-size: 13px;
  }
  .banner-container .body-content .banner-btn{
    font-size: 13px;
  }
}

@media screen and (max-width: 1440px) {
  .banner{
    height: 600px;
  }
  .banner-container .banner-graphics .img-globe{
    width: 20%;
    top: 30%;
    left: 60%;
  }
  .banner-container .banner-graphics .img-saly{
    width: 20%;
    top: 65%;
    left: 20%;
  }
  .circle-container {
    margin-top: -20%;
    top: 370px;
  }
  .unik-partner-row{
    left:15%;
  }
  .unik-support-element{
    transform: translate(80%, -77%);
  }
  .unik-title-left{
    font-size: 70px;
  }
  .unik-title-right{
    font-size: 64px;
  }
  .unik-title-center{
    padding-left: 146px;
    font-size: 22px;
  }
  .unik-support-section{
    padding: 10px 0 0 0;
  }
  .unik-partner{
    margin-top: -7% ;
    height: 685px;
  }
  .unik-partner-header{
    transform: translate(-60px, -65%);
  }
  .unik-partner-content{
    position: relative;
    top:-90px
  }
  .unik-platform-title-custom {
    padding-top: 65px;
    padding-left: 19%;
    margin-bottom: 20px;
  }
  /* .item1{left: 28%;}
  .item3{left: 72%;}
  .item4{left: 84%;}
  .item5{left: 16%;}
  .unik-arrow.left {
    left: 14%;
  }
  .unik-arrow.right {
    right: 14%;
  } */
  .banner-circle-bg{
    width: 80%;

    left: 9%;
    top: -40%;
    
  }
  .unik-why-choose {
    margin-top: 10%;
  }
  .unik-why-title {
  font-size: 47px;
}

.unik-why-title .highlight {
  font-size: 82px;
}

.none-highlight {
  font-size: 67px;
}
  .banner-container .body-content {
    /* transform: translate(0, -65%); */
    max-width: 45%;
    left: 10%;
  }
  
  .banner-container .banner-graphics {
    left: 55%;
    /* margin-top: -37%;
    transform: translate(0px, -100%); */
    width: 45%;
  }
  .banner-container .banner-graphics img{
    width: 80%;
  }
  .unik-partner-top-title{
    font-size: 52px;
    bottom: 35px;
  }
  .banner-container .body-content .banner-title{
    font-size: 32px;
  }
  .banner-container .body-content .banner-subtitle{
    font-size: 22px;
  }
  .banner-container .body-content .banner-desc {
    font-size: 15px;
  }
  .unik-partner-left {
    font-size: 50px;
  }
  
  .unik-partner-right {
    font-size: 90px;
  }
  
  .unik-partner-sub {
    font-size: 25px;
  }
  .unik-partner-name{
    font-size: 48px;
    margin-top: 0;
  }
  .unik-support-title{
    left: 0;
    bottom: 0;
    width: 96%;
  }
  .unik-support-title .white {
    font-size: 58px;
  }
  .unik-contact-frame-section{
    padding: 0;
    transform: translate(-5%, 50%);
  }
  .unik-support-left{
   padding: 0;
  }
  .unik-support-right {
    padding-right: 0;
    transform: translate(0px, 38%);
  }
  .unik-support-img{
    max-width: 455px;
    height: 596px;
  }
  .unik-support-title .orange {
    font-size: 48px;
  }
  .unik-support-title .small{
    font-size: 30px;
  }
  .unik-why-features-container{
    gap: 0;
  }
  .unik-support-section{
    height: 770px;
  }
}
/* ==================== */
/* MEDIA QUERIES MOBILE */
/* ==================== */
@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }
  .banner-container .banner-graphics .img-globe{
    width: 25%;
    top: 15%;
  }
  .banner-container .banner-graphics .img-saly{
    width: 30%;
    top: 30%;
    left: 25%;
  }
  .carousel-wrapper {
    display: flex;
    gap: 20px;
  }
  .banner-container .banner-graphics img {
    width: 100%;
    height: auto;
  }
  .banner {
    height: 100vh;
    padding-bottom: 60px;
  }
  .banner-img{
    position: absolute;
    height: 100vh;
  }
  .banner-container {
    flex-direction: column-reverse;
    padding: 20px;
  }
  
  .banner-container .body-content {
    position: static;
    max-width: 100%;
    margin-top: -5px;
    left: 0;
    text-align: center;
    
  }
  .banner-container .body-content .unik-logo{
    display: none;
  }
  .banner-container .banner-graphics {
    position: static;
    margin-top: 0;
    left: 0;
    width: 100%;
  }

  .banner-circle-graphic,
  .banner-circle-bg {
    display: none;
  }
  .banner-circle-content{
    overflow-x: auto;
    height: auto;
  }
  .banner-title {
    font-size: 28px !important;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  .banner-subtitle {
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  .unik-partner {
    margin-top: -27%;
    z-index: 1 !important;
    height: auto;
   
  }

  .unik-partner-top-title {
    display: none;
  }
  .unik-partner-icon {
    display: none;
  }

  .circle-container{
    height: auto !important;
  }
  .unik-partner-left{
    font-size: 40px;
    text-align: center;
  }
  .unik-partner-right {
    font-size: 40px;
    text-align: center;
  }

  .unik-partner-sub {
    font-size: 18px;
    margin: 10px auto;
    text-align: center;
    max-width: 90%;
  }

  .unik-partner-content {
    flex-direction: column-reverse;
    gap: 0;
    margin: 0 16px 0 16px;
    /* padding: 0 16px 0 16px; */
    border-radius: 24px;
    box-shadow: 8px 0 8px 10px rgb(135 133 138 / 8%);
  }

  .unik-partner-card {
    max-width: 100%;
    box-shadow: none;
    
    padding: 0 16px 16px 16px;
  }

  .unik-platform-title-custom {
    padding: 0 55px 0 55px;
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
    margin-top: -16%;
  }

  .unik-title-left{
    font-size: 32px !important;
  }
  .unik-title-right {
    font-size: 16px !important;
  }

  .unik-title-center {
    padding-left: 0;
    margin-top: 20px;
    justify-content: center;
  }

  .center-logo {
    display: none;
  }

  .center-logo img {
    width: 140px;
    height: auto;
  }

  .tech-item {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 30px;
    all: unset;
  }

  .item1, .item2, .item3, .item4, .item5 {
    position: static;
    transform: none;
    margin-right: 30px;
  }


  .unik-arrow {
    display: none;
  }

  .unik-why-title {
    font-size: 36px;
    margin: 30px 0;
    text-align: center;
    flex-direction: column;
    line-height: 1.2;
  }
  .unik-why-title .orange{
    color: #fff;
  }
  .unik-why-title .highlight {
    font-size: 16px;
    font-weight: 600;
  }

  .none-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #ff682a;
  }

  .unik-why-features-container {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .unik-feature-box1,
  .unik-feature-box2,
  .unik-feature-box3,
  .unik-feature-box4,
  .unik-feature-box5 {
    width: 100%;
    margin-top: 0 !important;
    top: 0 !important;
    margin-bottom: 40px;
    align-items: center;
  }

  .unik-feature-box1 .unik-feature-desc,
  .unik-feature-box2 .unik-feature-desc,
  .unik-feature-box3 .unik-feature-desc,
  .unik-feature-box4 .unik-feature-desc,
  .unik-feature-box5 .unik-feature-desc {
    text-align: left;
    width: 325px;
    font-size: 14px;
  }

  .unik-feature-box3 {
    top: 0;
  }

  .unik-client-section {
    padding: 40px 20px;
  }

  .unik-client-title {
    font-size: 36px;
  }

  .unik-client-logos {
    flex-wrap: wrap;
    padding: 20px;
  }

  .client-logo {
    width: 120px;
    height: 120px;
    margin: 10px;
  }

  .unik-news-section {
    padding: 40px 20px;
  }

  .unik-news-header {
    margin: 0;
    /* align-items: center; */
    text-align: center;
  }

  .unik-news-title {
    font-size: 32px;
    text-align: left;
  }
  .unik-news-subtitle{
    text-align: left;
    font-size: 14px;
  }

  .unik-news-list {
    flex-direction: row;
    align-items: center;
  }

  .unik-news-card {
    width: 100%;
    max-width: 300px;
  }

  .unik-support-section {
    padding: 40px 20px;
    height: auto;
  }

  .unik-support-content {
    flex-direction: column;
  }

  .unik-support-title {
    bottom: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .unik-support-title .white {
    font-size: 28px;
  }

  .unik-support-title .orange {
    font-size: 20px;
  }

  .unik-support-title .small {
    text-align: center;
  }

  .unik-support-right {
    display: none;
    justify-content: center;
    transform: none;
  }

  .unik-support-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .unik-contact-frame-section {
    padding: 30px 20px;
    transform: none;
  }
  .unik-contact-frame {
    padding: 40px 0 32px 0;
  }
  .unik-contact-frame-text{
    font-size: 14px;
    padding: 10px;
    margin-bottom: 0;
  }
  .unik-support-element{
    transform: translate(0%, -88%) !important;
    max-width: 100% !important;
  }
  .unik-partner-row{
    margin-top: 30% !important;
    left: 15% !important;
    margin-bottom: 20% !important;
  }
  .unik-why-choose{
    margin: 0 !important;
    padding:0 !important;
  }
}

/* =================== */
/* MEDIA QUERIES TABLET */
/* =================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .unik-arrow {
    display: none;
  }
  .banner-img{
    position: absolute;
    height: 100vh;
  }
  .banner
  .tech-item {
    all: unset;
  }
  .center-logo{
    display: none;
  }
   .item1, .item2, .item3, .item4, .item5 {
    position: static;
    transform: none;
    margin-right: 30px;
  }
  .banner-container .body-content {
    left: 5%;
    max-width: 45%;
    margin-top: 0;
  }
  .banner-container .banner-graphics .img-globe{
    width: 25%;
    top: 30%;
  }
  .banner-container .banner-graphics .img-saly{
    width: 30%;
    top: 60%;
    left: 25%;
  }
  .banner-circle-graphic {
    height: auto;
  }
  .banner-container .banner-graphics {
    left: 50%;
    width: 50%;
    margin-top: 15%;
  }

  .banner-circle-bg {
    display: none;
  }

  .unik-partner {
    margin-top: -15%;
    /* padding: 60px 40px; */
  }
  .unik-partner-top-title{
    font-size: 32px;
    bottom: -50px;
  }
  .unik-partner-row {
    left: 5%;
  }

  .unik-partner-left {
    font-size: 40px;
  }

  .unik-partner-right {
    font-size: 70px;
  }

  .unik-partner-sub {
    font-size: 20px;
    margin-left: 50px;
  }

  .unik-platform-title-custom {
    padding-left: 10%;
    padding-top: 0;
    margin-bottom: 10%;
    line-height: 1.2;
  }

  .unik-title-left,
  .unik-title-right {
    font-size: 60px;
  }

  .center-logo {
    width: 280px;
    height: 280px;
  }

  .center-logo img {
    width: 180px;
  }

  .tech-item {
    width: 180px;
  }

  .tech-item img {
    width: 140px;
  }

  .unik-why-title {
    font-size: 42px;
  }

  .unik-why-title .highlight {
    font-size: 68px;
  }

  .none-highlight {
    font-size: 58px;
  }

  .unik-why-features-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .unik-feature-box1,
  .unik-feature-box3,
  .unik-feature-box2,
  .unik-feature-box4,
  .unik-feature-box5 {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 0;
    top:0;
  }
  .unik-feature-box1 .unik-feature-desc,
  .unik-feature-box2 .unik-feature-desc,
  .unik-feature-box3 .unik-feature-desc,
  .unik-feature-box4 .unik-feature-desc,
  .unik-feature-box5 .unik-feature-desc {
    text-align: left;
    width: 325px;
    font-size: 14px;
  }

  .unik-client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logo {
    width: 140px;
    height: 140px;
    margin: 15px;
  }

  .unik-news-header {
    margin-right: 5%;
  }

.unik-support-section {
    padding: 40px 20px;
    height: auto;
  }

  .unik-support-content {
    flex-direction: column;
  }

  .unik-support-title {
    bottom: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .unik-support-title .white {
    font-size: 28px;
  }

  .unik-support-title .orange {
    font-size: 20px;
  }

  .unik-support-title .small {
    text-align: center;
  }

  .unik-support-right {
    display: none;
    justify-content: center;
    transform: none;
  }

  .unik-support-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .unik-contact-frame-section {
    padding: 30px 20px;
    transform: none;
  }
  .banner-container .banner-graphics img{
    width: 100%;
  }
}

/* Điều chỉnh chung cho cả mobile và tablet */
@media (max-width: 1024px) {
  .banner-graphic-mobile{
    display: block;
    position: absolute;
    top: 75px;
    width: 100%;
  }
  .carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
  }
  
  .banner-circle-content{
    display: flex;
    
  }

  .tech-item-view{
    display: flex;
  }
  .unik-partner-content{
    flex-direction: column-reverse;
    gap: 0;
  }
  .unik-partner-name{
    font-size: 20px;
    font-weight: 400;
  }
  .unik-partner-desc{
    font-size: 14px;
    margin-top: 0;
  }
  .title-desktop {
    display: none;
  }
  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }
  .unik-partner{
    background: none !important;
    height: auto;
  }
  .unik-partner-card{
    max-width: 100%;
    margin-bottom: 0;
  }
  .unik-partner-row{
    flex-direction: column;
    line-height: 1.2;
    margin-top: 15%;
    margin-bottom: 10%;
    gap: 0;
    left: 8%;
  }
  .title-mobile {
    display: flex;
    font-size: 32px;
    font-weight: bold;
    color: #4210B1;
    text-align: center;
  }
  .unik-partner-sub{
    color: rgba(255, 103, 64, 1);
    font-size: 16px;
    margin: 0;
    justify-content: center;
  }
  .unik-title-left{
    font-size: 38px;
  }
  .unik-title-center{
    margin: auto;

  }
  .unik-title-right{
    font-size: 28px;
    color: rgba(255, 103, 64, 1);
  }
  .unik-partner-human {
    width: 90%;
    padding: 16px;
  }
  .banner-circle{
    display: flex;
    overflow-x: auto;
  }
  .element {
    display: none;
  }
  
  .unik-support-element {
    transform: translate(20%, -80%);
    max-width: 150px;
  }
  .banner-circle-content {
    height: auto;
  }
  .circle-container {
    margin-top: 0;
    padding: 0 0;
    top: 0 !important;
    height: auto;
  }
  
  .unik-why-features {
    padding: 0;
  }
  
  .unik-news-slider {
    flex-direction: column;
    align-items: baseline;
    overflow-x: auto;
  }
  .unik-news-list{
    flex-direction: row;
  }
  .news-arrow {
    position: static;
    margin: 20px;
  }
  .unik-why-choose{
    margin-top: 5%;
    padding-bottom: 0 !important;
    height: auto;
  }
  .unik-why-title{
    align-items: center;
    font-weight: 600;
  }
  .unik-feature-box1 .unik-feature-title,
  .unik-feature-box2 .unik-feature-title{
    text-align: center;
  }
  .unik-feature-box1 .unik-feature-img img,
  .unik-feature-box2 .unik-feature-img img,
  .unik-feature-box3 .unik-feature-img img,
  .unik-feature-box4 .unik-feature-img img,
  .unik-feature-box5 .unik-feature-img img {
    width: 325px;
    border: 5px solid #ffffff99;
  }
  .unik-feature-box1 .unik-feature-img {
    height: auto;
    width: auto;
    border: none;
  
  } 

  .unik-feature-box2 .unik-feature-img {
    height: auto;
    width: auto;
    border: none;
  } 
  .unik-feature-box3 .unik-feature-img {
    height: auto;
    width: auto;
    border: none;
  }  
  .unik-feature-box4 .unik-feature-img {
    height: auto;
    width: auto;
    border: none;
  }
  .unik-feature-box5 .unik-feature-img {
    height: auto;
    width: auto;
    border: none;
  }   
  .unik-news-card {
    width: 100%;
    max-width: 300px;
    height: 450px;
  }
  .unik-news-header{
    padding: 0;
  }
.banner-container .body-content .banner-desc{
  font-size: 14px;
  text-align: left;
}
}

@media (max-width: 480px){
  .unik-partner {
        margin-top: -50%;
  }
}
@media (min-resolution: 144dpi) and (max-resolution: 191dpi) {
 
  .banner-circle-graphic{
    height: 114vh;
  }
  .tech-item img{
    width: 150px;
  }
  .tech-item h4 {
    font-size: 16px;
  }
  .tech-item p{
    font-size: 12px;
  }
  .center-logo img{
    width: 165px;
  }
  .center-logo{
    width: 250px;
    height: 250px;
  }
}
