.home-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-banner__carousel .owl-stage-outer {
  overflow: hidden;
}
.home-banner__carousel .owl-nav {
  max-width: 1460px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0px;
  pointer-events: none;
  z-index: 10;
  margin: 0;
}
.home-banner__carousel .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-banner__carousel .owl-nav button:hover {
  background: none !important;
  transform: scale(1.1);
  color: #fff !important;
}
.home-banner__carousel .owl-nav button.owl-prev span, .home-banner__carousel .owl-nav button.owl-next span {
  font-size: 70px;
  line-height: 1;
  color: #fff;
}
.home-banner__carousel .owl-nav button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.home-banner__carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.home-banner__carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-banner__carousel .owl-dots .owl-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.home-banner__carousel .owl-dots .owl-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}
.home-banner__carousel .owl-dots .owl-dot span {
  display: none;
}
.home-banner__item {
  position: relative;
  width: 100%;
}
.home-banner__link {
  display: block;
  width: 100%;
}
.home-banner__image {
  width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .home-banner__image {
    max-height: 400px;
  }
  .home-banner__carousel .owl-nav {
    padding: 0 10px;
  }
  .home-banner__carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }
  .home-banner__carousel .owl-nav button.owl-prev span, .home-banner__carousel .owl-nav button.owl-next span {
    font-size: 24px;
  }
  .home-banner__carousel .owl-dots {
    bottom: 10px;
  }
  .home-banner__carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
  }
  .home-banner__carousel .owl-dots .owl-dot.active {
    width: 20px;
  }
}
@media (max-width: 480px) {
  .home-banner__image {
    max-height: 250px;
  }
}
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn--primary {
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}
.btn--white {
  background: #fff;
  color: #0066ff;
  border: 2px solid #fff;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
}
.btn--large {
  padding: 15px 50px;
  font-size: 16px;
}

.section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 62px;
}

.section__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 18px;
}

.map__desc {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}
.map__desc div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map__desc div img {
  width: 24px;
  height: 24px;
}
.map__desc div span {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-weight: 400;
}

