html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}
section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 32px;
  z-index: 1000;

  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 36px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.home,
.menu {
  color: #111;
  margin-left: 38px;
}

.home {
  text-decoration: underline;
}

.menu {
  text-decoration: none;
}

.menu:hover {
  text-decoration: underline;
}

.button {
  background-color: rgb(33, 211, 10);
  color: white !important;
  padding: 10px 18px;
  border-radius: 12px;
}

.logo {
  height: 60px;
  width: auto;
  display: block;
}

.home_hero {
  height: 100vh;
  position: relative;
  overflow: hidden;

  background-image: url("../images/home/home-video-poster.jpg");
  background-size: cover;
  background-position: center;
}

.homepage_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero_text {
  position: absolute;
  left: 7%;
  bottom: 40%;
  color: white;
  max-width: none;
  z-index: 2;
}

.hero_small {
  color: rgb(33, 211, 10);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 42px;
}

.hero_subtext {
  position: absolute;
  right: 7%;
  bottom: 8%;
  color: white;
  max-width: 660px;
  font-size: 42px;
  line-height: 1.4;
  text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.alsco_company {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.alsco_logo {
  height: 38px;
  width: auto;
  margin: 0 8px;
  vertical-align: middle;
  position: relative;
  top: 12px;
  transition: transform 0.3s ease;
}

.alsco_logo:hover {
  transform: scale(1.08);
}


.headline {
  font-size: 70px;
  line-height: 1.05;
  margin: 20px 0;
  color: white;

  text-shadow:
    0 6px 10px rgba(0, 0, 0, 2.9),
    0 0 30px rgba(0, 0, 0, 2.9);
}

.headline_word {
  color: rgb(33, 211, 10);
}

.dropdown_content {
  display: none;
  position: absolute;
  top: 42px;
  left: 8%;
  transform: none;

  background-color: white;
  min-width: 170px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 999;
}
.dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.dropdown_content a {
  display: block;
  color: #111;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.dropdown_content a:hover {
  background-color: rgb(33, 211, 10);
  color: white;
}

.dropdown:hover .dropdown_content {
  display: block;
}
.home_showcase {
  min-height: 105vh;
  padding: 130px 7%;
  color: white;
  display: flex;
  align-items: center;
  gap: 95px;
  overflow: hidden;
  position: relative;
 background-image:
   
    url("../images/home/showcase-bg.jpg");
  background-size: cover;
  background-position: center;}

.home_showcase > * {
  position: relative;
  z-index: 2;
}
.showcase_text {
  width: 40%;
}

.showcase_text h2 {
  text-align: left;
  font-size: 74px;
  line-height: 1.1;
}

.showcase_text p {
  font-size: 44px;
  line-height: 1.6;
}

.showcase_gallery {
  width: 60%;
  height: 760px;
  position: relative;
  perspective: 1200px;
}

.showcase_gallery img {
  position: absolute;
  width: 62%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  border: 3px solid #e5e5e5;
  cursor: pointer;
  transform-style: preserve-3d;
}

.showcase_gallery img:nth-child(1) {
  top: 0;
  left: 0;
}

.showcase_gallery img:nth-child(2) {
  top: 110px;
  right: -4%;
}

.showcase_gallery img:nth-child(3) {
  bottom: 110px;
  left: -2%;
}

.showcase_gallery img:nth-child(4) {
  bottom: 0;
  right: -2%;
}

.home_products_slider {
  min-height: 100vh;
  padding: 130px 7%;
  overflow: hidden;
  background-image:
   
    url("../images/home/products-section-bg.jpg");
  background-size: cover;
  background-position: center;
}

.home_products_content {
  max-width: 1100px;
  margin: 0 auto 70px;
  text-align: center;
}

.home_products_content h2 {
  font-size: clamp(50px, 6vw, 95px);
  line-height: 1.05;
  margin: 20px 0;
}

.home_products_content p {
  font-size: 30px;
  line-height: 1.6;
}

.home_product_drag_area {
  cursor: grab;
  overflow: hidden;
}

.home_product_drag_area:active {
  cursor: grabbing;
}

.home_product_track {
  display: flex;
  gap: 40px;
  width: max-content;
  user-select: none;
}

.home_product_card {
  width: 850px;
  min-height: 430px;
  display: flex;
  align-items: center;
  gap: 35px;

  padding: 35px;
  text-decoration: none;
  color: #111;

  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
      flex: 0 0 auto;
}

.home_product_card:hover {
  transform: translateY(-14px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.22);
}

.home_product_card img {
  width: 45%;
  height: 340px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.home_product_card:hover img {
  transform: scale(1.08);
}

.home_product_card div {
  width: 55%;
}

.home_product_card h3 {
  font-size: 46px;
  margin: 0 0 18px;
}

.home_product_card p {
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .home_product_card {
    width: 78vw;
    flex-direction: column;
    text-align: center;
  }

  .home_product_card img,
  .home_product_card div {
    width: 100%;
  }

  .home_products_content p {
    font-size: 22px;
  }
}




.home_banner img {
  width: 100%;
  height: 1100px;
  object-fit: cover;
  display: block;
}

.footer {
  background-color: rgb(8, 33, 102);
  color: #111;
  padding: 70px 7%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #e5e5e5;
}

.footer_logo_img {
  height: 60px;
  width: auto;
}

.footer_links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 16px 40px;
  font-size: 25px;
}

.footer_links a {
  color: #fdf6f6;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer_links a:hover {
  color: rgb(33, 211, 10);
}

@media (max-width: 900px) {
  .headline {
    font-size: 42px;
  }

  .showcase_text,
  .showcase_gallery {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    gap: 40px;
  }

  .footer_links {
    grid-template-columns: 1fr;
  }
}
@keyframes spaceMove {
  from {
    background-position:
      0 0,
      30px 40px;
  }

  to {
    background-position:
      -240px -240px,
      170px -120px;
  }
}

@keyframes spaceGlow {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-260px, 160px) scale(1.25);
  }
}

