/* Import Poppins font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* Base */
:root {
  --bg: #1e1a2e;
  --bg-alt: #5c4f6e;
  --text: #ffffff;
  --muted: #ffffff;
  --primary: #c2a3ca;
  --primary-600: #3d8bfd;
  --secondary: #b3abc9;
  --accent: #c2a3ca;
  --accent-2: #99ffbb;
  --border: #1c2430;
  --card: #121821;
  --success: #22c55e;
  --danger: #ef4444;
  --white: #ffffff;
  --dark-p: #e8e3f5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  --rotate-speed: 40;
  --count: 8; /* Default count, the DOM element should override this */
  --easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
  --easing: cubic-bezier(0, 0.37, 1, 0.63);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", Inter, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--text);
  text-decoration: none;
}
p {
  color: var(--muted);
}

.container {
  width: min(1440px, 92%);
  margin: 0 auto;
}
.container-full {
  width: 95vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 10px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section__title {
  font-size: 28px;
  margin: 0 0 24px;
}
.section-1 {
  display: flex;
  height: 100%;
  flex-direction: column;
  background-color: var(--bg);
}
.section-2 {
  display: flex;
  background-color: var(--white);
  color: var(--bg);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  /* From https://css.glass */
  /* background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px); */
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 80px;
}
.header-sections {
  width: 33.33%;
}
.header-sections-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-sections-right {
  display: flex;
  justify-content: right;
  align-items: right;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  opacity: 0.9;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a.active {
  color: var(--primary);
}
.nav-links a::first-letter {
  color: var(--accent);
  font-weight: bold;
}
.logo-white {
  max-width: 50px;
}

/* custom button*/
.btn {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 30px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--white), var(--dark-p));
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.btn:hover {
  background: linear-gradient(180deg, var(--dark-p), var(--white));
  box-shadow: 0 15px 30px -10px var(--accent);
}

.btn > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn:active {
  transform: scale(0.95);
}
/* Button Ghost*/

.btn-ghost {
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 30px;
  border-radius: 100px;
  background: var(--bg);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  font-size: 15px;
}

.btn-ghost:hover {
  background: var(--white);
  color: black;
  box-shadow: 0 15px 30px -10px var(--accent);
}

.btn-ghost > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.btn-ghost:hover svg {
  transform: translateX(5px);
}

.btn-ghost:active {
  transform: scale(0.95);
}
/* section white Button*/
.btn-white-section {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--dark-p), var(--accent));
  border: 0px solid transparent;
  box-shadow: 0 15px 30px -10px var(--accent);
  display: flex;
  align-items: center;
  font-size: 15px;
}

.btn-white-section:hover {
  background: linear-gradient(135deg, var(--accent), var(--dark-p));
}

.btn-white-section > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.btn-white-section:hover svg {
  transform: translateX(5px);
}