.hero {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__content {
  flex: 1;
}
.hero__badge {
  margin-bottom: 20px;
}
.hero__badge .badge {
  background: #ffc107;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
}
.hero__badge .badge--hot {
  animation: pulse 2s infinite;
}
.hero__title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero__desc {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.hero__features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__feature i {
  font-size: 20px;
}
.hero__image {
  flex: 1;
  text-align: center;
}
.hero__image img {
  max-width: 400px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

.solutions {
  padding: 80px 0;
}
.solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.solutions__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solutions__content .solution__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.solutions__content .solution__item:after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 97%;
  transform: translateX(-50%);
  height: 2px;
  transition: all 0.3s ease;
}
.solutions__content .solution__item:hover:after {
  opacity: 1;
  background: linear-gradient(to right, #e7f1fe, #cbe8fe, #c5e6fe);
}
.solutions__content .solution__item .icon-wrapper {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border: 1px solid rgb(233, 233, 233);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.3s ease;
}
.solutions__content .solution__item .icon-wrapper img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(38%) sepia(93%) saturate(1719%) hue-rotate(196deg) brightness(97%) contrast(93%);
  transition: all 0.3s ease;
}
.solutions__content .solution__item .main-title-item-solution {
  font-size: 24px;
  color: #494949;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.solutions__content .solution__item .desc-item-solution {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.solutions__content .solution__item .learn-more {
  font-size: 14px;
  color: #ffb600;
  font-weight: 600;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.solutions__content .solution__item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.solutions__content .solution__item:hover .icon-wrapper {
  border-color: #ffb600;
  background: rgba(255, 182, 0, 0.1);
}
.solutions__content .solution__item:hover .icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(89%) saturate(1647%) hue-rotate(1deg) brightness(103%) contrast(105%);
}
.solutions__content .solution__item:hover .main-title-item-solution {
  color: #ffb600;
}
.solutions__content .solution__item:hover .desc-item-solution {
  max-height: 200px;
  opacity: 1;
}
.solutions__content .solution__item:hover .learn-more {
  max-height: 30px;
  opacity: 1;
}
.solutions__content .solution__item i {
  font-size: 30px;
  color: #0066ff;
}
.solutions__content .solution__item h3 {
  font-size: 18px;
  color: #333;
}
.solutions__content .solution__item span {
  font-size: 18px;
  color: rgb(84, 84, 84);
  font-weight: 600;
}
.solutions__image {
  text-align: center;
}
.solutions__image img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.solutions__image .solutions__main-image {
  display: block;
  margin: 0 auto;
}

.software {
  position: relative;
  padding: 80px 0;
  padding-bottom: 0;
}
.software .container {
  position: relative;
  z-index: 2;
}
.software .container .section__title {
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.software .layer_content_wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 0px;
  padding: 64px 0;
}
.software .layer_content {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
  gap: 0px;
}
.software .layer_content .devices__image {
  max-width: 60%;
}
.software .layer_content .devices__image img {
  width: 100%;
  height: auto;
  display: block;
}
.software .layer_content .software__content {
  max-width: 40%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.software .layer_content .software__content .software__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0px;
}
.software .layer_content .software__content .software__desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 1;
  margin-bottom: 10px;
}
.software .layer_content .software__content .software__platforms {
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
  margin-bottom: 0;
}
.software .layer_content .software__content .software_link_wrapper {
  margin: 0px 0 20px 0;
}
.software .layer_content .software__content .software_link_wrapper .software__links {
  margin: 8px 0;
  color: #67c8e8;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
}
.software .layer_content .software__content .software_link_wrapper .software__links a {
  color: #67c8e8;
  text-decoration: underline;
}
.software .layer_content .software__content .software_link_wrapper .software__links a:hover {
  color: #fff;
}
.software .layer_content .software__content .button-trial {
  background: #fff;
  color: #0066ff;
  padding: 8px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
}
.software .layer_content .software__content .button-trial:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.software .img-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.software .img-bg-wrapper .img-background-software {
  width: 100%;
  height: 100%;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.features {
  padding: 24px 0;
}
.features .container {
  max-width: unset;
  padding: 0;
}
.features .feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.features .feature__card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.features .feature__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.features .feature__card--block1 {
  background: linear-gradient(to bottom right, rgb(232, 247, 254), rgb(234, 235, 235));
}
.features .feature__card--product {
  background-color: #5abdeb;
}
.features .feature__card--product .feature__card-content {
  color: #fff;
}
.features .feature__card--product .feature__card-content .feature__card-title {
  color: #fff;
}
.features .feature__card--block3 {
  background-color: #5abdeb;
}
.features .feature__card--block3 .feature__card-content {
  color: #fff;
}
.features .feature__card--block3 .feature__card-content .feature__card-title {
  color: #fff;
}
.features .feature__card--block3 .feature__card-content .feature__card-desc {
  color: #fff;
  width: 50%;
  margin: auto;
  margin-bottom: 24px;
}
.features .feature__card--block4 {
  background-color: #d4f0fc;
}
.features .feature__card--bus {
  background: rgb(6, 63, 111);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.features .feature__card--bus .feature__card-title,
.features .feature__card--bus .feature__card-subtitle,
.features .feature__card--bus .feature__card-desc {
  color: #fff;
  font-weight: 400;
}
.features .feature__card--bus .btn--outline {
  border-color: #fff;
  color: #fff;
  background-color: #fff;
}
.features .feature__card--bus .btn--outline:hover {
  background: #fff;
  color: #1e3a5f;
}
.features .feature__card--bus .btn-bus-alert {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 3;
}
.features .feature__card--bus .btn-bus-alert img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.features .feature__card--bus .feature__card-image {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.features .feature__card--bus .feature__card-image img {
  position: relative;
  width: 100%;
  height: 100%;
  /* max-height: 250px; */
  -o-object-fit: contain;
  object-fit: cover;
  z-index: 1;
}
.features .feature__card--bus .feature__card-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(135, 206, 250, 0.9) 0%, rgba(0, 191, 255, 0.5) 30%, rgba(0, 150, 255, 0.2) 60%, transparent 80%);
  border-radius: 50%;
  z-index: 2;
}
.features .feature__card-content {
  padding: 50px 30px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.features .feature__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.features .feature__card-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}
.features .feature__card-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}
.features .feature__card-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
}
.features .feature__card-buttons .btn {
  padding: 5px 20px;
  font-size: 13px;
  border-radius: 20px;
  flex: 0 0 auto;
  font-weight: 400;
}
.features .feature__card-buttons .btn--primary {
  color: #fff;
  background-color: #2b7ee4;
}
.features .feature__card-buttons .btn--primary:hover {
  background: rgb(0, 81.6, 204);
}
.features .feature__card-buttons .btn--outline {
  background: #fff;
  border: 1.5px solid #0066ff;
  color: #0066ff;
}
.features .feature__card-buttons .btn--outline:hover {
  background: #0066ff;
  color: #fff;
}
.features .feature__card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px 80px 30px;
}
.features .feature__card-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.installation {
  padding: 120px 0;
}
.installation__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.installation__item {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  margin: auto;
  text-align: center;
}
.installation__item .installation_detail .achivement_number {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}
.installation__item .installation_detail .achivement_text {
  font-size: 18px;
  font-family: "Mullish", sans-serif;
}
.installation__item img {
  width: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.installation__item h3 {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.installation__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0066ff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.contact {
  position: relative;
  color: #fff;
  margin-bottom: 100px;
}
.contact .contact_form_bg {
  width: 100%;
}
.contact .contact__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact .section__title {
  color: #fff;
  margin-bottom: 24px;
}
.contact .section__subtitle {
  color: #fff;
  margin-bottom: 42px;
  width: 80%;
}
.contact__form {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  align-items: stretch;
  width: 80%;
}
.contact__form-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.contact__form input,
.contact__form textarea {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
}
.contact__form input:focus,
.contact__form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.contact__form input::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #999;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #999;
}
.contact__form .btn--submit {
  background: #ffc107;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 35px;
  border-radius: 8px;
  text-transform: capitalize;
  white-space: nowrap;
  align-self: flex-start;
}
.contact__form .btn--submit:hover {
  background: rgb(211, 158.25, 0);
  transform: translateY(-2px);
}

.floating-btns {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 20px;
}
.floating-btn:hover {
  transform: scale(1.1);
}
.floating-btn--phone {
  background: #25d366;
}
.floating-btn--messenger {
  background: #0084ff;
}
.floating-btn--zalo {
  background: #0068ff;
}
.floating-btn i {
  font-size: 24px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero__image {
    margin-top: 40px;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
  }
  .features .feature__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__features {
    flex-direction: column;
    gap: 15px;
  }
  .features .feature__grid {
    grid-template-columns: 1fr;
  }
  .installation__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news__carousel-wrapper {
    padding: 0 0px;
  }
  .news__prev, .news__next {
    width: 40px;
    height: 40px;
  }
  .contact__form {
    flex-direction: column;
  }
  .contact__form-wrapper {
    grid-template-columns: 1fr;
  }
  .contact__form .btn--submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section__title {
    font-size: 24px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__image img {
    max-width: 280px;
  }
  .installation__grid {
    grid-template-columns: 1fr;
  }
  .floating-btns {
    right: 15px;
    bottom: 15px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn i {
    font-size: 20px;
  }
}
.about {
  padding: 80px 0;
  background-color: rgb(236, 244, 247);
}
.about__video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.about__video-wrapper iframe {
  width: 100%;
  display: block;
  height: 562px;
}
.about__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about__video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #0066ff;
}
.about__video-play i {
  color: #fff;
  font-size: 30px;
  margin-left: 5px;
}
.about .container .list-btn-about {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.about .container .list-btn-about a:nth-child(1) {
  background-color: #2b7ee4;
  color: #fff;
  border-radius: 12px;
  padding: 5px 25px;
  font-weight: 400;
}
.about .container .list-btn-about a:nth-child(1):hover {
  background-color: #0052cc;
}
.about .container .list-btn-about a:nth-child(2) {
  background-color: transparent;
  color: #2a7de4;
  border-radius: 12px;
  padding: 5px 25px;
  font-weight: 400;
  border: 1px solid #2a7de4;
}
.about .container .list-btn-about a:nth-child(2):hover {
  background-color: #0052cc;
  color: #fff;
  border-color: #0052cc;
}
.about .container .section__title {
  margin-bottom: 18px;
}
.about .container .section__subtitle {
  text-align: center;
  color: #222222;
  width: 65%;
  margin: auto;
  margin-bottom: 18px;
}

.map {
  padding: 80px 0;
}
.map__container {
  margin: 0 auto;
  position: relative;
}
.map__container img {
  width: 100%;
}
.map .container .section__title {
  margin-bottom: 18px;
}
.map .container .section__subtitle {
  text-align: center;
  color: #222222;
  margin-bottom: 18px;
}

.partners {
  padding: 60px 0;
}
.partners .container .section__title {
  margin-bottom: 18px;
}
.partners .container .section__subtitle {
  text-align: center;
  color: #222222;
  margin-bottom: 18px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.partners__grid .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.partners__grid img {
  max-width: 120px;
  height: auto;
  transition: opacity 0.3s ease;
}
.partners__grid img:hover {
  opacity: 1;
}

.news {
  padding: 80px 0;
}
.news__carousel-wrapper {
  position: relative;
}
.news__item {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 10px;
  position: relative;
}
.news__item:hover {
  transform: translateY(-5px);
}
.news__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0066ff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  letter-spacing: 1px;
}
.news__image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f0f4f8;
}
.news__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 14/10;
  transition: transform 0.3s ease;
}
.news__image:hover img {
  transform: scale(1.05);
}
.news__title {
  font-size: 24px;
  line-height: 1.2;
  color: #333;
  font-weight: 500;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.news__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-125%);
  pointer-events: none;
  z-index: 10;
}
.news__prev, .news__next {
  position: absolute;
  width: 100px;
  height: 100px;
  background: none;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  color: #333;
}
.news__prev:hover, .news__next:hover {
  transform: scale(1.1);
}
.news__prev svg, .news__next svg {
  width: 100%;
  height: auto;
}
.news__prev {
  left: 0;
}
.news__next {
  right: 0;
}
.news .owl-dots {
  display: none;
}
.news .news__carousel-wrapper .news__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin: auto;
  max-width: 1200px;
  height: 50px;
  left: 0;
  right: 0;
  transform: translateY(-125%);
  pointer-events: none;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .section__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .section__subtitle {
    font-size: 15px;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .hero img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .solutions {
    padding: 50px 0;
  }
  .solutions .solutions__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solutions .solutions__content .solution__item {
    padding: 10px;
  }
  .solutions .solutions__content .solution__item .icon-wrapper {
    padding: 6px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .solutions .solutions__content .solution__item .icon-wrapper img {
    width: 45px;
    height: auto;
  }
  .solutions .solutions__content .solution__item h3 {
    font-size: 16px;
  }
  .solutions .solutions__content .solution__item span {
    font-size: 16px;
  }
  .solutions .solutions__content .solution__item .content-solution-item .main-title-item-solution {
    font-size: 20px;
  }
  .solutions .solutions__content .solution__item .content-solution-item .desc-item-solution {
    font-size: 14px;
  }
  .solutions .solutions__image {
    order: -1;
  }
  .solutions .solutions__image img {
    max-width: 80%;
  }
  .software {
    padding: 50px 0;
  }
  .software .section__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .software .layer_content_wrapper {
    min-height: auto;
    padding: 30px 0;
  }
  .software .layer_content {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    background-color: #208df1;
    border-radius: 15px;
    margin: 0 15px;
  }
  .software .layer_content .devices__image {
    max-width: 100%;
    text-align: center;
  }
  .software .layer_content .devices__image img {
    max-width: 80%;
    height: auto;
  }
  .software .layer_content .software__content {
    max-width: 100%;
    text-align: center;
  }
  .software .layer_content .software__content .software__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .software .layer_content .software__content .software__desc {
    font-size: 15px;
    line-height: 1.5;
  }
  .software .layer_content .software__content .software__platforms {
    font-size: 13px;
  }
  .software .layer_content .software__content .software_link_wrapper .software__links {
    font-size: 13px;
  }
  .software .layer_content .software__content button {
    padding: 12px 25px;
    font-size: 15px;
    margin-top: 10px;
  }
  .software .img-background-software {
    display: none;
  }
  .features {
    padding: 40px 0;
  }
  .features .feature__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features .feature__card {
    min-height: 500px;
  }
  .features .feature__card .feature__card-content {
    padding: 25px 20px 15px;
  }
  .features .feature__card .feature__card-title {
    font-size: 20px;
  }
  .features .feature__card .feature__card-subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .features .feature__card .feature__card-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .features .feature__card .feature__card-buttons {
    flex-wrap: wrap;
  }
  .features .feature__card .feature__card-buttons .btn {
    padding: 9px 18px;
    font-size: 12px;
  }
  .features .feature__card .feature__card-image {
    padding: 15px 20px 25px;
  }
  .features .feature__card .feature__card-image img {
    max-height: 180px;
  }
  .installation {
    padding: 50px 0;
  }
  .installation .container .section__title {
    font-size: 20px;
  }
  .installation .installation__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .installation .installation__item img {
    height: auto;
    width: 100%;
  }
  .about {
    padding: 50px 0;
  }
  .about .container .section__title {
    font-size: 20px;
  }
  .about .container .section__subtitle {
    width: 100%;
    font-size: 14px;
    padding: 0 15px;
  }
  .about .container .list-btn-about {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .about .container .list-btn-about .btn--about {
    width: 100%;
    padding: 12px 25px;
    font-size: 14px;
  }
  .about .container .about__image img {
    border-radius: 15px;
  }
  .about .container .about__image .about__video-play {
    width: 70px;
    height: 70px;
  }
  .about .container .about__image .about__video-play i {
    font-size: 26px;
  }
  .map {
    padding: 50px 0;
  }
  .map .section__title {
    font-size: 20px;
  }
  .map .section__subtitle {
    font-size: 14px;
  }
  .map .map__desc {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .map .map__desc div img {
    width: 20px;
    height: 20px;
  }
  .map .map__desc div span {
    font-size: 14px;
  }
  .map .map__container img {
    width: 100%;
  }
  .partners {
    padding: 50px 0;
  }
  .partners .section__title {
    font-size: 20px;
  }
  .partners .partners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .partners .partners__grid .partner-item {
    padding: 15px;
  }
  .partners .partners__grid .partner-item img {
    max-width: 100px;
  }
  .news {
    padding: 50px 0;
  }
  .news .section__title {
    font-size: 20px;
  }
  .news .news__carousel-wrapper {
    padding: 0 0px;
  }
  .news .news__item {
    margin: 8px;
  }
  .news .news__item .news__badge {
    font-size: 11px;
    padding: 6px 15px;
    top: 12px;
    left: 12px;
  }
  .news .news__item .news__image {
    height: 180px;
  }
  .news .news__item .news__title {
    padding: 15px;
    font-size: 13px;
    min-height: 70px;
  }
  .news .news__nav button {
    width: 40px;
    height: 40px;
  }
  .news .news__nav button svg {
    width: 18px;
    height: 18px;
  }
  .news .news__nav .news__prev {
    left: 0;
  }
  .news .news__nav .news__next {
    right: 0;
  }
  .contact .contact_form_bg {
    height: auto;
    min-height: 500px;
  }
  .contact .contact__container {
    width: 100%;
    padding: 30px 20px;
  }
  .contact .contact__container .section__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .contact .contact__container .section__subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  .contact .contact__container .contact__form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .contact .contact__container .contact__form .contact__form-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .contact .contact__container .contact__form .contact__form-wrapper input {
    padding: 10px 15px;
    font-size: 13px;
  }
  .contact .contact__container .contact__form .btn--submit {
    width: 100%;
    padding: 12px 30px;
    font-size: 14px;
  }
  .floating-btns {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn i {
    font-size: 22px;
  }
}
