/********** Template CSS **********/
:root {
  --primary: #632bfe;
  --secondary: #15ace1;
  --light: #f4f7fe;
  --dark: #14183e;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Roboto', sans-serif !important;
}

@font-face {
  font-family: lustra;
  src: url(../lib/lustra-text.ttf);
}

/* p {
  font-weight: 200 !important; 
} */

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Heading ***/
/* h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
} */

h4,
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.sticky-top,
.sticky-top-not {
  top: -150px;
  transition: 0.5s;
}

.navbar {
  padding: 11px 0 !important;
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.language {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
}


.emilyBot {
  font-size: 80px !important;
  color: white;
  font-family: "lustra" !important;
}

.blue-i {
  font-size: 80px !important;
  color: #8ee8c4;
  font-family: "lustra" !important;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    padding: 0 15px;
    background: var(--primary);
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Hero Header ***/
.hero-header {
  margin-top: -76px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* điều chỉnh chiều cao tùy ý */
}

.hero-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: '';
  width: 45px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: var(--dark);
}

.section-title::after {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  bottom: 0;
  left: 50px;
  background: var(--dark);
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -25px;
}

.section-title.text-center::after {
  left: 50%;
  margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;
  background: rgba(33, 66, 177, 0.5);
}

.section-title h6::after {
  top: 5px;
  left: 3px;
}

/*** About ***/
.about-img {
  position: relative;
  overflow: hidden;
}

.about-img::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-about-img.png) top left no-repeat;
  background-size: contain;
}

/*** Service ***/

.service-item {
  position: relative;
  padding: 45px 30px;
  background: #ffffff;
  transition: 0.5s;
}

/*
.service-item:hover {
    background: var(--primary);
}
*/

/*** Service ***/
.service-item-i {
  position: relative;
  padding: 45px 30px;
  background: #ffffff;
  transition: 0.5s;
  width: 354px;
  /* Đặt chiều dài tùy chỉnh */
  height: 400px;
  /* Đặt chiều cao tùy chỉnh */
}

.background-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Đặt ảnh nằm dưới nội dung */
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Đảm bảo ảnh bao phủ toàn bộ thẻ div */
}

.content {
  position: relative;
  z-index: 1;
  /* Đảm bảo nội dung hiển thị phía trên ảnh */
}

.service-item-i .service-icon {
  margin: 0 auto 20px auto;
  width: 90px;
  height: 90px;
  color: var(--primary);
  background: var(--light);
  transition: 0.5s;
}

.service-item-i:hover .service-icon {
  background: #ffffff;
}

.service-item-i h5,
.service-item-i p {
  transition: 0.5s;
}

.service-item-i:hover h5,
.service-item:hover p {
  /* color: #ffffff; */
}

.service-item-i .content {
  background: rgba(0, 0, 0, 0.5);
}

.service-item-i h5 {
  color: #ffffff;
}

.service-item-i:hover {
  scale: 1.021;
}

