:root {

  --white: #ffffff;
  --black: #050505;
  --dark: #0f1115;
  --orange: #ec7d38;

  --gray-100: #f7f8fa;
  --gray-300: #dce1e8;
  --gray-500: #6e7785;
  --gray-700: #2b313b;

  --primary-gradient:
    linear-gradient(135deg, #d1d7e2, #ec7d38);

  --glass:
    rgba(255,255,255,0.08);

  --glass-border:
    rgba(255,255,255,0.15);

  --shadow-lg:
    0 30px 80px rgba(0,0,0,0.12);

  --shadow-md:
    0 10px 40px rgba(0,0,0,0.08);

  --radius-lg: 28px;
  --radius-md: 18px;

  --transition:
    all 0.35s ease;

  --max-width: 1280px;
}


/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}


/* GLOBAL */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

.section {
  padding: 140px 0;
}

.center-content {
  text-align: center;
}

.max-width-lg {
  max-width: 900px;
  margin-inline: auto;
}

.max-width-md {
  max-width: 720px;
  margin-inline: auto;
}

.bg-white {
  background: white;
}

.bg-gradient-light {

  background:
    radial-gradient(
      circle at top left,
      rgba(79,140,255,0.12),
      transparent 35%
    ),
    var(--gray-100);

}

.section-dark {
  background: var(--orange);
}

/* light and dark background gradiant options to change the colours*/

.section-dark-gradient {

  background:
    radial-gradient(
      circle at top,
      rgba(0, 0, 0, 0.22),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #582509,
      #e6783c
    );

}

.section-dark-gradient_B {

  background:
    
    linear-gradient(
      180deg,
      #e6783c,
      #000000
      
    );

}

.section-light-gradient {

  background:
    radial-gradient(
      circle at top,
      rgba(125,95,255,0.22),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #e7801f,
      #ffffff
    );

}
.light-text {
  color: white;
}

.light-text-soft {
  color: rgb(232, 241, 242);
}

.glass-panel {

  background: var(--glass);

  border:
    1px solid var(--glass-border);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

}

.responsive-image {
  border-radius: var(--radius-lg);
}


/* NAVBAR */

.navbar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 24px 0;

  transition: var(--transition);

}

.navbar.scrolled {

  padding: 12px 0;

  background:
    rgba(255,255,255,0.7);

  backdrop-filter: blur(20px);

  border-bottom:
    1px solid rgba(0,0,0,0.05);

}

.nav-container {

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  width: 100%;

}

.logo-wrapper {
  justify-self: start;

  display: flex;

  align-items: center;

  gap: 14px;

}

.logo {

  width: 125px;

  transition: var(--transition);

}

.navbar.scrolled .logo {
  width: 40px;
}

.logo-text {

  font-size: 1.0rem;

  font-weight: 700;

  color: white;

  transition: var(--transition);

}

.navbar.scrolled .logo-text {
  color: black;
}

.nav-menu {
  justify-self: center;
  display: flex;

  gap: 56px;

}

.nav-link {

  color:
    rgba(255,255,255,0.78);

  font-weight: 500;

  transition: var(--transition);

}

.navbar.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link:hover {
  color: white;
}

.navbar.scrolled .nav-link:hover {
  color: black;
}

.nav-buttons {
  justify-self: end;
  display: flex;

  gap: 12px;

}


/* MOBILE */

.mobile-toggle {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

}

.mobile-toggle span {

  width: 24px;
  height: 2px;

  background: white;

}

.mobile-menu {

  position: fixed;

  top: 80px;
  left: 0;

  width: 100%;

  background:
    rgba(255,255,255,0.95);

  backdrop-filter: blur(20px);

  padding: 24px;

  display: flex;

  flex-direction: column;

  gap: 18px;

  transform: translateY(-200%);

  transition: var(--transition);

}

.mobile-menu.active {
  transform: translateY(0);
}


/* HERO */

.hero {

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.06),
      transparent 45%
    );

}

.hero-content {

  position: relative;

  z-index: 2;

  text-align: center;

}

.eyebrow {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.1);

  color:
    rgba(255,255,255,0.8);

  margin-bottom: 28px;

}

.hero-title {

  font-size:
    clamp(3rem, 7vw, 6.5rem);

  line-height: 1;

  font-weight: 800;

  color: white;

  letter-spacing: -3px;

  max-width: 1200px;

  margin-inline: auto;

}

.hero-description {

  color:
    rgba(105, 105, 105, 0.72);

  max-width: 760px;

  margin: 32px auto;

  font-size: 1.15rem;

}

.hero-buttons {

  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;

}


/* BUTTONS */

.btn {

  padding: 14px 28px;

  border-radius: 999px;

  font-weight: 600;

  transition: var(--transition);

}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {

  background:
    var(--primary-gradient);

  color: white;

  box-shadow: var(--shadow-md);

}

.btn-secondary {

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.12);

  color: white;

}

.btn-glass {

  background:
    rgba(219, 99, 59, 0.244);

  border:
    1px solid rgba(0, 0, 0, 0.12);

  color: rgb(253, 250, 250);

  backdrop-filter: blur(20px);

}

.btn-large {

  padding: 18px 36px;

  font-size: 1rem;

}


/* TEXT */

.section-header {

  text-align: center;

  margin-bottom: 80px;

}

.section-tag {

  color: #edd6c5;

  font-weight: 700;

  letter-spacing: 2px;

  font-size: 0.85rem;

}

