.double-rect-container {
  position: relative;
  width: 240px;
  height: 350px;
  display: block;
}
.double-rect-container .light-rect-bg {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background: #588cdf;
  border-radius: 20px;
  z-index: 1;
}
.double-rect-container .dark-rect-anim {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 75px;
  background: #425ca6;
  border-radius: 20px;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-top-right-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.double-rect-container .dark-rect-static {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 200px;
  background: #425ca6;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.double-rect-container:hover .dark-rect-anim {
  height: 120px;
  margin-top: -45px;
  border-top-right-radius: 50px;
}
.double-rect-container .circle {
  position: absolute;
  left: 50%;
  top: -70px;
  width: 120px;
  height: 120px;
  background: #425ca6;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.warehouse-section *,
.warehouse-section *::before,
.warehouse-section *::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font-family: "M PLUS Rounded 1c", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}
header .logo img {
  width: 12rem;
}
header .navigation {
  display: flex;
}
header .navigation ul {
  list-style: none;
  padding: 0;
}
header .navigation ul li {
  display: inline-block;
  margin: 0 1rem;
}
header .navigation ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
}
header .navigation ul li a:hover {
  color: #425ca6;
}
header .navigation ul li a.active {
  color: #425ca6;
  font-weight: 700;
}
header .navigation ul li .nav-button {
  color: #ffffff;
  background-color: #588cdf;
  padding: 12px 50px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
header .navigation ul li .nav-button:hover {
  background-color: #105bd4;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
header .navigation ul li .nav-button .phone-icon {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

header.sticky {
  position: fixed;
  top: -10px;
  left: 49%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.9529411765);
  border-radius: 20px;
  padding: 20px;
  width: 90%;
  max-width: 1300px;
  z-index: 1000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  background-image: url("/assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  padding-left: 8vw;
  padding-bottom: 120px;
}
.hero-section .hero-image img {
  width: 500px;
}
.hero-section .hero-text {
  max-width: 600px;
  color: #fff;
  text-align: left;
}
.hero-section .hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.hero-section .hero-text p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.hero-section .hero-text span {
  color: #588cdf;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}
.hero-section .hero-button {
  background-color: #588cdf;
  color: #ffffff;
  padding: 10px 45px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.hero-section .hero-button:hover {
  background-color: #105bd4;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 120px 0 60px 0;
}
.about-section .about-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}
.about-section .about-image img {
  width: 65%;
  height: auto;
  border-radius: 18px;
  display: block;
}
.about-section .about-text {
  flex: 1 1 0;
  max-width: 600px;
}
.about-section .about-text h1,
.about-section .about-text h5,
.about-section .about-text p {
  text-align: left;
}
.about-section .about-text h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #588cdf;
  margin-bottom: 0.5rem;
}
.about-section .about-text h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #588cdf;
}
.about-section .about-text span {
  color: #425ca6;
  font-weight: 800;
}
.about-section .about-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.about-section .about-button {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}
.about-section .about-button a {
  flex: 0 1 auto;
  min-width: 150px;
  text-align: center;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  margin-top: 1.2rem;
}
.about-section .about-button .about-button-1 {
  background-color: #588cdf;
  color: #fff;
}
.about-section .about-button .about-button-1 .phone-icon {
  width: 17px;
  height: 17px;
  margin-right: 2px;
  vertical-align: middle;
  display: inline-block;
}
.about-section .about-button .about-button-1:hover {
  background-color: #105bd4;
  color: #fff;
}
.about-section .about-button .about-button-2 {
  background-color: #fff;
  color: #000;
  border: 2px solid #588cdf;
}
.about-section .about-button .about-button-2:hover {
  background-color: #105bd4;
  color: #fff;
}

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
}
.services-section .services-text {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-section .services-text h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #588cdf;
  margin-bottom: 1.2rem;
}
.services-section .services-text p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 100px;
}
.services-section .services-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3rem;
  gap: 50px;
  flex-wrap: wrap;
}
.services-section .circle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-section .circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.services-section .dark-rect-static {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.services-section .dark-rect-static h5 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: -40px;
  z-index: 2;
  position: relative;
}
.services-section .dark-rect-static p {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.team-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  padding-top: 3rem;
  min-height: 100vh;
}
.team-section .team-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw;
  z-index: 2;
}
.team-section .team-text h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #588cdf;
  margin-bottom: 0.3rem;
}
.team-section .team-text p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 0 0 0;
}
.team-section .team-text .team-cards {
  width: 100%;
  margin-top: 2rem;
  padding: 0;
}
.team-section .team-text .team-cards ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-align: left;
  position: relative;
}
.team-section .team-text .team-cards li {
  font-size: 1.8rem;
  background-color: #fff;
  color: #000;
  margin-bottom: 1.2rem;
  padding-left: 2.5rem;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 12px rgba(66, 92, 166, 0.3);
  max-width: 70%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.team-section .team-text .team-cards li .li-text {
  position: relative;
  z-index: 2;
}
.team-section .team-text .team-cards li .li-svg {
  position: absolute;
  left: 9%;
  bottom: 10px;
  transform: translateX(-50%) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  opacity: 0;
  width: 100px;
  height: 30px;
  pointer-events: none;
  z-index: 0;
}
.team-section .team-text .team-cards li:hover .li-svg {
  transform: translateX(-50%) translateY(-10px);
  opacity: 1;
}
.team-section .team-text .team-cards li::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.6em;
  width: 0.4em;
  height: 0.4em;
  background: #222;
  border-radius: 50%;
  z-index: 3;
  display: block;
}
.team-section .team-text .team-cards li:hover::before {
  background: #fff;
}
.team-section .team-text .team-cards li:hover {
  background-color: #588cdf;
  color: #fff;
  border-color: #588cdf;
  box-shadow: 4px 4px 12px rgba(66, 92, 166, 0.5);
}
.team-section .team-image {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.team-section .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.product-section {
  background-color: #588cdf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px 0;
}
.product-section .product-text {
  text-align: center;
  margin-bottom: 3.5rem;
}
.product-section .product-text h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}
.product-section .product-text p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 100px;
}
.product-section .product-carousel {
  width: 100%;
  max-width: 100%;
  padding: 0 6vw;
  box-sizing: border-box;
  margin: 0 auto;
}
.product-section .product-carousel .splide__arrow {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.85;
  transition: background 0.2s, color 0.2s;
}
.product-section .product-carousel .splide__arrow svg {
  fill: #fff;
}
.product-section .product-carousel .splide__track {
  padding: 0 !important;
}
.product-section .product-carousel .splide__slide {
  min-width: 0;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  padding: 35px 0 24px 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
}
.product-section .product-carousel .splide__slide img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: transparent;
  border-radius: 0;
  transition: transform 0.2s;
  z-index: 2;
}
.product-section .product-carousel .splide__slide:hover {
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.product-section .product-carousel .splide__slide:hover img {
  transform: scale(1.2);
}
.product-section .product-carousel .splide__slide .product-caption {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 0.5rem;
}
.product-section .product-show-more-btn {
  background: #425ca6;
  color: #fff;
  padding: 10px 45px;
  border-radius: 30px;
  margin: 3.5rem 0;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.product-section .product-show-more-btn:hover {
  background: #105bd4;
}
.product-section .longstrip-carousel {
  text-align: center;
  margin: 3.5rem 0;
  overflow: hidden;
  width: 100%;
}
.product-section .longstrip-carousel h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3rem;
}
.product-section .longstrip-carousel .longstrip-track {
  display: flex;
  width: max-content;
  animation: longstrip-slide-left 70s linear infinite;
}
.product-section .longstrip-carousel img {
  height: 540px;
  width: auto;
  display: block;
  min-width: unset;
}
@keyframes longstrip-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.warehouse-section {
  background-image: url("/assets/images/circle-scatter-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 40px 0 60px 0;
}
.warehouse-section .warehouse-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.warehouse-section .warehouse-content .warehouse-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 6vw 80px 8vw;
}
.warehouse-section .warehouse-content .warehouse-text h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #425ca6;
  margin-bottom: 0.3rem;
}
.warehouse-section .warehouse-content .warehouse-text p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #425ca6;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 0 0 0;
}
.warehouse-section .warehouse-content .warehouse-images {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 6vw;
}
.warehouse-section .warehouse-content .warehouse-images img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
}
.warehouse-section .warehouse-content .warehouse-images #main-warehouse-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
  margin-bottom: 16px;
  margin-right: 80px;
}
.warehouse-section .warehouse-gallery {
  width: 100%;
  padding: 0 8vw;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 260px;
}
.warehouse-section .warehouse-gallery .warehouse-thumbnails {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 1564px;
}
.warehouse-section .warehouse-gallery .warehouse-thumbnails .thumb {
  flex: 1 1 0;
  max-width: calc(33.33% - 22px);
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  opacity: 0.8;
  border: 5px solid transparent;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.warehouse-section .warehouse-gallery .warehouse-thumbnails .thumb:hover, .warehouse-section .warehouse-gallery .warehouse-thumbnails .thumb.active {
  opacity: 1;
  border-color: #425ca6;
  box-shadow: 0 6px 24px rgba(88, 140, 223, 0.15);
  z-index: 1;
}

.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px 0;
  /* Animation keyframes */
  /* Apply animation to rows */
}
.partners-section .partners-text {
  text-align: center;
  margin-bottom: 1.5rem;
}
.partners-section .partners-text h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: #425ca6;
  margin-bottom: 1.2rem;
}
.partners-section .partners-text p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #425ca6;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 100px;
}
.partners-section .brand-carousel {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}
.partners-section .carousel-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 120px;
  align-items: center;
  width: max-content;
  min-height: 80px;
}
.partners-section .carousel-row img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.partners-section .row-1,
.partners-section .row-3 {
  animation: slide-left 60s linear infinite;
}
.partners-section .row-2 {
  animation: none !important;
}
.partners-section .partners-accounts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 4rem;
}
.partners-section .partners-accounts .partners-mt,
.partners-section .partners-accounts .partners-gt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
}
.partners-section .partners-accounts h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #588cdf;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.partners-section .partners-accounts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #588cdf;
  margin-bottom: 0.5rem;
}