.service-item-i a.btn {
  position: relative;
  display: flex;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item-i:hover a.btn {
  color: var(--primary);
}

.service-item-i a.btn::before {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: var(--light);
  transition: 0.5s;
  z-index: -1;
}

.service-item-i:hover a.btn::before {
  width: 100%;
  background: var(--light);
}

.service-item .service-icon {
  margin: 0 auto 20px auto;
  width: 90px;
  height: 90px;
  color: var(--primary);
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover .service-icon {
  background: #ffffff;
}

.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: #ffffff;
}

.service-item a.btn {
  position: relative;
  display: flex;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover a.btn {
  color: var(--primary);
}

.service-item a.btn::before {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: var(--light);
  transition: 0.5s;
  z-index: -1;
}

.service-item:hover a.btn::before {
  width: 100%;
  background: var(--light);
}

/*** Feature ***/
/* .feature {
  background: url(../img/bg-hero.png) center center no-repeat;
  background-size: cover;
} */

/*** Newsletter ***/
/* .newsletter {
  background: url(../img/bg-hero.png) center center no-repeat;
  background-size: cover;
} */

.kh {
  font-size: 30px;

}

@media (min-width: 992px) {
  .newsletter .container {
    max-width: 100% !important;
  }

  .newsletter .newsletter-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .newsletter .newsletter-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .newsletter .newsletter-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Case Study ***/
.case-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.case-item {
  height: 350px;
  /* hoặc chiều cao bạn muốn */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* .case-item:hover img {
  transform: scale(1.2);
} */

.case-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  /* background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));	*/
  background: linear-gradient(rgba(20, 24, 62, 0), #ffffff);
  z-index: 1;
}

.case-overlay small {
  display: inline-block;
  padding: 3px 15px;
  color: #ffffff;
  background: rgba(20, 24, 62, 0.7);
  border-radius: 25px;
  margin-bottom: 15px;
}

.case-overlay span.btn:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: #ffffff;
}

/*** FAQs ***/
.accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
}

.accordion .accordion-button {
  background: var(--light);
  border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: var(--primary);
  box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
  padding: 15px 0 0 0;
}

/*** Testimonial ***/
.testimonial-carousel {
  position: relative;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 40px;
  height: 100%;
  top: calc(50% - 50px);
  left: -21px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 5px 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 40px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #ffffff;
}

.testimonial-carousel .owl-dots {
  margin-top: 35px;
  margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

/*** Team ***/
.team-item {
  transition: 0.5s;
  border: 1px solid transparent;
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--primary);
}

/*** Footer ***/
.footer {
  background: url(../img/footer.png) center center no-repeat;
  background-size: contain;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  /* color: var(--primary); */
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
}

.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: rgba(255, 255, 255, 0.5);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.ac-header {
  margin-top: 5px;
  background: url(../img/voice_control.webp) center center no-repeat;
  background-size: cover;
}

.background-video::-webkit-media-controls {
  display: none !important;
}

.video-player::-webkit-media-controls {
  display: none !important;
}


/* index.html */


/* .banner-container {
  background: url("../img/bg_nen.png") no-repeat center;
  background-size: contain;
  background-color: #fff; /* thêm màu nền nếu ảnh không phủ hết */
*/

/* Chỉ áp dụng style header-color-animate khi body KHÔNG có class .no-animate-page */
body:not(.no-animate-page) .header-color-animate {
  top: 0 !important;
  background-color: white !important;
  color: black !important;
}

body:not(.no-animate-page) .header-color-animate .nav-link-full {
  color: black !important;
}

.show a {
  color: black !important;
}

.banner-container {
  /* display: flex; */
  justify-content: flex-start;
  /* đẩy nội dung sang trái */
  align-items: center;
  /* canh giữa theo trục dọc */
  padding-left: 10vw;
  /* khoảng cách “an toàn” bên trái, responsive */
  width: 100%;
  height: 900px;
  /* aspect-ratio: 19 / 9;
  background: url("../img/emily_home.png") no-repeat center;
  background-size: cover;
  background-position: center center; */
  overflow: hidden;
}

.banner-container {
  position: relative;
  overflow: hidden;

}

.banner-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* QUAN TRỌNG: giúp video phủ đủ khung mà không méo */
  object-position: center;
  z-index: -1;
}


.banner-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* text bám trái */
  text-align: left;
  margin-top: 45vh;

}


.banner-desc {
  color: white;
  font-family: 'Roboto', sans-serif !important;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.747px;
  margin: 0;
  /* bỏ margin cứng */
  margin-top: 2rem;
}


/* 
    .banner-title {
     //   background-image: linear-gradient(43deg, #ec4242 2%, #776ae8 54%, #3ccbe4 100%);
        font-size: px;
        font-weight: var(--bold);
        text-align: center;
        color: transparent;
        line-height: 90px;
        letter-spacing: -1.28px;
        -webkit-background-clip: text;
        background-clip: text;
        margin-top: 19px;
        white-space: pre-line;
    } */

.banner-title ul {
  margin-top: 19px;
  display: flex;
  text-align: center;
}

.banner-title ul li {
  list-style: none;
  margin-right: 10px;
  color: white;
}

.btn-left {
  color: #222;
  border-radius: 30px;
  border: 1px solid #222;
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-family: 'Roboto', sans-serif !important;


  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.6s ease;
  transition: all 0.3s ease;
}

