* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #17181c;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1512px;
  margin: auto;
  padding: 20px;
}




/*HEADER*/

/* Global Variables */
:root {
  --bright: #ff8200;
  --dark: #17181c;
  --mid: #707272;
  --light: #cfd2d3;
  --white: #ffffff;
  --blue: #5ca3ff;
  --font: Ideal Sans A, Ideal Sans B, sans-serif;
  --heading: Chronicle Cond A, Chronicle Cond B, serif;
}

/* Header Styles */
.header {
  position: fixed;
  right: 0px;
  top: 0px;
  left: 0px;
  z-index: 999;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: 0 75px;
  background: var(--dark);
}

.logo img {
  height: 37px;
  width: auto;
  object-fit: contain;
}

.logo .desktop-logo {
  display: block;
}

.logo .mobile-logo {
  display: none;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

.nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: var(--bright) !important;
}

.nav ul li:first-child:hover a {
  color: var(--blue) !important;
}

.nav ul li a:active {
  color: var(--white);
}

/* Navigation Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light);
  position: absolute;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Animation For Toggle Button */
.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}





/* Footer Styles */
.footer {
  height: 70px;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 75px;
  background: var(--dark);
  z-index: 999;
}

.copyright {
  font-family: var(--font);
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  text-align: left;
  float: left;
  width: 50%;
}

.footer-links {
  display: flex;
  justify-content: right;
  width: 50%;
}

.footer-links ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

.footer-links ul li a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 20px 0;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--mid) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    height: 55px;
    padding: 7px 25px;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
  }

  .nav.active {
    max-height: 200px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0;
    gap: 15px;
  }

  .nav ul li a {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    height: 60px;
  }

  .logo .desktop-logo {
    display: none;
  }

  .logo .mobile-logo {
    display: block;
  }

  .copyright {
    display: none;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .footer-links ul {
    gap: 20px;
    padding: 0;
  }

  .footer-links ul li {
    text-align: center;
  }
}




/* HERO */

.hero {
  text-align: center;
  margin: 4rem 0;
}

.main-heading {
  color: #ff8200;
  font-family: chronical display;
  font-weight: 100;
  font-size: 48px;
  margin-bottom: 1.5rem;
}

.main-heading-center {
  color: #ff8200;
  font-family: chronical display;
  font-weight: 100;
  font-size: 48px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 18px;
  max-width: 1000px;
  text-align: center;
  margin: auto;
}

.sub-heading {
  color: #cacaca;
  font-size: 36px;
  letter-spacing: 6px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 200;
}

.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 3rem 0;
}

.industry-card {
  border: 3px solid #ff8200;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  font-size: 32px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
}

.industry-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
  z-index: 2;
}

.industry-card.open .industry-dropdown {
  max-height: none;
  margin-top: 1rem;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  opacity: 0;
  transform: scale(1);
  transition: transform 1.5s ease, opacity 0.5s ease;
}

.industry-card:not(.open):hover .industry-img {
  opacity: 1;
  transform: scale(1.1);
}

.industry-card.open .industry-img {
  opacity: 0.25;
  transform: scale(1);
}

.dropdown-content {
  text-align: center;
  padding: 2rem 1rem;
}

.dropdown-title {
  font-size: 1.75rem;
  color: #f1b529;
  margin-bottom: 0.5rem;
  letter-spacing: 6px;
  font-weight: 100;
}

.dropdown-description {
  font-size: 1rem;
  color: #ccc;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  text-align: left;
  font-weight: normal;
}

.split-box {
  display: flex;
  width: 100%;
  height: 200px;
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  position: relative;
  margin-bottom: 30px;
}

.split-text {
  flex: 0 0 60%;
  padding: 1.5rem;
  text-align: left;
}

.split-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #f1b529;
  text-align: left;
}

.split-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
  text-align: left;
}

.split-image {
  flex: 0 0 40%;
  height: 100%;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 8px 8px 0;
}

.brands {
  text-align: center;
  margin-top: 4rem;
}

.component {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.bg-deco {
  position: absolute;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.group-2 {
  top: 0;
  left: 0;
  width: 700px;
  height: auto;
  object-fit: cover;
}

.group-3 {
  bottom: 0;
  right: 0;
  width: 500px;
  height: auto;
  object-fit: cover;
}

.overlap-group-2 {
  position: relative;
  z-index: 1;
  text-align: center;
}

.overlap-group-2 .screenshot {
  max-width: 80%;
  height: auto;
}

.select-retailers {
  margin-top: 2rem;
  font-family: "Chronicle Display-Semibold", Helvetica;
  font-weight: 400;
  color: #f2f2f2;
  font-size: 36px;
}

.global-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-img {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}

.bg-img.top-left {
  top: 0;
  left: 0;
  width: 700px;
}

.bg-img.bottom-right {
  bottom: 0;
  right: 0;
  width: 500px;
}

li a.current,
li a.current:hover {
  color: var(--mid) !important;
  cursor: default;
}
li a.highlight-current,
li a.highlight-current:hover {
  color: var(--bright) !important;
  cursor: default;
}
li a.experience-current,
li a.experience-current:hover {
  color: var(--blue) !important;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }

  .sub-heading {
    font-size: 24px;
  }

  .description {
    font-size: 16px;
  }

  .industry-card {
    font-size: 20px;
    padding: 1.5rem;
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  .main-nav a {
    margin: 0.5rem 0;
  }

  .bg-img {
    max-width: 250px;
  }

  .split-box {
    flex-direction: row; /* Keep side by side */
    flex-wrap: wrap; /* Allow wrapping if needed */
    height: auto; /* Let it grow naturally */
  }

  .split-text {
    flex: 0 0 60%;
    padding: 1rem;
  }

  .split-image {
    flex: 0 0 40%;
    height: auto;
  }

  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
  }


.group-2 {
  top: 0;
  left: 0;
  width: 50%;
  height: auto;
  object-fit: cover;
}

.group-3 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  object-fit: cover;
}
}