.btn-white-section:active {
  transform: scale(0.95);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
  transition: transform 0.3s ease;
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero */
.hero {
  background-image: var(--bg);
}
.heroContent {
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
}
.heroLeft {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  width: 60%;
}
.heroRight {
  position: relative;
  display: flex;
  justify-content: end;
  flex-direction: column;
  width: 40%;
  background-image: url("../images/studio2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}
.heroRightCard {
  height: 40%;
  width: 100%;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.heroRightTopRight {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--bg);
  width: fit-content;
  padding: 10px 20px 10px 20px;
  border-bottom-left-radius: 1rem;
}
.hero-headline {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}
.hero__content h1 {
  padding: 5px;
  font-size: clamp(50px, 3vw, 60px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--bg),
    var(--accent),
    var(--bg-alt),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.hero__content h2 {
  padding: 5px;
  font-size: clamp(45px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--white),
    var(--accent),
    var(--white),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.hero-logo {
  display: flex;
  flex-direction: column;
}
.hero-content-p {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  border-radius: 100px;
  border: 1px solid var(--white);
  padding: 2px 10px 2px 10px;
  width: fit-content;
}
.hero__content a {
  color: var(--bg);
}
.hero__content p {
  font-size: 18px;
  margin: 0;
  color: var(--bg);
}
.actions {
  display: flex;
  gap: 12px;
  padding: 35px 0;
}
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.card.gradient {
  width: 100%;
  height: 340px;
  background: linear-gradient(
    135deg,
    rgba(110, 168, 254, 0.25),
    rgba(182, 146, 246, 0.25)
  );
  border: 1px solid rgba(110, 168, 254, 0.35);
}
.card.outline {
  width: 70%;
  height: 240px;
  position: absolute;
  bottom: -16px;
  right: 10%;
  border-style: dashed;
  opacity: 0.7;
}

/* hero light bar*/
.lightbar-container {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
}

.lightbar-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lightbar-text p {
  color: var(--dark-p);
  margin: 0;
}
.lightbar-text h1 {
  padding: 0;
  font-size: clamp(70px, 4vw, 60px);
  line-height: 1.1;
  margin: 0;
  line-height: 1;
  background-image: linear-gradient(
    150deg,
    var(--bg-alt),
    var(--accent),
    var(--bg-alt)
  );
  color: transparent;
  background-clip: text;
}
.lightbar-text #webseiten {
  display: block;
  color: var(--dark-p);
}
.lightbar-text h3 {
  font-size: 3vw;
  padding: 0;
  font-weight: 900;
  display: block;
  margin: 11px 0 17px 0;
  line-height: 80px;
  color: var(--bg);
  text-shadow: 0 3.36px 8.896px var(--bg-alt), 0 -2px 1px var(--bg-alt);
  letter-spacing: -4px;
}
.hero-small-text {
  display: flex;
  flex-direction: column;
}
.hero-small-text p {
  color: var(--dark-p);
  padding: 0;
  margin: 0;
}

/* Grids */
.grid {
  display: grid;
  gap: 24px;
  align-items: center;
}
.grid--2cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Section-2 */
.section-2-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 100px 10px 100px 10px;
  width: 50%;
  gap: 10px;
}
.section-2-left p {
  color: var(--bg);
}
.section-2-left h1 {
  padding: 5px;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--bg),
    var(--accent),
    var(--bg-alt),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.section-2-left h2 {
  padding: 5px;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--bg),
    var(--accent),
    var(--bg-alt),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.section-2-left-checkmarks {
  display: flex;
  gap: 50px;
}
.section-2-right {
  display: flex;
  padding: 10px;
  width: 50%;
}
.section-2-img {
  background-image: url("../images/hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
}

/* section-3 */
.section-3 {
  display: flex;
}
.section-3-left {
  width: 50%;
  padding: 100px 10px 100px 10px;
}
.section-3-right {
  width: 50%;
  padding: 100px 10px 100px 10px;
}
.void {
  width: 100%;
  max-width: 1024px;
  margin: auto;
  position: relative;
  aspect-ratio: 1 / 1;
}
.section-3-right ul:hover * {
  animation-play-state: paused;
}
.section-3-right ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  outline: 2px dotted magenta;
  z-index: 1;
}
.section-3-right li {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* 	outline: 2px dashed cyan; */
  width: 100%;
  animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}
.card-section-3 {
  width: 27%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 8px;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 16px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--bg);
  animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}
.section-3-right a {
  text-decoration: none;
  color: unset;
}
.model-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: var(--accent);
  display: block;
}
.section-3-right svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

li:nth-child(2),
li:nth-child(2) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -1s);
}
li:nth-child(3),
li:nth-child(3) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -2s);
}
li:nth-child(4),
li:nth-child(4) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -3s);
}
li:nth-child(5),
li:nth-child(5) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -4s);
}
li:nth-child(6),
li:nth-child(6) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -5s);
}
li:nth-child(7),
li:nth-child(7) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -6s);
}
li:nth-child(8),
li:nth-child(8) .card-section-3 {
  animation-delay: calc((var(--rotate-speed) / var(--count)) * -7s);
}

@keyframes rotateCW {
  from {
    transform: translate3d(0px, -50%, -1px) rotate(-45deg);
  }
  to {
    transform: translate3d(0px, -50%, 0px) rotate(-315deg);
  }
}
@keyframes rotateCCW {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(315deg);
  }
}
@keyframes pulseGlow {
  from {
    background-size: 60%;
  }
  to {
    background-size: 100%;
  }
}