.section-title {

  font-size:
    clamp(2rem, 4vw, 4rem);

  line-height: 1.1;

  margin-top: 18px;

  font-weight: 800;

  letter-spacing: -2px;

}

.section-description {

  margin-top: 24px;

  color: var(--white);

  font-size: 1.05rem;

}

.section-description_B {

  margin-top: 24px;

  color: var(--dark);

  font-size: 1.05rem;

}

.card-title {

  font-size: 1.4rem;

  margin-bottom: 14px;

}

.card-text {
  color: var(--gray-500);
}


/* FEATURE GRID */

.feature-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;

}

.feature-card {

  background: white;

  border-radius: var(--radius-lg);

  padding: 42px;

  box-shadow: var(--shadow-md);

  transition: var(--transition);

}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  
  color: #dce1e8;
  font-size: 245%;
  width: 60px;
  height: 60px;

  border-radius: 18px;

  background:
    var(--primary-gradient);

  margin-bottom: 28px;

}


/* SHOWCASE */

.image-showcase {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;

}

.image-wrapper {

  padding: 18px;

  border-radius: var(--radius-lg);

}


/* FOOTER */

.footer {

  background: #090b10;

  color: white;

  padding-top: 100px;

}

.footer-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 40px;

  padding-bottom: 80px;

}

.footer-logo {

  font-size: 1.8rem;

  margin-bottom: 18px;

}

.footer-text {

  color:
    rgba(255,255,255,0.65);

}

.footer-heading {
  margin-bottom: 18px;
}

.footer-link {

  display: block;

  color:
    rgba(255,255,255,0.68);

  margin-bottom: 12px;

}

.footer-link:hover {
  color: white;
}

.footer-bottom {

  border-top:
    1px solid rgba(255,255,255,0.08);

  text-align: center;

  padding: 24px;

  color:
    rgba(255,255,255,0.55);

}


/* ANIMATIONS */

.fade-up {

  opacity: 0;

  transform: translateY(50px);

  transition:
    opacity 1s ease,
    transform 1s ease;

}

.fade-up.show {

  opacity: 1;

  transform: translateY(0);

}


/* RESPONSIVE */

@media (max-width: 1024px) {

  .feature-grid,
  .image-showcase,
  .footer-grid {

    grid-template-columns: 1fr;

  }

  .nav-menu,
  .nav-buttons {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

}

@media (max-width: 768px) {

  .hero-buttons {

    flex-direction: column;

    align-items: center;

  }

  .btn-large {

    width: 100%;

    max-width: 320px;

  }

}

.hub-iframe iframe
 {
    width: 100%;
}


/* ========================================
   AUTO-MOVING LOGO CAROUSEL
======================================== */

.logo-carousel-section {

  position: relative;

  padding: 100px 0;

  background: #1a1b1f;

  overflow: hidden;

}


/* HEADER */

.logo-carousel-header {

  text-align: center;

  margin-bottom: 50px;

}

.logo-carousel-title {

  color: white;

  font-size:
    clamp(2rem, 4vw, 3.5rem);

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -2px;

  margin-top: 15px;

}


/* CAROUSEL WINDOW */

.logo-carousel {

  width: 100%;

  overflow: hidden;

  position: relative;

}


/* FADE EDGES */

.logo-carousel::before,
.logo-carousel::after {

  content: "";

  position: absolute;

  top: 0;

  width: 180px;

  height: 100%;

  z-index: 2;

  pointer-events: none;

}

.logo-carousel::before {

  left: 0;

  background:
    linear-gradient(
      to right,
      #1a1b1f,
      transparent
    );

}

.logo-carousel::after {

  right: 0;

  background:
    linear-gradient(
      to left,
      #1a1b1f,
      transparent
    );

}


/* MOVING TRACK */

.logo-track {

  display: flex;

  width: max-content;

  gap: 20px;

  animation:
    logoCarouselMove 35s linear infinite;

}


/* INDIVIDUAL BOX */

.logo-card {

  width: 220px;

  height: 120px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  padding: 24px;

  border-radius: 18px;

  background: #24262b;

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;

}


/* LOGO */

.logo-card img {

  width: 42px;

  height: 42px;

  object-fit: contain;

}


/* COMPANY NAME */

.logo-card span {

  color:
    rgba(255,255,255,0.85);

  font-size: 0.95rem;

  font-weight: 600;

  white-space: nowrap;

}


/* HOVER */

.logo-card:hover {

  transform:
    translateY(-6px);

  background: #2b2e34;

  border-color:
    rgba(255,255,255,0.18);

}


/* PAUSE WHEN HOVERING */

.logo-carousel:hover .logo-track {

  animation-play-state: paused;

}


/* ANIMATION */

@keyframes logoCarouselMove {

  from {

    transform:
      translateX(0);

  }

  to {

    transform:
      translateX(
        calc(-50% - 10px)
      );

  }

}


/* MOBILE */

@media (max-width: 768px) {

  .logo-carousel-section {

    padding: 80px 0;

  }

  .logo-card {

    width: 180px;

    height: 100px;

  }

  .logo-card img {

    width: 34px;

    height: 34px;

  }

  .logo-card span {

    font-size: 0.85rem;

  }

  .logo-carousel::before,
  .logo-carousel::after {

    width: 70px;

  }

}

/*Andrew Ukken 8/8/2026 */