.btn-left:hover {
  transform: translateY(-5px);
  /* nhấc lên 5px */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* đổ bóng mạnh hơn */
}


.btn-right {
  border-radius: 30px;
  background: #642afc;
  padding: 10px 30px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-container {
  display: flex;
  margin-top: 30px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  padding: 10px;
  max-width: 80%;
  max-height: 80%;
}

.modal video {
  width: 100%;
  height: auto;
}

.close-btn {
  position: absolute;
  display: flex;
  z-index: 9999;
  overflow: hidden;
  top: 24px;
  right: 24px;
  left: auto;
  margin: 0;
  padding: 0;
  font-size: 40px;
  cursor: pointer;
  width: 30px;
  background-color: #fff;
  border-radius: 100%;
}

/* solution */
.solutions-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solutions-item .solutions-list-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solutions-list-item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
}

.solutions-item {
  position: relative;
  overflow: hidden;
}

.solutions-item .solution-list-item-content {
  display: flex;
  flex-direction: column;
}

.solutions-title {
  color: #000;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 60px;
}


/*end  solution */

/* product */
.product {
  padding: 120px 0px;
  background: #ffffff;
}

.TITLE-SINGLE {
  text-align: center;
  font-family: 'Roboto', sans-serif !important;


  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.product-list {
  margin-top: 80px;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

/* end product */

/* home-btn */
.home-btn {
  display: flex;
  gap: 16px;
  padding: 60px 0;
  /* bớt padding cho cân */
}

.home-btn-item {
  flex: 1;
  /* chia đều 2 cột */
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home-btn-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-btn-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* chỉnh độ đậm ở đây */
  z-index: 1;
}

.emily-kit {
  width: 19vw !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* Overlay text (cột bên trái) */
.home-btn-item0 .home-btn-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 20px;
}


/* .home-btn-item1 .home-btn-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
} */

.home-btn-item0 .home-btn-item-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.home-btn-item0 .home-btn-item-subtitle {
  font-size: 1rem;
  margin-bottom: 16px;
}

.home-btn-item0 .home-btn-item-btn {
  background: #2563eb;
  /* xanh nổi bật */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}

/* Text trong ảnh (cột bên phải) */
.home-btn-item1 .home-btn-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #000;
  text-align: left;
  width: 100%;

}

.home-btn-item1 .btn-demo {
  max-width: 212px;
}

.home-btn-item1 .home-btn-item-title {
  font-size: 2rem;
  font-weight: bold;
  color: white
}

.home-btn-item1 .home-btn-item-desc {
  font-size: 1rem;
  margin-bottom: 8px;
  color: white;
}

@media (max-width:1346px) {
  .banner-desc {
    margin-top: 5rem;
    max-width: 676px;


  }
}


@media (max-width:1225px) {
  .banner-desc {
    margin-top: 5rem;
    max-width: 676px;


  }
}

/* Responsive */
@media (max-width: 768px) {
  .home-btn {
    flex-direction: column;
  }

  .emilyBot {
    font-size: 30px !important;
  }

  .blue-i {
    font-size: 30px !important;
  }
}



/* end home-btn */


/* newtitle */
.newsletter {
  background-color: #fbfbfb;
  padding: 158px 0 236px;
}

.newsletter .title {
  font-size: 33px;
  font-weight: 600;
  text-align: center;
  color: #000000;
  line-height: 78px;
  margin-bottom: 14px;
}

.newsletter .desc {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  line-height: 32px;
  margin-bottom: 78px;
}

.newsletter .content {
  width: fit-content;
  margin: 0 auto;
}

.newsletter .content .input-submit {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.newsletter .content #newsletter-submit-success {
  display: none;
}

.newsletter .content input,
.newsletter .content button {
  border: none;
}

.newsletter .content .input-submit input {
  width: 530px;
  padding: 10px 38px;
  background: #ffffff;
  border-radius: 8px;
  margin-right: 14px;
  font-size: 16px;
  line-height: 16px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, .1);
  text-align: left;
  font-weight: normal !important;
  font-family: 'Roboto', sans-serif !important;
}