.center-circle {
  position: absolute;
  width: 230px;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3),
    0px 30px 60px -12px rgba(12, 5, 46, 0.25);
  border-radius: 50%;
  background-image: url("../images/circle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.second-circle {
  position: absolute;
  width: 40%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f5f4fe;
  opacity: 0.5;
  box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3),
    0px 30px 60px -12px rgba(12, 5, 46, 0.25);
  border-radius: 50%;
}
.last-circle {
  position: absolute;
  width: 66%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f5f4fe;
  opacity: 0.25;
  box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3),
    0px 30px 60px -12px rgba(12, 5, 46, 0.25);
  border-radius: 50%;
}
.crop {
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1)
  );
}
.mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  animation: pulseGlow 5s linear infinite alternate;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-image: radial-gradient(
    100% 50% at 100% 50%,
    rgba(60, 26, 229, 0.25) 0%,
    rgba(60, 26, 229, 0.247904) 11.79%,
    rgba(59, 26, 229, 0.241896) 21.38%,
    rgba(58, 26, 229, 0.2324) 29.12%,
    rgba(57, 26, 229, 0.219837) 35.34%,
    rgba(55, 26, 229, 0.20463) 40.37%,
    rgba(53, 26, 229, 0.1872) 44.56%,
    rgba(51, 26, 229, 0.16797) 48.24%,
    rgba(48, 26, 229, 0.147363) 51.76%,
    rgba(46, 26, 229, 0.1258) 55.44%,
    rgba(44, 26, 229, 0.103704) 59.63%,
    rgba(41, 26, 229, 0.0814963) 64.66%,
    rgba(39, 26, 229, 0.0596) 70.88%,
    rgba(36, 26, 229, 0.038437) 78.62%,
    rgba(34, 26, 229, 0.0184296) 88.21%,
    rgba(32, 26, 229, 0) 100%
  );
}
.mask:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  display: block;
  background-image: linear-gradient(
    180deg,
    rgba(60, 26, 229, 0) 0%,
    #3c1ae5 50%,
    rgba(60, 26, 229, 0) 100%
  );
}
/* section 4 dark */
.section-4 {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 50px 10px 100px 10px;
}
.section-4-header {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
.section-4-header p {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  border-radius: 100px;
  border: 1px solid var(--accent);
  padding: 2px 10px 2px 10px;
}
.section-4-header h1 {
  padding: 5px;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--white),
    var(--accent),
    var(--white),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.section-4-header h2 {
  padding: 5px;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--white),
    var(--accent),
    var(--white),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.section-4-left {
  width: 70%;
  background-image: url("../images/studio.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-block;
  min-height: 350px;
  border-radius: 15px;
}
.section-4-card {
  width: 70%;
  height: 100%;
  /* From https://css.glass */
  background: rgba(30, 26, 46, 0.5);
  border-radius: 15px 0 0 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.3px);
  -webkit-backdrop-filter: blur(4.3px);
  border: 1px solid rgba(30, 26, 46, 0.4);
  padding: 40px;
}
.section-4 h2 {
  font-size: clamp(25px, 2vw, 30px);
  padding: 5px;
  line-height: 1.1;
  margin: 0 0 16px;
  background-image: linear-gradient(
    150deg,
    var(--white),
    var(--accent),
    var(--white),
    var(--accent)
  );
  color: transparent;
  background-clip: text;
}
.section-4-right {
  padding: 40px;
  width: 30%;
  min-height: 350px;
  background-image: linear-gradient(240deg, var(--bg-alt), var(--bg));
  border-radius: 15px;
  box-shadow: 2px 4px 30px rgba(88, 88, 88, 0.1);
}
.card-icon-s4 {
  padding: 10px;
  background-image: url("../images/strategy.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 80px;
  display: inline-block;
  align-items: center;
}
.card-icon-s5 {
  padding: 10px;
  background-image: url("../images/security.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 80px;
  display: inline-block;
  align-items: center;
}

/* Services */
.service-box {
}
.service-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.service-text p {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* Solid cards */
.solid-cards-outer {
  display: flex;
}
.solid-cards {
  margin: 0 auto;
  max-height: 900px;
  display: flex;
  width: 33%;
  flex-direction: column;
  padding: 20px 20px 20px 20px;

  > * {
    flex: 0 0 100%;
  }
}
.solid-cards-inside {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.solid-cards-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  padding: 20px;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
}
.solid-cards-card h3 {
  font-size: x-large;
}
.solid-cards-card p {
  font-size: small;
}
.card-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-icon {
  background-image: url("../images/check-mark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: inline-block;
}
/* moving cards */
.moving-cards-outer {
  display: flex;
}
.moving-cards {
  margin: 0 auto;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  width: 33%;
  flex-direction: column;
  padding: 20px;

  > * {
    flex: 0 0 100%;
  }
}
.moving-cards-inside {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 40px;
  padding-bottom: 40px;
  will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
  animation: scrolling 25s linear infinite;
}
.moving-cards-inside-up {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 40px;
  padding-bottom: 40px;
  will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
  animation: scrolling-1 25s linear infinite;
}
.moving-cards-card {
  width: 100%;
  aspect-ratio: 9 / 5;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 10%) 5px 5px 20px 0;
  padding: 20px;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  &:nth-child(1) {
    background-image: url("../images/web7.png");
  }

  &:nth-child(2) {
    background-image: url("../images/web6.png");
  }

  &:nth-child(3) {
    background-image: url("../images/web5.png");
  }
}
.moving-cards-card-2 {
  width: 100%;
  aspect-ratio: 9 / 5;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 10%) 5px 5px 20px 0;
  padding: 20px;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  &:nth-child(1) {
    background-image: url("../images/web3.png");
  }

  &:nth-child(2) {
    background-image: url("../images/web6.png");
  }

  &:nth-child(3) {
    background-image: url("../images/web1.png");
  }
}
.moving-cards-card-3 {
  width: 100%;
  aspect-ratio: 9 / 5;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 10%) 5px 5px 20px 0;
  padding: 20px;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  &:nth-child(1) {
    background-image: url("../images/web7.png");
  }

  &:nth-child(2) {
    background-image: url("../images/web6.png");
  }

  &:nth-child(3) {
    background-image: url("../images/web5.png");
  }
}

@keyframes scrolling {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes scrolling-1 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-service {
  padding: 0;
  display: flex;
  position: relative;
}
.hero-filter {
  display: flex;
  justify-content: center;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100wv;
  height: 100%;
  background: #1e1a2e;
  background: linear-gradient(
    180deg,
    rgba(30, 26, 46, 1) 0%,
    rgba(30, 26, 46, 0.9) 30%,
    rgba(30, 26, 46, 0.9) 70%,
    rgba(30, 26, 46, 1) 100%
  );
  z-index: 11;
}
.service-inside {
  /* From https://css.glass */
  padding: 18px 0 5px 18px;
  background: rgba(30, 26, 46, 0.19);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
}
.service {
  padding: 0 0 50px 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.service > * {
  position: relative;
  z-index: 2;
}

/* Individual service background images */
.service:nth-child(1) {
  background-image: url("../images/Brand.png");
}

.service:nth-child(2) {
  background-image: url("../images/UX.png");
}

.service:nth-child(3) {
  background-image: url("../images/Web.png");
}

.service:nth-child(4) {
  background-image: url("../images/SEO.png");
}
.service h3 {
  margin: 0 0 6px;
}

/* Portfolio */
.portfolio .tile {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 60px 18px;
  background: rgba(18, 24, 33, 0.6);
  overflow: hidden;
}
.portfolio .tile span {
  position: relative;
  z-index: 2;
  font-weight: 600;
}
.portfolio .tile::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    220px 220px at var(--mx, 50%) var(--my, 50%),
    rgba(110, 168, 254, 0.35),
    transparent 60%
  );
  transition: 0.2s;
}
.portfolio .tile:hover::after {
  inset: -20%;
}

/* Contact */
.form {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0e141c;
  color: var(--text);
}
.form-status {
  min-height: 20px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 100px 0;
  background: rgba(11, 14, 18, 0.6);
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
}
.footer-content {
  display: flex;
  border-bottom: 1px solid var(--accent);
}

.footer-left {
  width: 70%;
  display: flex;
  gap: 10px;
  padding-right: 10%;
}
.footer-right {
  width: 30%;
  display: flex;
  justify-content: space-between;
}
.quick-links {
  display: flex;
  flex-direction: column;
}
.footer-copyright {
  margin: 0;
}
.logo-white-footer {
  max-width: 150px;
}

/* Responsive - Tablet (641px - 1024px) */
@media (max-width: 1024px) {
  .container {
    width: min(95%, 95%);
  }

  .nav {
    height: 70px;
    padding: 0 15px;
  }

  .header-sections {
    width: auto;
  }

  .header-sections-right {
    display: none;
  }

  /* Hero Section */
  .section-1 {
    padding: 30px 20px;
    text-align: center;
  }

  .hero__content p {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Section 2 */
  .section-2 {
    flex-direction: column;
  }

  .section-2-left,
  .section-2-right {
    width: 100%;
  }

  .section-2-left {
    padding: 60px 20px;
    text-align: center;
  }

  .section-2-left-checkmarks {
    justify-content: center;
    gap: 30px;
  }

  .section-2-img {
    min-height: 300px;
  }

  /* Section 3 */
  .section-3 {
    flex-direction: column;
  }

  .section-3-left,
  .section-3-right {
    width: 100%;
    padding: 40px 20px;
  }

  .void {
    max-width: 100%;
    margin: 20px auto;
  }

  /* Section 4 */
  .section-4 {
    flex-direction: column;
    gap: 30px;
  }

  .section-4-left,
  .section-4-right {
    width: 100%;
  }

  .section-4-card {
    width: 100%;
    border-radius: 15px;
  }

  /* Moving Cards */
  .moving-cards-outer {
    flex-direction: column;
  }

  .moving-cards {
    width: 100%;
    max-height: 500px;
  }

  /* Service Box */
  .service-text {
    flex-direction: column;
    gap: 20px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left {
    width: 100%;
    padding-right: 0;
  }

  .footer-right {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .grid--2cols {
    grid-template-columns: 1fr;
  }
  .grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile (up to 640px) */
@media (max-width: 640px) {
  /* Navbar */
  .nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    height: 60px;
    position: relative;
  }

  .header-sections {
    width: auto;
  }

  .header-sections-middle {
    position: static;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    background: rgba(30, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 20px;
    gap: 15px;
    display: none;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .header-sections-right {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
  }

  .section-1 {
    padding: 40px 15px;
    text-align: center;
  }

  .hero__content h1 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
    margin: 10px 0;
  }
  .hero__content h2 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
    margin: 10px 0;
  }

  .hero__content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
  }

  .hero-headline {
    margin-top: 20px;
  }

  .actions {
    flex-direction: column;
    gap: 12px;
    padding: 25px 0;
    width: 100%;
  }

  .btn,
  .btn-ghost {
    width: 100%;
    padding: 12px 25px;
    font-size: 14px;
  }

  .btn svg,
  .btn-ghost svg {
    width: 24px;
  }

  /* Moving Cards - Mobile */
  .moving-cards-outer {
    flex-direction: column;
    gap: 15px;
  }

  .moving-cards {
    width: 100%;
    padding: 10px;
    max-height: 400px;
  }

  .hero-filter {
    width: 100%;
  }

  /* Section 2 */
  .section-2 {
    flex-direction: column;
  }

  .section-2-left {
    padding: 40px 15px;
    width: 100%;
    gap: 20px;
  }

  .section-2-left h1 {
    font-size: clamp(24px, 5vw, 32px);
    text-align: center;
  }
  .section-2-left h2 {
    font-size: clamp(24px, 5vw, 32px);
    text-align: center;
  }

  .section-2-left p {
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }

  .section-2-left-checkmarks {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .section-2-left-checkmarks > div {
    width: 100%;
  }

  .section-2-right {
    width: 100%;
    padding: 15px;
  }

  .section-2-img {
    min-height: 250px;
  }

  /* Section 3 */
  .section-3 {
    flex-direction: column;
  }

  .section-3-left,
  .section-3-right {
    width: 100%;
    padding: 30px 15px;
  }

  .section-3-left h1 {
    font-size: clamp(22px, 5vw, 28px);
    text-align: center;
  }
  .section-3-left h2 {
    font-size: clamp(22px, 5vw, 28px);
    text-align: center;
  }

  .section-3-left p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .section-3-left h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
  }

  .section-2-btn-box {
    display: flex;
    justify-content: center;
  }

  .btn-white-section {
    width: 100%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 14px;
  }

  .void {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .center-circle {
    width: 150px;
    height: 150px;
  }
  .section-3-right ul {
    outline: none;
  }

  .card-section-3 {
    width: 35%;
    padding: 12px 16px;
    font-size: 12px;
  }

  .model-name {
    font-size: 14px;
  }

  /* Section 4 */
  .section-4-header {
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
  }

  .section-4-header h1 {
    font-size: clamp(24px, 5vw, 32px);
  }
  .section-4-header h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .section-4 {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px 50px 15px;
  }

  .section-4-left {
    width: 100%;
    min-height: 250px;
  }

  .section-4-card {
    width: 100%;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .section-4-right {
    width: 100%;
    padding: 25px 20px;
    min-height: auto;
  }

  .section-4 h2 {
    font-size: clamp(20px, 4vw, 24px);
  }

  .section-4 p {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-text {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }

  .card-text {
    font-size: 14px;
  }

  .card-icon {
    width: 20px;
    height: 20px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0 20px 0;
  }

  .footer {
    padding: 0 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }

  .footer-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-right {
    width: 100%;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .quick-links {
    align-items: center;
  }

  .quick-links h4,
  .footer-right > div h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-right a,
  .footer-right p {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
    margin-top: 20px;
  }

  /* Grid adjustments */
  .grid--2cols {
    grid-template-columns: 1fr;
  }
  .grid--3cols {
    grid-template-columns: 1fr;
  }
  .grid--4cols {
    grid-template-columns: 1fr;
  }

  /* Container adjustments */
  .container {
    width: 95%;
    padding: 0 15px;
  }

  .container-full {
    width: 100%;
  }
}
/ *   S l i d e r   S e c t i o n   S t y l e s   * /  
 . s l i d e r - s e c t i o n   {   w i d t h :   1 0 0 % ;   p a d d i n g :   4 r e m   0 ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ;   o v e r f l o w :   h i d d e n ;   }  
 . s l i d e r - c o n t a i n e r   {   w i d t h :   8 0 % ;   h e i g h t :   1 0 0 0 p x ;   p o s i t i o n :   r e l a t i v e ;   b a c k g r o u n d - c o l o r :   # f f f f f f ;   b o r d e r - r a d i u s :   2 4 p x ;   b o x - s h a d o w :   0   1 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ;   o v e r f l o w :   h i d d e n ;   }  
 . s l i d e r - t r a c k   {   d i s p l a y :   f l e x ;   h e i g h t :   1 0 0 % ;   t r a n s i t i o n :   t r a n s f o r m   0 . 6 s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 5 ,   1 ) ;   }  
 . s l i d e   {   m i n - w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ;   t e x t - a l i g n :   c e n t e r ;   p a d d i n g :   2 r e m   1 5 % ;   }  
 . s l i d e   h 2   {   f o n t - s i z e :   3 . 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   # 1 1 1 8 2 7 ;   m a r g i n - b o t t o m :   1 . 5 r e m ;   }  
 . s l i d e   p   {   f o n t - s i z e :   1 . 2 5 r e m ;   l i n e - h e i g h t :   1 . 8 ;   c o l o r :   # 4 b 5 5 6 3 ;   m a x - w i d t h :   8 0 0 p x ;   }  
 . s l i d e r - b t n   {   p o s i t i o n :   a b s o l u t e ;   t o p :   5 0 % ;   t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;   b a c k g r o u n d - c o l o r :   # 1 1 1 8 2 7 ;   c o l o r :   # f f f ;   b o r d e r :   n o n e ;   b o r d e r - r a d i u s :   5 0 % ;   w i d t h :   6 4 p x ;   h e i g h t :   6 4 p x ;   f o n t - s i z e :   1 . 5 r e m ;   c u r s o r :   p o i n t e r ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ;   t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 3 s   e a s e ,   o p a c i t y   0 . 3 s   e a s e ,   v i s i b i l i t y   0 . 3 s ;   z - i n d e x :   1 0 ;   }  
 . s l i d e r - b t n : h o v e r   {   b a c k g r o u n d - c o l o r :   # 3 7 4 1 5 1 ;   }  
 . s l i d e r - b t n : d i s a b l e d   {   o p a c i t y :   0 ;   v i s i b i l i t y :   h i d d e n ;   p o i n t e r - e v e n t s :   n o n e ;   }  
 . p r e v - b t n   {   l e f t :   2 r e m ;   }  
 . n e x t - b t n   {   r i g h t :   2 r e m ;   }  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {   . s l i d e r - c o n t a i n e r   {   w i d t h :   9 5 % ;   }   . s l i d e   h 2   {   f o n t - s i z e :   2 . 5 r e m ;   }   . s l i d e   p   {   f o n t - s i z e :   1 . 1 r e m ;   }   . p r e v - b t n   {   l e f t :   1 r e m ;   w i d t h :   4 8 p x ;   h e i g h t :   4 8 p x ;   }   . n e x t - b t n   {   r i g h t :   1 r e m ;   w i d t h :   4 8 p x ;   h e i g h t :   4 8 p x ;   }   }  
 
