.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-slide-content {
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: left;
  padding-left: 200px;
  padding-right: 200px;
}

.hero-slide-logo-container {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-slide-logo {
  height: 50px;
  width: auto;
}

.hero-slide-company-name {
  font-size: clamp(14px, 4vw, 26px);
  font-weight: 600;
  color: #fff;
}

.hero-slide-content h1 {
  text-align: center;
  font-size: clamp(14px, 4vw, 66px);
  margin-bottom: 40px;
  font-weight: 700;
}

.hero-slide-content p {
  text-align: center;
  font-size: clamp(14px, 4vw, 26px);
  font-weight: 400;
}

.hero-slide video.hero-slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 0;
  transition: background 0.3s, color 0.3s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-arrow-prev {
  left: 0;
}

.hero-arrow-next {
  right: 0;
}

@media (max-width: 1200px) {
  .hero-slide-content {
    padding-left: 150px;
    padding-right: 150px;
  }

  .hero-slide-logo-container {
    margin-bottom: 30px;
  }

  .hero-slide-content h1 {
    font-size: 2.5rem;
  }

  .hero-slide-content p {
    font-size: 1rem;
  }

  .hero-slide-company-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-slide-content {
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-slide-logo-container {
    margin-bottom: 25px;
  }

  .hero-slide-content h1 {
    font-size: 2rem;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
  }

  .hero-slide-logo {
    height: 40px;
  }

  .hero-slide-company-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slide-logo-container {
    margin-bottom: 20px;
  }

  .hero-slide-content h1 {
    font-size: 1.6rem;
  }

  .hero-slide-content p {
    font-size: 0.85rem;
  }

  .hero-slide-logo {
    height: 35px;
  }

  .hero-slide-company-name {
    font-size: 1rem;
  }
}









.home-container-1-container {
  padding: 100px 25px;
  display: flex;
  width: 100%;
}

.home-container-1-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-container-1-h1 {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 50px auto;
  font-size: clamp(24px, 6vw, 66px);
  font-weight: 700;
  line-height: 1.7;
}

.home-container-1-p {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 50px auto;
  font-size: clamp(14px, 3vw, 22px);
  line-height: 1.7;
  font-weight: 700;
}

.home-container-1-btn {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: clamp(16px, 3vw, 22px);
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
  margin: 0 auto;
  font-weight: 500;
}

.home-container-1-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.home-container-1-btn:hover {
  background-color: rgb(25, 25, 112);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .home-container-1-right {
    padding: 70px;
  }
}

@media (max-width: 868px) {
  .home-container-1-right {
    padding: 40px;
  }
}










.home-container-2-container {
  background-image: url("images/img-home/img-1.jpg");
  background-size: cover;
  background-position: center;
  background-color: #f3f3f3;
  padding: 100px 25px;
  width: 100%;
}

.home-container-2-main {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.home-container-2-top-div {
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 25px 100px 25px;
  text-align: center;
}

.home-container-2-top-div h1 {
  font-size: clamp(24px, 6vw, 66px);
  font-weight: 700;
  margin-bottom: 50px;
}

.home-container-2-top-div p {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
}

.home-container-2-row {
  display: flex;
  width: 100%;
}

.home-container-2-box {
  flex: 1;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.home-container-2-box h2 {
  font-size: clamp(18px, 3vw, 26px);
  margin-bottom: 12px;
  font-weight: bold;
}

.home-container-2-box p {
  font-weight: 500;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.7;
}

.home-container-2-white {
  background: rgba(255, 255, 255, 0.70);
  color: #000000;
}

.home-container-2-tinted {
  background: rgba(0, 0, 0, 0.70);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .home-container-2-row {
    flex-wrap: wrap;
  }

  .home-container-2-box {
    flex: 1 1 100%;
    height: auto;
    padding: 50px 50px;
  }

  .home-container-2-top-div {
    padding: 0px 60px 100px 60px;
  }

  .home-container-2-row:nth-child(3) .home-container-2-box:first-child {
    order: 2;
  }

  .home-container-2-row:nth-child(3) .home-container-2-box:last-child {
    order: 1;
  }
}

@media (max-width: 600px) {
  .home-container-2-top-div {
    padding: 0px 0px 50px 0px;
  }
}









.home-page-services-container {
  padding: 100px 25px;
}

.home-page-services-wrapper {
  margin: 0 auto;
}

.home-page-services-top {
  padding: 0 0 100px 0;
  text-align: center;
}

.home-page-services-top h1 {
  font-size: clamp(24px, 6vw, 66px);
}

.home-page-services-bottom {
  background-color: #f3f3f3;
  padding: 100px 25px;
  height: 800px;
  display: flex;
  flex-direction: column;
  background-image: url('images/img-home/img-2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-page-services-right {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.home-page-services-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-page-services-box h2 {
  color: white;
  margin-top: 250px;
  background-color: rgba(0, 0, 0, 0.85);
  font-size: clamp(28px, 3vw, 42px);
  padding: 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-page-services-accordion-arrow {
  width: clamp(28px, 3vw, 44px);
  height: clamp(28px, 3vw, 44px);
  padding: 6px;
  background-color: white;
  stroke: black;
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.home-page-services-active .home-page-services-accordion-arrow {
  transform: rotate(270deg);
}

.home-page-services-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s ease;
  padding: 0 25px;
  background-color: #fff;
}

.home-page-services-content p {
  text-align: left;
  font-size: clamp(15px, 1.1vw, 18px);
  margin: 25px 25px;
}

.home-page-services-active .home-page-services-content {
  max-height: 1000px;
}

.home-page-services-button-container {
  min-width: 390px;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.home-page-services-see-products-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: black;
  padding: 20px;
  font-size: clamp(18px, 2vw, 22px);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.home-page-services-see-products-btn:hover {
  background-color: rgb(127, 255, 212);
  transform: translateY(-2px);
}

.home-page-services-see-products-btn svg {
  width: 22px;
  height: 22px;
  stroke: black;
}

@media (max-width: 1300px) {
  .home-page-services-bottom {
    padding: 50px 25px;
    justify-content: center;
  }

  .home-page-services-right {
    flex-direction: column;
  }

  .home-page-services-box h2 {
    margin: 0;
  }
}









.home-page-customer-container {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 100px 25px;
}

.home-page-customer-wrapper {
  background-image: url('images/img-home/img-3.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0;
}

.home-page-customer-top-div {
  padding: 0 0 100px 0;
  text-align: center;
}

.home-page-customer-heading {
  font-size: clamp(24px, 6vw, 66px);
  color: white;
}

.home-page-customer-content-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 800px;
}

.home-page-customer-left-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  font-weight: 700;
}

.home-page-customer-text {
  max-width: 1000px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.7;
}

.home-page-customer-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 50px;
  gap: 10px;
}

.home-page-customer-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #ffffff;
}

.home-page-customer-icon {
  font-size: 64px;
  margin-bottom: 12px;
}

.home-page-customer-grid .home-page-customer-box:nth-child(1) {
  background-color: #1e3a8a;
}

.home-page-customer-grid .home-page-customer-box:nth-child(2) {
  background-color: #92400e;
}

.home-page-customer-grid .home-page-customer-box:nth-child(3) {
  background-color: #065f46;
}

.home-page-customer-grid .home-page-customer-box:nth-child(4) {
  background-color: #4c1d95;
}

.home-page-customer-grid .home-page-customer-box:nth-child(5) {
  background-color: #7c2d12;
}

.home-page-customer-grid .home-page-customer-box:nth-child(6) {
  background-color: #1f2933;
}

@media (max-width: 992px) {
  .home-page-customer-text {
    margin-bottom: 50px;
  }

  .home-page-customer-left-div {
    padding: 50px 25px;
    height: auto;
  }

  .home-page-customer-grid {
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    width: 420px;
  }
}

@media (max-width: 768px) {
  .home-page-customer-left-div {
    height: auto;
  }

  .home-page-customer-grid {
    max-width: 267px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home-page-customer-left-div {
    padding: 20px;
    height: auto;
  }

  .home-page-customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}









.home-page-sustainability-container {
  padding: 100px 25px 0px 25px;
}

.home-page-sustainability-top {
  width: 100%;
  padding-bottom: 100px;
  text-align: center;
}

.home-page-sustainability-heading {
  font-size: clamp(24px, 6vw, 66px);
}

.home-page-sustainability-middle {
  height: 800px;
  width: 100%;
  background-image: url('images/img-home/img-4.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page-sustainability-content {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 50px;
  text-align: center;
  color: white;
}

.home-page-sustainability-text {
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  text-align: center;
}

.home-page-sustainability-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: black;
  padding: 20px;
  font-size: clamp(18px, 2vw, 22px);
  border: none;
  cursor: pointer;
  margin: 50px auto 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.home-page-sustainability-btn:hover {
  background-color: rgb(127, 255, 212);
  transform: translateY(-2px);
}

.home-page-sustainability-btn-icon {
  width: 22px;
  height: 22px;
  stroke: black;
}









.home-blog-slider-header {
  max-height: 540px;
  background: black;
  min-height: 100px;
  padding: 150px 0;
  display: flex;
  align-items: flex-end;
}

.home-blog-slider-header-title {
  margin: 0 auto 200px auto;
  max-width: 2200px;
  font-size: clamp(24px, 6vw, 66px);
  color: #fff;
}

.home-blog-slider-container {
  max-width: 2200px;
  margin: 0 auto;
}

.home-blog-slider-wrapper {
  margin-top: -200px;
  padding: 0 5%;
  position: relative;
}

.home-blog-slider-nav {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 5%;
  top: -100px;
  z-index: 2;
}

.home-blog-slider-nav-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.home-blog-slider-nav-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

.home-blog-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  padding-bottom: 30px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.home-blog-slider-track::-webkit-scrollbar {
  display: none;
}

.home-blog-slider-card {
  min-width: 720px;
  max-width: 720px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.home-blog-slider-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #f3f3f3;
  transition: transform 0.3s ease;
}

.home-blog-slider-card:hover .home-blog-slider-card-image {
  transform: translateY(-5px);
}

.home-blog-slider-card-date {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: bold;
  color: #000;
  margin: 15px 0 10px;
}

.home-blog-slider-card-title {
  font-size: clamp(18px, 2vw, 22px);
  color: #333;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-blog-slider-card-title:hover {
  font-weight: 600;
}

.home-blog-slider-link-icon {
  width: 22px;
  height: 22px;
  stroke: black;
  transition: transform 0.3s ease;
}

.home-blog-slider-card-title:hover .home-blog-slider-link-icon {
  transform: translateX(4px);
}

.home-blog-slider-button-wrapper {
  text-align: center;
}

.home-blog-slider-page-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: clamp(18px, 2vw, 22px);
  border: none;
  cursor: pointer;
  margin: 40px auto 100px auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.home-blog-slider-page-btn:hover {
  background-color: rgb(25, 25, 112);
  transform: translateY(-2px);
}

.home-blog-slider-page-btn-icon {
  width: 22px;
  height: 22px;
  stroke: white;
}

@media (max-width: 768px) {
  .home-blog-slider-card {
    min-width: 100%;
    max-width: 100%;
  }

  .home-blog-slider-header-title {
    font-size: 40px;
  }
}