.newsletter .content .input-submit input::placeholder {
  font-size: 16px !important;
  line-height: 16px;
  font-family: 'Roboto', sans-serif !important;
  color: rgba(153, 153, 153);
}

.ar .newsletter .content .input-submit input {
  margin-left: 14px;
  margin-right: 0px;

}

.newsletter .content .input-submit button {
  width: 167px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* background: #3377ff; */
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
}

.newsletter .submit-success {
  color: #00bb97;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: #00bb97;
  line-height: 23px;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
}

.newsletter .submit-success .text>span {
  display: block;
}

.newsletter .check-icon {
  width: fit-content;
  margin-right: 18px;
}

.newsletter .check-icon>.icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 800px) {
  .newsletter {
    padding: 15vw 0 20vw;
  }

  .newsletter .title {
    font-size: 6.93vw;
    margin-bottom: 1.6vw;
    padding-left: 4vw;
    padding-right: 4vw;
    line-height: 8vw;
    margin-bottom: 4vw;
  }

  .newsletter .desc {
    font-size: 3.5vw;
    line-height: 4.27vw;
    margin-bottom: 10.67vw;
  }

  .newsletter .content .input-submit input {
    width: 52vw;
    height: 9.8vw;
    padding: 0 4.67vw;
    background: #ffffff;
    border-radius: 1.07vw;
    margin-right: 1.53vw;
    border-radius: 30px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, .1);
  }

  .newsletter .content .input-submit input::placeholder {
    font-size: 2.67vw;
    line-height: 2.67vw;
    font-family: 'Roboto', sans-serif !important;
  }

  .newsletter .content .input-submit button {
    width: 32vw;
    height: 9.8vw;
    border-radius: 1.07vw;
    font-size: 3.5vw;
    border-radius: 30px;
  }

  .newsletter .submit-success {
    align-items: baseline;
  }

  .newsletter .submit-success .text {
    width: 84.27vw;
    font-size: 3.2vw;
    line-height: 4.8vw;
    letter-spacing: 0.08vw;
  }

  .newsletter .submit-success .text>span {
    display: inline;
  }

  .newsletter .check-icon {
    width: fit-content;
    margin-right: 2.13vw;
  }

  .newsletter .check-icon>.icon {
    width: 2.93vw;
    height: 2.93vw;
  }
}

/* end newtitle */


/* wwhy */
.stats-section {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  height: 100%;
  align-content: center;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.2rem !important;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
  font-weight: 500;
}

.company-info {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  border-left: 4px solid #007bff;
}

.company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #37474f;
  margin-bottom: 15px;
}

.learn-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

/* .learn-more:hover {
  color: #0056b3;
  text-decoration: underline;
} */