/* BUSINESS MODEL SECTION */

.business_model_section {
  position: relative;
  min-height: 120vh;
  overflow: hidden;

  background-image: url("../images/home/business-background.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 120px 7%;
}

.business_content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  width: 100%;
}

.business_small_title {
  color: rgb(33, 211, 10);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.business_content h2 {
  font-size: 76px;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.business_text {
  font-size: 36px;
  max-width: 1900px;
  margin: 0 auto 80px auto;
  line-height: 1.6;
}

.business_description {
  max-width: 1900px;
  margin: 70px auto 0;
   text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.business_description p {
  font-size: 40px;
  line-height: 1.9;
  margin-bottom: 35px;

  text-align: justify;
  hyphens: auto;
}

.business_image:hover {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .business_content h2 {
    font-size: 46px;
  }

  .business_text {
    font-size: 19px;
  }

  .business_image {
    width: 100%;
    height: 340px;
  }
}
.contact_popup {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.contact_popup_card {
  position: relative;
  width: min(620px, 90%);
  padding: 55px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(238, 247, 239, 0.96)
  );

  border-radius: 34px;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.28),
    0 0 45px rgba(33, 211, 10, 0.18);

  color: #111;
}

.contact_popup_card h2 {
  font-size: 38px;
  margin: 40px 0 25px;
}

.contact_popup_card p {
  font-size: 28px;
  line-height: 1.7;
}

.popup_small {
  color: rgb(33, 211, 10);
  font-weight: 800;
  letter-spacing: 2px;
}

.popup_email {
  display: inline-block;
  margin-top: 20px;

  background-color: rgb(33, 211, 10);
  color: white;
  text-decoration: none;

  padding: 15px 24px;
  border-radius: 40px;

  font-size: 20px;
  font-weight: 700;
}

.contact_close {
  position: absolute;
  top: 18px;
  right: 22px;

  border: none;
  background: transparent;

  font-size: 38px;
  cursor: pointer;
}