.contact-us-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 120px 8vw 60px 8vw;
}
.contact-us-section .contact-us-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}
.contact-us-section .contact-us-text h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #588cdf;
  margin-bottom: 0.5rem;
}
.contact-us-section .contact-us-text h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #425ca6;
}
.contact-us-section .contact-us-text span {
  color: #588cdf;
  font-weight: 800;
}
.contact-us-section .contact-us-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.contact-us-section .contact-us-text .contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-us-section .contact-us-text .contact-details .contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1rem;
}
.contact-us-section .contact-us-text .contact-details .contact-row img {
  width: 60px;
  height: 60px;
}
.contact-us-section .contact-us-text .contact-details .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-us-section .contact-us-text .contact-details .contact-info p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.contact-us-section .contact-us-text .contact-details .contact-info p:first-child {
  font-weight: 800;
  font-size: 1.5rem;
  color: #585858;
}
.contact-us-section .contact-gmaps {
  flex: 1;
  min-width: 100px;
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.contact-bottom-vector {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.contact-bottom-vector img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

footer {
  background: #588cdf;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: url("/assets/images/globe-footer.png") no-repeat center/contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
footer > div,
footer .copyright-footer {
  position: relative;
  z-index: 2;
}
footer .footer-text {
  text-align: center;
  padding: 20px 0;
  font-size: 1.2rem;
  color: #ffffff;
  padding-top: 4rem;
  margin-bottom: 3rem;
}
footer .footer-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
footer .footer-text p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  margin: 0 120px;
}
footer .footer-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
footer .footer-social-media h4 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
}
footer .footer-social-media a img {
  width: 40px;
  height: 40px;
  padding: 0 8px;
  margin-top: 0.8rem;
}
footer .copyright-footer {
  background-color: #425ca6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  gap: 16px;
  box-shadow: 0 -2px 15px rgba(255, 255, 255, 0.5);
}
footer .copyright-footer .copyright-text {
  text-align: left;
}
footer .copyright-footer .copyright-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-end;
}
footer .copyright-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
footer .copyright-footer a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=index.css.map */