.learn-more::after {
  /* content: " →"; */
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.learn-more:hover::after {
  transform: translateX(3px);
}

/* end wwhy */
/* 
@media (max-width: 1629px) and (min-width: 1422px) {
  .banner-container {
    height: calc(100vw - 851px + 38px);

  }
  .banner-text-container {
    margin-left: 141px;
    margin-bottom: 135px;
  }
}

@media (max-width: 1421px) and (min-width: 1095px) {
  .banner-container {
    height: calc(100vw - 851px + 38px);

  }
  .banner-text-container {
    margin-left: 67px;
    margin-bottom: 150px;
  }
}

@media (max-width: 1094px) {
  .banner-container {
    height: calc(100vw - 851px);

  }
  .banner-text-container {
    margin-left: 67px;
    margin-bottom: unset;
  }
  .banner-desc {
    margin-top: 162px;
  }
} */
.solutions {
  margin-top: 80px
}

@media (max-width: 767px) {
  .banner-container {
    position: relative;
    overflow: hidden;
    height: 200px;

  }

  .banner-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* QUAN TRỌNG: giúp video phủ đủ khung mà không méo */
    object-position: center;
    z-index: -1;
  }

  .banner-container {
    display: flex;
    justify-content: flex-start;
    /* đẩy nội dung sang trái */
    align-items: center;
    /* canh giữa theo trục dọc */
    padding-left: 10vw;
    /* khoảng cách “an toàn” bên trái, responsive */
    width: 100%;
    /* aspect-ratio: 19 / 9;
    background: url("../img/emily_home.png") no-repeat center;
    background-size: cover;
    background-position: center center; */
    overflow: hidden;
  }


  .banner-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* text bám trái */
    text-align: left;
    margin-top: unset;
  }


  .banner-desc {
    color: white;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.747px;
    margin: 0;
    /* bỏ margin cứng */
    /* margin-top: 5rem; */
  }

  .banner-title ul {
    font-size: 10px;
    margin-top: 7px;
  }

  .solutions {
    margin-top: 32px
  }

  .solutions-title {
    font-size: 24px;
  }

  .solutions-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .container-fluid h3 {
    font-size: 24px !important;
    margin-bottom: 20px;
  }

  .stats-section .stats-grid {
    grid-template-columns: 1fr;
  }

  .home-btn-item {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px 0px;
    border-radius: 20px;
    margin-left: 8px;
    margin-right: 8px;

  }

  .home-btn-item0 .home-btn-content {
    position: static !important;
    background: #ffffff;
    color: #000;
  }

  .home-btn-content .home-btn-item-title {
    font-size: 19.5px;
  }

  .home-btn-content .home-btn-item-subtitle {
    font-size: 13.65px;
  }

  .home-btn-item1 .home-btn-content {
    position: static !important;
    background: #ffffff;
    color: #000;
    text-align: center;
    align-items: center;
    padding: 23px;
    display: flex;
    flex-direction: column;

  }

  .home-btn-item-desc {
    font-size: 13.6px;
  }

  .home-btn-item1 .home-btn-item-btn {
    background: #2563eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 60%;
    margin-left: 70px;
    margin-top: 20px;
  }

}

.collapse .navbar-nav .nav-link:hover {
  color: #642afc !important;
}


@media (max-width: 522px) {
  .banner-title ul {
    display: none;
  }

  .banner-desc {
    max-width: 183px;

  }

  .brn-right {
    border-radius: 30px;
    background: #642afc;
    padding: 3px 20px;
    color: #fff;
    text-align: center;
    font-size: 15px;
  }

  .btn-container {
    margin-top: 8px;
  }
}








/* end index.html */

.section2_about p {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400;
}




.section1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  /* hàng - cột */
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.home img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;

}

.home-text h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.home-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 300px;
}

.section1home {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* căn giữa toàn khối */
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.section1home .section1-text {
  max-width: 75vw;
  margin-bottom: 60px;
}

.section1home .section1-text h1 {
  font-size: 33px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.section1home .section1-text p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.section1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* responsive */
@media (max-width: 992px) {
  .section1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .section1 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .emily-kit {
    width: 54vw !important;
  }

  .home img {
    width: 20vw;


  }
}


/* section2home */
.section2home {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: url(../img/bg-hero.png);
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-color: #632bfe !important;
}

.section2home-top h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.section2home-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

.section2home-bottom-top p {
  max-width: 800px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* --- phần giữa gồm 3 khối: trái, giữa, phải --- */
.section2home-bottom-bootom {
  display: flex;
  justify-content: center;
  /* thay vì space-between */
  align-items: center;
  gap: 60px;
  /* chỉnh khoảng cách 3 cột */
}


/* Bên trái: 4 card thống kê */
.section2home-bottom-bootom-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  align-items: flex-start;
}

.section2home-bottom-bootom-left-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 40, 120, 0.08);
  padding: 20px 30px;
  text-align: left;
  width: 100%
}

.section2home-bottom-bootom-left-card .number {
  font-size: 32px;
  font-weight: 700;
  color: #0044ff;
}

.section2home-bottom-bootom-left-card .text-desc {
  color: #555;
  font-size: 16px;
}

/* Ảnh robot trung tâm */
.section2home-bottom-bootom-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section2home-bottom-bootom-center img {
  width: 280px;
  max-width: 100%;
}

/* Bên phải: cụm tổ ong */
.section2home-bottom-bootom-right {
  position: relative;
  width: 380px;
  height: 400px;
  margin: auto;
}


.section2home-bottom-bootom-right-card img {
  width: 40px;
  margin-bottom: 8px;
}

.section2home-bottom-bootom-right-card {
  position: absolute;
  width: 150px;
  height: 130px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fff 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.section2home-bottom-bootom-right-card .text-desc {
  max-width: 120px;

}


/* vị trí từng cái */
/* cột trái */
/* căn tâm để cụm tổ ong đối xứng quanh robot */
.section2home-bottom-bootom-right-card {
  left: 50%;
  transform: translateX(-50%);
}

/* cột trái (dịch sang trái 100px) */
.section2home-bottom-bootom-right-card:nth-child(2),
.section2home-bottom-bootom-right-card:nth-child(4),
.section2home-bottom-bootom-right-card:nth-child(6) {
  transform: translateX(-80px);
}

/* cột phải (dịch sang phải 100px, cao hơn một chút) */
.section2home-bottom-bootom-right-card:nth-child(1),
.section2home-bottom-bootom-right-card:nth-child(3),
.section2home-bottom-bootom-right-card:nth-child(5) {
  transform: translateX(80px);
}

/* toạ độ dọc (top) giữ nguyên để giữ pattern so le) */
.section2home-bottom-bootom-right-card:nth-child(4) {
  top: 0;
}

.section2home-bottom-bootom-right-card:nth-child(1) {
  top: -65px;
}

.section2home-bottom-bootom-right-card:nth-child(3) {
  top: 75px;
}

.section2home-bottom-bootom-right-card:nth-child(2) {
  top: 140px;
}

.section2home-bottom-bootom-right-card:nth-child(5) {
  top: 215px;
}

.section2home-bottom-bootom-right-card:nth-child(6) {
  top: 280px;
}



@media (max-width: 575.98px) {
  .section2home-bottom-bootom {
    flex-direction: column;
  }

  .section2home-bottom-bootom-right {
    position: relative;
    width: 380px;
    height: 400px;
    margin-right: 118px;
    margin-top: 57px;

  }

  .section2home-bottom-top p {
    max-width: 360px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section2home {
    padding: 60px 0;
  }

  .section2home-top h1 {
    font-size: 30px;
  }

  .section2home-bottom-top p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 45px;
  }

  .section2home-bottom-bootom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .section2home-bottom-bootom-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .section2home-bottom-bootom-left-card {
    width: 45%;
    max-width: 260px;
    text-align: center;
  }

  .section2home-bottom-bootom-left-card .number {
    font-size: 28px;
  }

  .section2home-bottom-bootom-center img {
    width: 220px;
    max-width: 80%;
    background: #fff;
    border-radius: 96px;
  }

  .section2home-bottom-bootom-right {
    width: 320px;
    height: 380px;
    margin-top: 40px;
    margin-right: 296px;
  }

  .section2home-bottom-bootom-right-card {
    width: 130px;
    height: 115px;
  }

  /* thu hẹp khoảng cách hai cột tổ ong */
  .section2home-bottom-bootom-right-card:nth-child(2),
  .section2home-bottom-bootom-right-card:nth-child(4),
  .section2home-bottom-bootom-right-card:nth-child(6) {
    transform: translateX(-90px);
  }

  .section2home-bottom-bootom-right-card:nth-child(1),
  .section2home-bottom-bootom-right-card:nth-child(3),
  .section2home-bottom-bootom-right-card:nth-child(5) {
    transform: translateX(90px);
  }


  .section2home-bottom-bootom-right-card img {
    width: 32px;
  }

  .section2home-bottom-bootom-right-card .text-desc {
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .section2home-bottom-bootom-center img {
    margin-left: 155px;
    background: #fff;
    border-radius: 96px;
  }

  .section2home-bottom-bootom-center {
    width: 280px;
    max-width: 100%;

  }



  .section2home-bottom-bootom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 901px;
  }

  .language {
    margin-left: 80px;
  }
}

@media (min-width: 1200px) {
  .section2home-bottom-bootom-center {
    width: 280px;
    max-width: 100%;
    margin-left: 66px;
    background: #fff;
    border-radius: 96px;
  }

  .section2home-bottom-bootom {
    max-width: 1000px;
  }

  .language {
    margin-left: 80px;
  }
}




/* end section2home */