@charset "UTF-8";
:root {
  --black: black;
  --default: #dc5f00;
  --transparent: #fff0;
  --white: white;
  --border-color: #292929;
  --grey: #1e1e1e;
/* ===== POWERPR EDITORIAL STYLES ===== */
}
section h1,
article h1,
aside h1,
nav h1 {
  font-size: 2.5rem; /* or any size you prefer */
}


/* Base Layout */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 48px;
  height: 48px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.services-item a.h2-heading {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease;
}

.services-item a.h2-heading:hover {
  color: #f97316; /* Optional: orange hover color */

}
.powerpr-editorial-modern {
  background-color: #000;
  padding: 4rem 2rem;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}

.powerpr-glass-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Typography */
.powerpr-title-modern {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

.powerpr-subtitle-modern {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 3rem;
}

/* Editorial Blocks */
.powerpr-article-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.powerpr-article-modern:nth-child(even) {
  flex-direction: row-reverse;
}

.powerpr-text-modern {
  flex: 1 1 500px;
  min-width: 280px;
}

.powerpr-text-modern h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #f97316;
}

.powerpr-text-modern p {
  margin-bottom: 1rem;
  color: #eee;
  font-size: 1rem;
  line-height: 1.7;
}

blockquote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-left: 4px solid #f97316;
  color: #fefefe;
  margin: 1rem 0;
}

blockquote span {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #f97316;
}

/* Images */
.powerpr-image-modern img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  object-fit: cover;
}

.powerpr-image-modern.large img {
  max-height: 450px;
}

.powerpr-image-modern.medium img {
  max-height: 450px;
}

/* Signature Block */
.signature-block-modern {
  margin-top: 2rem;
}

.signature-block-modern .name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #fff;
}

.signature-block-modern .role {
  font-size: 0.95rem;
  color: #ccc;
}

.signature-white {
  margin-top: 0.5rem;
  max-width: 180px;
  filter: brightness(0) invert(1);
}

/* CTA */
.powerpr-cta-modern {
  text-align: center;
  margin-top: 3rem;
}

.powerpr-cta-modern h3 {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.powerpr-cta-modern p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-modern {
  background-color: #f97316;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-modern:hover {
  background-color: #ea580c;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 1s ease-in forwards;
  opacity: 0;
}

.slide-right {
  animation: slideRight 1s ease-in forwards;
  opacity: 0;
}

.slide-left {
  animation: slideLeft 1s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .powerpr-article-modern {
    flex-direction: column !important;
    text-align: center;
  }

  .powerpr-image-modern img {
    max-width: 100%;
    height: auto;
  }
}

/* ============ about us (cs-) ============ */
/* Layout & typography (kept minimal; adjust to your system) */


  /* ==== SEO banner wrapper ONLY ==== */
.dp-seo-hero{
  position: relative;
  padding: clamp(28px, 6vw, 56px) 0;
  background: transparent;
}
.dp-seo-hero svg{
  display: block;
  width: min(1280px, 96vw);
  height: auto;
  margin-inline: auto;
  overflow: visible;
}


/* a11y helper (optional) */
.visually-hidden{
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
/* ===== WebTech Catalog (new namespace) ===== */

/* ===== SEO HERO (no background) ===== */
/* keep styles scoped to this SVG */





/* a11y helper */
.visually-hidden{
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

.webtech-section {
  padding: 48px 0;
  background: transparent; /* plays nice with your dark theme */
}

.webtech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.webtech-title {
  margin: 0 0 6px;
  text-align: center;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: .3px;
}

.webtech-subtitle {
  margin: 0 0 26px;
  text-align: center;
  color: #cfcfcf;
  font-size: 15.5px;
  opacity: .9;
}

/* Responsive auto-fit grid */
.webtech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Glass cards */
.webtech-card {
  display: grid;
  grid-template-columns: 72px 1fr;  /* bigger icon | text */
  align-items: start;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.webtech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .45);
  border-color: rgba(255, 255, 255, .22);
}

.webtech-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: contain;
  padding: 12px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .05);
}

.webtech-text h3 {
  margin: 2px 0 6px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #ffb46b;         /* Dubai Prod accent */
  text-transform: none;
}

.webtech-text p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14.5px;
  line-height: 1.55;
  opacity: .95;

  /* Limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Small screens */
@media (max-width: 520px) {
  .webtech-card {
    grid-template-columns: 64px 1fr;
    padding: 16px;
  }

  .webtech-icon {
    width: 64px;
    height: 64px;
    padding: 10px;
  }
}

.youtube-style-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}


.youtube-video-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  width: 800px; /* Increased width */
  max-width: 95%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

.youtube-embed-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px 8px 0 0;
}

.youtube-info {
  padding: 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.youtube-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.youtube-header .profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff0000; /* YouTube red border */
}

.youtube-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.youtube-actions {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.youtube-actions button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.youtube-actions button:hover {
  background: #ff0000;
}

.youtube-likes {
  font-size: 1rem;
  color: #ff9999;
  margin-bottom: 8px;
}

.youtube-caption {
  font-size: 0.95rem;
  color: #ccc;
  .youtube-section-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;                 /* adjust for your theme */
  letter-spacing: .3px;
}

.youtube-section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg,#ff6a00,#ffc46b);
  border-radius: 2px;
}

}
 body {
    margin: 0;
    body{
  background-color: transparent !important;
}

    font-family: 'Courier New', monospace;
    color: #E5EFEB;
    }

    #banner {
      display: flex;
      height: 400px;
      width: 100%;
      overflow: hidden;
       background: transparent !important;
  border-bottom: 0 !important;
      position: relative;
    }

    #code-container {
      width: 65%;
      position: relative;
      overflow: hidden;
    }

    .scrolling-code {
      position: absolute;
      bottom: 0;
      animation: scrollUp 25s linear infinite;
    }

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

    .code-line {
      white-space: nowrap;
      font-size: 18px;
      line-height: 28px;
      padding-left: 20px;
    }

    .keyword { color: #ff79c6; }
    .function { color: #8be9fd; }
    .string { color: #f1fa8c; }
    .comment { color: #6272a4; }
    .number { color: #bd93f9; }

    #text-box {
      width: 35%;
      padding: 40px 20px;
      display: flex;
      align-items: center;
      color: #ffffff;
      font-size: 30px;
      position: relative;
    }

    .typing-text {
      border-right: 2px solid #00ff99;
      white-space: nowrap;
      overflow: hidden;
      animation: typing 8s steps(60, end) infinite, blink-caret 1s step-end infinite;
    }

    @keyframes typing {
      0% { width: 0; }
      50% { width: 100%; }
      100% { width: 0; }
    }

    @keyframes blink-caret {
      0%, 100% { border-color: transparent; }
      50% { border-color: #00ff99; }
    }
/* ===========================
/* Step badge inside card (works with your existing stacking-card styles) */
.step-badge{
  display:inline-grid;
  place-items:center;
  width:46px; height:46px;
  border-radius:50%;
  background:#0d0d0d;
  color:#fff;
  font-weight:800;
  letter-spacing:.4px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 8px 22px rgba(0,0,0,.35), 0 0 0 3px rgba(255,255,255,.06) inset;
  margin-bottom:10px;
}
.card-text h2{ margin-top:6px; }

   Social Approach — Glass Cards
   /* ===== Dubai Prod CGI Hero (conflict-free) ===== */
   
.dp-cgi-hero{
  position: relative;
  background: transparent;
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}

/* Soft tint to keep text readable on dark/visual backgrounds */
.dp-hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(130% 100% at 0% 50%, rgba(0,0,0,.55), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.15) 60%, transparent);
  z-index: 0;
}

.dp-hero-wrap{
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;                   /* equal left/right space */
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* text | image (image on right) */
  gap: 32px;
  align-items: center;
}

.dp-hero-title{
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: .2px;
}

.dp-hero-subtitle{
  max-width: 62ch;
  margin: 0 0 18px;
  line-height: 1.7;
  opacity: .92;
}

.dp-hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;                   /* keeps one line on wide, wraps if needed */
}
.dp-cgi-hero .btn{
  height: 44px;
  padding: 0 18px;
  line-height: 1;
}

/* Right image */
.dp-hero-media{
  margin: 0;
  justify-self: end;                 /* keeps it hugged to the right */
  width: 100%;
  max-width: 560px;
}
.dp-hero-media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;               /* keep PNG proportions clean */
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .dp-hero-wrap{
    grid-template-columns: 1fr;      /* stack */
    gap: 24px;
    text-align: left;
  }
  .dp-hero-media{
    justify-self: center;
    max-width: 520px;
  }
}

@media (max-width: 480px){
  .dp-hero-wrap{ padding: 0 20px; }
  .dp-hero-title{ font-size: clamp(28px, 8vw, 36px); }
  .dp-hero-subtitle{ font-size: 16.5px; line-height: 1.85; }
  .dp-hero-cta{ gap: 10px; }
}

   /* ===== layout ===== */
.dp-services2{
  background:#fff;
  color:#0b0b0b;
  padding:64px 0;
}
.dp-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.dp-title{
  text-align:center;
  font-size:clamp(26px,3.6vw,40px);
  font-weight:800;
  margin:0 0 6px;
}
.dp-subtitle{
  text-align:center;
  margin:0 0 32px;
  color:#444;
  font-size:16.5px;
}

/* 2 rows, 3 columns -> responsive */
.dp-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px 32px; /* rows, columns */
}
@media (max-width: 992px){
  .dp-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 600px){
  .dp-grid{ grid-template-columns:1fr; }
}

/* ===== card ===== */
.dp-card{
  display:grid;
  grid-template-columns:84px 1fr;   /* icon | text */
  gap:16px;
  align-items:center;
  background:#fafafa;
  border:1px solid #ececec;
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}
.dp-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 46px rgba(0,0,0,.10);
}

/* icon bubble with slide-in animation */
.dp-icon {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0e0e0e;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .15), 0 0 0 2px #ffcf99 inset;
  overflow: hidden;

  /* Make them visible from the start */
  opacity: 1; 
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), opacity .45s ease;
}

.dp-icon img{ width:44px; height:44px; object-fit:contain; filter:invert(1); }

.dp-card .dp-text h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:800;
  letter-spacing:.4px;
  color:#ff6a00; /* Dubai Prod accent */
  text-transform:uppercase;
}
.dp-card .dp-text p{
  margin:0;
  color:#333;
  line-height:1.65;
  font-size:15.5px;
}

/* slide directions */
.dp-card .dp-icon[data-dir="left"]{ transform:translateX(-36px); }
.dp-card .dp-icon[data-dir="right"]{ transform:translateX(36px); }

/* when in view */
.dp-card.is-inview .dp-icon{
  opacity:1;
  transform:translateX(0);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .dp-icon{ transition:none; transform:none !important; opacity:1 !important; }
  .dp-card{ transition:none; }
}
/* --- Transparent section + dark theme text --- */
.dp-services2{
  background: transparent !important;
  color: #fff;
}
.dp-title{ color:#fff; }
.dp-subtitle{ color:#c8c8c8; }

/* --- Glass cards on dark background --- */
.dp-card{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

/* Icon tile stays readable on dark */
.dp-icon{
  background: rgba(0,0,0,0.7) !important;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 0 2px rgba(255,255,255,0.08) inset;
}
.dp-icon img{ filter: invert(1) brightness(1); }

/* Text colors inside cards */
.dp-card .dp-text h3{ color:#ff6a00; }
.dp-card .dp-text p{ color:#e6e6e6; }
/* Strong, lightweight particles behind cards */
.dp-services2 { position: relative; }
.dp-services2 .dp-container { position: relative; z-index: 1; }
/* Force PNG icons to render white */
.dp-card .dp-icon img{
  opacity: 1 !important;
  filter: brightness(0) invert(1) contrast(1.2) !important;
  /* optional: sharpen thin lines a bit */
  image-rendering: -webkit-optimize-contrast;
}


   /* =========================
   Social Approach — screenshot style
   ========================= */
/* ===== Section & container (side gaps) ===== */
.social-approach-section {
  padding-block: 64px;
  color: #fff;
}

.social-approach-section .container {
  max-width: 1200px;       /* controls overall width */
  padding-inline: 24px;     /* left/right gap */
}

/* ===== 3/2/1 grid ===== */
.social-grid-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;                /* space between cards */
  margin: 0;
}

@media (max-width: 992px) {
  .social-grid-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .social-grid-row { grid-template-columns: 1fr; gap: 16px; }
}

/* neutralize bootstrap column wrappers */
.social-grid-row > [class*="col-"] {
  width: auto !important;
  flex: unset !important;
  padding: 0 !important;
  display: block !important;
}

/* ===== Glass card ===== */
.why-box{
  --accent: #ffb46b;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.36);
  padding: 24px;                    /* internal spacing */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;                /* keep cards from being too tall */
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}

/* ===== Number INSIDE card ===== */
.number-circle{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: transparent;
  color: #fff; font-weight: 800; letter-spacing: .4px;
  border: transparent solid rgba(255,255,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.35), 0 0 0 3px rgba(255,255,255,.06) inset;
  margin-bottom: 12px;              /* sits inside, above title */
}

/* Title & text */
.why-box h5{
  margin: 6px 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--accent);
}
.why-box p{
  margin: 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.7;
  color: #e8e8e8;
}

/* ===== Mobile sizing ===== */
@media (max-width: 768px){
  .social-approach-section { padding-block: 48px; }
  .why-box { border-radius: 16px; padding: 18px; min-height: 0; }
  .number-circle { width: 44px; height: 44px; font-size: 14px; }
  .why-box h5 { font-size: 17px; }
  .why-box p  { font-size: 15.5px; line-height: 1.65; max-width: none; }
}
/* Center the section container */
.social-approach-section .container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;   /* left/right gap */
  padding-right: 28px;
}

/* Kill Bootstrap's row offsets + use grid */
.social-grid-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.social-grid-row.row {
  margin-left: 0 !important;
  margin-right: 0 !important;  /* stops the left shift */
}

/* Responsive columns */
@media (max-width: 992px) {
  .social-grid-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .social-grid-row { grid-template-columns: 1fr; }
}


/* Section base (keeps your fixed bg, adds readable overlay) */


.reels-section {
  background: #000;
  padding: 60px 20px;
  color: #fff;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.reel-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reel-card video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.reel-info {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.reel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 8px;
}

.profile-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ff6600;
}

.reel-actions {
  display: flex;
  gap: 15px;
  font-size: 18px;
  margin: 10px 0;
}

.reel-actions button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.reel-likes {
  font-size: 14px;
  color: #ff6600;
  margin-bottom: 6px;
}

.reel-caption {
  font-size: 14px;
  color: #ddd;
}

/* Accessible helper (hides text visually but keeps for screen readers) */
/* A11y helper */
.visually-hidden {
  position: absolute !important; height:1px; width:1px; overflow:hidden;
  clip: rect(1px,1px,1px,1px); white-space:nowrap;
}

/* Section */
.cgi-marketing-section {
  background: #000;
  padding-block: 64px;
  color: #fff;
}

/* Two-column layout: give the RIGHT side more space + a bit more right padding */
.cgi-marketing-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 72px;                 /* more space on the right */
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;/* image | wider text */
  align-items: center;
  column-gap: 64px;
}

/* Left image */
.cgi-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.cgi-media img { display:block; width:100%; height:auto; }

/* Glass card on the right */
.cgi-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 24px 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,.42);
  max-width: 62ch;                    /* comfortable line length */
}

.cgi-title {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.cgi-intro,
.cgi-points li,
.cgi-cta {
  font-size: 17.5px;
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: #e9e9e9;
  margin: 0 0 10px;
}

/* Softer emphasis */
.cgi-points strong { font-weight: 600; color: #fff; }

.cgi-points {
  margin: 6px 0 10px;
  padding-left: 1.1em;
  display: grid;
  gap: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .cgi-marketing-container {
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding-right: 24px;              /* reduce right padding on tablet */
  }
  .cgi-media { order: -1; }           /* image above card */
  .cgi-card { max-width: none; }
}

@media (max-width: 480px) {
  .cgi-marketing-section { padding-block: 48px; }
  .cgi-marketing-container { column-gap: 24px; }
  .cgi-card { padding: 18px; border-radius: 14px; }
  .cgi-intro, .cgi-points li, .cgi-cta { font-size: 16.5px; line-height: 1.85; }
}

/* ===== Readability upgrades for the CGI marketing section ===== */

.cgi-marketing-container {
  column-gap: 72px; /* a bit more space between image and text */
}

.cgi-text {
  max-width: 62ch;                 /* limit line length for comfort */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.cgi-title {
  font-weight: 700;                 /* lighter than 800 */
  letter-spacing: 0.2px;            /* a touch more air */
  margin: 0 0 18px;
}

.cgi-intro,
.cgi-benefits li,
.cgi-cta {
  font-size: 17.5px;
  line-height: 1.8;                 /* more vertical spacing */
  letter-spacing: 0.2px;            /* less “crowded” look */
  word-spacing: 0.02em;
  color: #e9e9e9;
}

/* Softer, clearer emphasis (not heavy bold) */
.cgi-benefits strong,
.cgi-intro strong,
.cgi-cta strong {
  font-weight: 600;                 /* from 700/800 -> 600 */
  color: #ffffff;                   /* clear but not overpowering */
}

/* List spacing */
.cgi-benefits {
  gap: 12px;                        /* more space between bullets */
  padding-left: 1.2em;
}

/* Optional: slightly larger first paragraph for hierarchy */
.cgi-intro { font-size: 18px; }

/* --- Responsive tweaks --- */
@media (max-width: 992px) {
  .cgi-marketing-container { column-gap: 40px; }
  .cgi-text { max-width: none; }    /* use full width when stacked */
}

@media (max-width: 480px) {
  .cgi-marketing-section { padding-block: 48px; }
  .cgi-marketing-container { padding-inline: 16px; }
  .cgi-title { font-size: clamp(24px, 7vw, 32px); }
  .cgi-intro,
  .cgi-benefits li,
  .cgi-cta { font-size: 16.5px; line-height: 1.85; }
}

/* === Spline (3D) Section — Full CSS === */
/* Section */
.ba-section { padding: 56px 20px; background:#000; color:#fff; }
.ba-title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; text-align: center; margin: 0 0 22px; }

/* Wrapper */
.ba-wrapper{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;          /* keep it banner-like; adjust as needed */
  border-radius: 18px;
  overflow: hidden;
  background:#111;
  user-select: none;
  touch-action: none;          /* enables custom touch drag */
}

/* Images */
.ba-img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  pointer-events:none;
}
.ba-img-before{ clip-path: inset(0 50% 0 0); } /* left half visible initially */

/* Labels */
.ba-label{
  position:absolute; top:14px; 
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  border:1px solid rgba(255,255,255,.2);
  color:#fff; font-size:14px; letter-spacing:.3px;
  padding:6px 10px; border-radius:999px;
  pointer-events:none;
}
.ba-label-left{ left:14px; }
.ba-label-right{ right:14px; }

/* Handle */
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%;
  width:0; transform: translateX(-50%);
  cursor: ew-resize; outline:none;
}
.ba-handle-line{
  position:absolute; top:0; bottom:0; left:50%;
  width:2px; background: linear-gradient(#fff,#ff6a00,#fff);
  opacity:.9; transform: translateX(-50%);
}
.ba-handle-dot{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%, -50%);
  width:22px; height:22px; border-radius:50%;
  background:#fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}

/* Hover hint */
.ba-wrapper:hover .ba-handle-dot{ box-shadow: 0 0 0 6px rgba(255,255,255,.35); }

/* Mobile tweaks */
@media (max-width: 600px){
  .ba-section{ padding: 40px 14px; }
  .ba-label{ font-size:12px; top:10px; }
  .ba-handle-dot{ width:18px; height:18px; }
  .ba-wrapper{ border-radius:14px; }
}


/* ==== Spline Section (text left, canvas right, equal side space) ==== */

/* ==== Team Spline Section ==== */
.team-spline-section {
  background: #000;
  padding-block: 64px;
}

.team-spline-content {
  display: grid;
  grid-template-columns: 1fr 1.35fr; /* text | spline */
  align-items: center;
  column-gap: 120px; /* increased gap between text and spline */
  max-width: 1580px;
  margin-inline: auto;
  padding-inline: 30px; /* reduced from 60px → less space on left/right edges */
}

.team-text {
  color: #fff;
}

.team-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.team-description {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
}

/* Spline embed column */
.team-spline-embed {
  height: clamp(520px, 62vh, 780px);
  display: flex;
  align-items: stretch;
}

.team-spline-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .team-spline-content {
    grid-template-columns: 1fr;
    row-gap: 24px;
    text-align: center;
    padding-inline: 20px; /* even less padding on mobile */
  }
  .team-title { font-size: 32px; }
  .team-spline-embed { height: 500px; }
}

@media (max-width: 480px) {
  .team-title { font-size: 28px; }
  .team-description { font-size: 16px; }
  .team-spline-embed { height: 420px; }
}



.team-section-grid {
  padding: 80px 50px; /* reduced from 80px 40px */
  background: transparent;
  text-align: center;
}

.team-section-grid .team-title {
  font-size: 2rem; /* smaller title */
  color: white;
  margin-bottom: 50px; /* reduced space below title */
   padding: 80px 50px 100px;
}

.team-rows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px; /* less spacing between cards */
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 10px; /* reduced padding */
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.team-card img {
  width: 60%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px; /* less space below image */
}

.team-card h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.team-card p {
    font-size: 16px;
    color: #ccc;
    border-bottom: 1px solid #ff6a00;
    padding-bottom: 20px;
}

/* Mobile view adjustments */
/* Mobile: horizontal snap carousel, 1 card visible */
@media (max-width: 768px) {
  .team-section-grid {
    padding: 40px 16px;
    text-align: left;
  }

  .team-title {
    margin-left: 4px;
    margin-bottom: 16px;
  }

  .team-rows {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;            /* start snap where padding starts */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .team-card {
    flex: 0 0 calc(100% - 32px);     /* show exactly one card (full width minus padding) */
    max-width: 520px;                 /* optional cap for large phones/tablets */
    scroll-snap-align: center;        /* center each card on stop */
    scroll-snap-stop: always;
    width: auto;                      /* ignore desktop width */
    padding: 12px;
    border-radius: 12px;
  }

  .team-card img {
    width: 100%;                      /* fill the card */
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
  }

  .team-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .team-card p {
    font-size: 12px;
    padding-bottom: 6px;
  }

  /* Hide scrollbars */
  .team-rows::-webkit-scrollbar { display: none; }
  .team-rows { scrollbar-width: none; }
}



/* ===== about us (unique: cs-*) ===== */
.stacking-card {
  position: sticky;
  top: 100px;
  width: 80%;
  margin: 0 auto;
  min-height: 300px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc(var(--i) * 80px));
  z-index: calc(var(--i) + 10); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s, z-index 0.4s;
  cursor: pointer;
}

.card-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.card-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-text {
  flex: 1;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.card-text p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.6;

}
@media (max-width: 768px){
  .stacking-card{
    top: 72px;                      /* less sticky offset */
    width: 92%;
    min-height: 260px;              /* shorter on mobile */
    transform: translateY(calc(var(--i) * 48px));
  }

  .card-content{
    display: block;                 /* single column */
  }

  .card-image{
    display: none;                  /* remove image on mobile */
  }

  .card-text{
    padding: 20px 18px;
    max-width: none;                /* allow natural width */
    text-align: left;
  }

  .card-text .card-desc{
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Extra small phones */
@media (max-width: 420px){
  .stacking-card{ min-height: 236px; }
  .card-text{ padding: 18px 16px; }
  .card-text .card-desc{ font-size: 15px; }
}
@media (max-width: 768px) {
  section[style*="height: 150px"] {
    display: none !important;
  }
}



/* ===== Case Studies Carousel (unique: cs-*) ===== */
.cs-carousel {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: clamp(28px, 6vw, 56px) 0;
}

.cs-inner.full-width {
  max-width: none;
  width: 100%;
  padding: 0 clamp(16px, 3vw, 32px);
}

.cs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cs-track::-webkit-scrollbar { display: none; }
.cs-track.dragging { cursor: grabbing; }

/* Glass cards */
.cs-card {
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cs-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.cs-media { position: relative; aspect-ratio: 11/15; margin: 0; overflow: hidden; }
.cs-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* "+" button (as real <button>) */
.cs-plus {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #0f1215;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.7);
  font-size: 28px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
  border: 0;
  cursor: pointer;
}
.cs-plus:hover { transform: scale(1.06); background: #fff; }

.cs-body { padding: 16px 16px 18px; }
.card-title { margin: 0 0 6px; font-weight: 700; font-size: 20px; line-height: 1.2; }
.cs-card-meta { margin: 0; color: #d0d0d0; font-size: 14px; letter-spacing: .3px; }
.cs-hint { margin-top: 10px; color: rgba(255,255,255,.7); font-size: 12px; }

/* ===== JS-controlled Modal ===== */
.cs-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
}
.cs-modal.is-open { display: grid; }

.cs-modal__dialog {
  position: relative;
  width: min(94vw, 1400px);
  height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cs-modal__dialog iframe { width: 100%; height: 100%; border: 0; }

.cs-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.cs-modal__close:hover { background: rgba(255,255,255,.25); }

body.modal-open { overflow: hidden; }

/* Responsive columns */
@media (max-width: 960px) { .cs-track { grid-auto-columns: 72%; } }
@media (max-width: 560px) { .cs-track { grid-auto-columns: 86%; } .cs-card { min-height: 300px; } }


/* ============ HERO ============ */
.hero {
  height: 600px; /* set height */
  display: flex;
  align-items: center; /* vertical center .hero__inner */
  justify-content: center; /* optional, horizontal centering */
  padding: clamp(16px, 3vw, 32px);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.45) 0%,   /* was 0.75 → lighter */
    rgba(0,0,0,0.25) 40%,  /* was 0.40 → lighter */
    rgba(0,0,0,0.05) 100%  /* was 0.15 → lighter */
  );
}
.hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(16px, 3vw, 32px);
  position: relative;
  z-index: 2;
}

/* Content column: left gutter + fixed readable width */
.hero__content {
  padding-left: clamp(50px, 12vw, 120px);
  max-width: 720px;
  color: #fff;
  text-align: left;
  margin-top: 70px;
}

/* Title & paragraph already left-aligned; keep them tight */
.hero__title{
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .2px;
  font-size: clamp(34px, 5vw, 64px);
}

.hero__subtitle{
    margin: 0 0 28px;
    color: #e9e9e9;
    font-size: clamp(14px, 1.6vw, px);
    line-height: 2;
	font-weight: 200;
}

/* Optional: smaller left gutter on very small screens */

.hero__cta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
  backdrop-filter: blur(10px);           /* glass blur */
  -webkit-backdrop-filter: blur(10px);   /* Safari support */
  color: #fff;                           /* white text */
  border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  
  /* Hide subtitle on mobile */
    .hero__subtitle--hero-only {
    display: none;
  }
}

/* ===== Hero Section ===== */

/* Adjust video focal point */
.hero__video {
  object-position: 80% center;
}

/* Move entire content block up */
.hero {
  align-items: flex-start; /* instead of center */
}

.hero__inner {
  padding-top: 20px; /* control vertical spacing from top */
}

.hero__content {
  margin-left: 0px;
  max-width: 85%;
}

.hero__subtitle--hero-only {
  max-width: 620px;  /* control line length */
  line-height: 1.6;  /* improve readability */
}

/* Base button styles */
/* ===== Hero Section ===== */

/* Adjust video focal point */
.hero__video {
  object-position: 80% center;
}

/* Move entire content block up */
.hero {
  align-items: flex-start;
}

.hero__inner {
  padding-top: 20px;
}

.hero__content {
  margin-left: 0px;
  max-width: 85%;
}

.hero__subtitle--hero-only {
  max-width: 620px;
  line-height: 1.6;
}

/* Base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 44px;
  font-size: 16px;
  border-radius: 12px;
  white-space: nowrap;
  line-height: 1;
}

/* CTA button container */
.hero__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap; /* Force horizontal layout */
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .hero__cta {
    gap: 12px;
    flex-wrap: wrap; /* allow wrapping if buttons too long */
  }
  .btn {
    height: 42px;
    padding: 0 16px;
    font-size: 15px;
  }
}

/* Mobile: two buttons side-by-side or stacked */
@media (max-width: 480px) {
  .hero__content {
    max-width: 92%;
  }
  .hero__cta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* side-by-side */
    gap: 10px;
  }
  .btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  .hero .hero__cta {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap !important;   /* never wrap */
  width: 100%;
}

.hero .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;                    /* allow both to share a row */
  min-width: 0;                   /* prevent overflow forcing wrap */
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;            /* keep text on one line */
  overflow: hidden;               /* if still too tight */
  text-overflow: ellipsis;        /* … instead of wrapping */
}

/* If your button label is inside a span */
.hero .btn > span { white-space: nowrap; }

/* Tighten further on very narrow phones */
@media (max-width: 420px) {
  .hero .hero__cta { gap: 8px; }
  .hero .btn {
    padding: 0 10px;
    height: 42px;
    font-size: 15px;
  }
}

/* Absolute last resort: shrink text slightly if two still can't fit */
@media (max-width: 360px) {
  .hero .btn { font-size: 14px; }
}
}


/* Hover state */
.btn--primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}


.svg-pr-wrapper svg {
  margin-top: -150px !important; /* force override if needed */
}


/* Make SVG responsive */
.svg-pr-wrapper svg {
  width: 100%;
  height: auto;
  max-height: 1000px;
  display: block;
  margin: 0 auto;
}

/* Hover styles for text inside SVG */
.svg-pr-wrapper svg text {
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .svg-pr-wrapper svg {
    margin-top: 40px !important; /* push SVG down */
  }
}
@media (max-width: 768px) {
  .svg-subtitle{
    display: none !important;
  }
}

.svg-pr-wrapper svg text:hover {
  fill: orange;
  filter: drop-shadow(0 0 10px orange);
	/* Make SVG responsive */
}
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkcount {
  color: #3898ec;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  min-width: 18px;
  height: 18px;
  margin-left: 8px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.w-commerce-commercecartcontainerwrapper {
  z-index: 1001;
  background-color: #000c;
  position: fixed;
  inset: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% auto auto 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% 0 auto auto;
}

.w-commerce-commercecartcontainer {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px #00000040;
}

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-commercecartheading {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.w-commerce-commercecartform {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecartlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 12px 24px;
  overflow: auto;
}

.w-commerce-commercecartitem {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecartiteminfo {
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  border-top: 1px solid #e6e6e6;
  flex-direction: column;
  flex: none;
  padding: 16px 24px 24px;
  display: flex;
}

.w-commerce-commercecartlineitem {
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  display: flex;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  height: 38px;
  min-height: 30px;
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-bottom: 8px;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercequickcheckoutgoogleicon, .w-commerce-commercequickcheckoutmicrosofticon {
  margin-right: 8px;
  display: block;
}

.w-commerce-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecartemptystate {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.w-commerce-commercecarterrorstate {
  background-color: #ffdede;
  flex: none;
  margin: 0 24px 24px;
  padding: 10px;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commercecheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercelayoutcontainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutshippingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  flex-direction: row;
  display: flex;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  margin-left: 8px;
  font-weight: 400;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercelayoutsidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commerceorderconfirmationcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
  margin-bottom: 20px;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }

  .w-commerce-commercelayoutcontainer {
    flex-direction: column;
    align-items: stretch;
  }

  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown, .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commerceaddtocartquantityinput, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }
}

body {
  background-color: var(--black);
  color: #fff;
  cursor: none;
  background-image: url('../images/hero-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: Clashdisplay, sans-serif;
  font-size: 22px;
  line-height: 28px;
}

h2 {
    margin-top: 120px;
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 28px;
}

p {
    margin-bottom: 0;
    line-height: 20px;
    text-align: left;
}

blockquote {
  border-left: 5px solid var(--default);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

/* --- Layout: keep header centered with side margins --- */
.site-header { position: sticky; top: 0; z-index: 1000; }
.header-inner{
  max-width: 1200px;           /* <- container width */
  margin: 16px auto;           /* <- left/right margins */
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
}

/* --- Main nav --- */
.main-nav { position: relative; }
.menu{ display:flex; gap:24px; align-items:center; list-style:none; margin:0; padding:0; }
.menu-item{ position:relative; text-transform:uppercase; font-size:17px; font-weight:300; }
.menu-item a, .submenu-toggle{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:8px; color:var(--white); text-decoration:none;
  background: transparent; border: 0; font: inherit; cursor: pointer;
}
.menu-item a:hover, .submenu-toggle:hover{ background: rgba(255,255,255,.12); }

/* --- Submenu panel (glass) --- */
.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 360px;
  max-height: 60vh;
  overflow: auto;
  padding: 12px 0;
  background: rgba(24, 24, 24, 0.95) !important; 
 /* slightly more opaque */
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1010;
}

.has-submenu:hover > .submenu,
.has-submenu.hovering > .submenu {
  display: block; /* or your existing visible styles */
  opacity: 1;
  visibility: visible;

}
.submenu li{ list-style:none; }
.submenu a{
  display:block; padding: 14px 20px; color:#fff; text-decoration:none; font-weight:700;
}
.submenu a:hover{ background: rgba(255,255,255,.08); }

/* Mobile menu background when opened */
@media (max-width: 900px){
  .main-nav[aria-expanded="true"] .menu{
    background: rgba(0,0,0,.85) !important;
  }
}

/* Numbers section card styling */
.numbers-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border-radius: 14px; /* smoother card look */
  overflow: hidden;
  font-family: "Poppins", sans-serif !important; /* Match menu font */
}

.numbers-item * {
    color: #f3f3f3; /* Inherit menu font */
}

.numbers-item.numbers-item-dark {
  background-color: #0f0f0f; /* Dark black */
}
.numbers-item.numbers-item-grey {
  background-color: #0f0f0f; /* Medium grey */
}
.numbers-item.numbers-item-grey-light {
  background-color: #0f0f0f; /* Light grey */
}
.numbers-item.numbers-item-orange {
  background-color: #0f0f0f; /* Orange */
}

.number-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: .9;
}

.number-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: currentColor;
}

.card-title {
    margin: 38px 0 24px;
    font-size: 20px;
    font-weight: 100;
    line-height: 2.2;
    font-family: inherit !important; /* Match menu font */
}

.card-desc {
    color: #d0d0d0;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 200; /* Lighter weight */
	text-align: center !important;
}

.card-spacer {
  flex: 1 1 auto;
}

/* + button */
.card-plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  display: inline-grid;
  place-items: center;
  background: #ff6a00;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.card-plus:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.card-plus:active {
  transform: translateY(0);
}

.card-plus:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
  /* Hover lift + subtle overlay for cards */
  .numbers-item::after{
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,0)); opacity: 0; transition: opacity .2s ease;
  }
  .numbers-item:hover::after{ opacity: 1; }
.shop-link {
  color: #1d1d1d;
  text-decoration: underline;
}

.shop-button {
  color: #f8ff00;
  background-color: #000;
  align-self: flex-end;
  margin-top: auto;
  padding: 20px 30px;
  font-size: 18px;
  line-height: 20px;
}

.cart-quantity {
  color: var(--white);
  background-color: #fff0;
  min-width: auto;
  height: auto;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 18px;
  position: static;
  inset: 0% 0% auto auto;
}

.main-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
}

.cursor-wrapp {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.cursor {
  z-index: 9999;
  border: 1px solid var(--default);
  opacity: 0;
  -webkit-text-fill-color: inherit;
  cursor: none;
  mix-blend-mode: normal;
  background-color: #a9a9a980;
  background-clip: border-box;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
}

.project-cursor-text {
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-section {
  padding-top: 20px;
  padding-bottom: 50px;
}

.hero-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 150px;
  display: grid;
}

.hero-big-text {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 140px;
  line-height: 100px;
}

.hero-paragraph {
    margin-bottom: 0;
    font-weight: 100;
}

.hero-projects-link {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  text-decoration: none;
  display: flex;
}

.hero-projects-link-text {
  border-bottom: 1px solid var(--white);
  font-weight: 300;
  line-height: 22px;
  text-decoration: none;
}

.hero-proect-link-arrow {
  width: 20px;
  margin-left: 10px;
}

.hero-under-text {
  border-left: 5px solid var(--default);
  text-transform: uppercase;
  margin-top: 100px;
  padding-left: 30px;
  font-size: 30px;
  font-weight: 200;
  line-height: 40px;
}

.hero-partners {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.hero-partners.partners-about {
  margin-top: 0;
}

.hero-partners-moving {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.hero-client-logo {
  margin-right: 100px;
}

.numbers-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.numbers-item {
  border-radius: 5px;
  flex-flow: column;
  height: auto;
  min-height: 320px;
  padding: 20px;
  display: flex;
}

.numbers-item.numbers-item-grey {
  background-color: #191919;
}

.numbers-item.numbers-item-orange {
  background-color: #191919;
}

.numbers-item.numbers-item-dark {
  background-color: #191919;
}

.numbers-item.numbers-item-grey-light {
  background-color: #191919;
}

.number-circle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.number-circle.circle-dark {
  background-color: #242424;
}

.number-circle.number-circle-black {
  background-color: #0f0f0f;
}

.number-circle.circle-orange {
  background-color: var(--default);
}

.number-circle.circle-grey {
  background-color: #b7b7b7;
}

.number-text-box {
  margin-top: auto;
}

.number-text-small {
  text-transform: capitalize;
}

.number-text-big {
  margin-bottom: 15px;
  font-size: 70px;
  font-weight: 500;
  line-height: 50px;
}

  
 /* Utility */
  .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

  /* Full-width fixed background wrapper */
.contact-bg {
  background: url('../assets/images/background.webp') no-repeat center center fixed;
  background-size: cover;
  min-height: 80vh;
}

/* Base */
.contact-section {
  width: 100%;
  padding: 0px 60px; /* 5rem 2rem => px */
  background: transparent;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 120px; /* 3rem => px */
  max-width: 1200px;
  margin: 0 auto;
}
/* Left side NOT centered: overrides */
.contact-left,
.contact-left * {
  text-align: left;
}

.contact-description,
.contact-cta {
  margin-left: 0;
  margin-right: 0;
}

.contact-highlights {
  margin-left: 0;
  margin-right: 0;
}

/* Mobile: keep left alignment too */
@media (max-width: 767px) {
  .contact-section { text-align: left; }              /* was center */
  .contact-description { margin: 0 0 20px; }          /* remove auto */
  .contact-highlights { margin: 0 0 18px; }           /* remove auto */
}

/* Left column */
.contact-left { flex: 1; min-width: 300px; }
.contact-tag { color: #FF7C00; font-weight: 700; font-size: 24px; line-height: 32px; margin-bottom: 8px; display: inline-block; }
.contact-heading { font-size: 34px; line-height: 42px; font-weight: 800; margin-bottom: 16px; }
.contact-description { font-size: 16px; line-height: 28px; color: #ccc; max-width: 640px; }
.contact-highlights { font-size: 16px; line-height: 28px; margin: 0 auto 18px; }
.contact-highlights li { margin: 6px 0; }
.contact-cta { font-size: 18px; line-height: 30px; }

/* Right column: form */
.contact-form {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 0px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
  backdrop-filter: blur(12px);
}

.contact-form input,
.contact-form textarea { 
  padding: 12px 16px; 
  border: 1px solid #444; 
  border-radius: 12px; 
  background: transparent; 
  color: #fff; 
  font-size: 14px; 
  line-height: 22px; 
  outline: none; 
  transition: border-color 0.3s ease; 
  font-family: "Poppins", sans-serif; 
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #FF7C00; }

.contact-form textarea { min-height: 120px; resize: vertical; }

.range-wrap { display: flex; align-items: center; gap: 18px; color: #aaa; font-size: 14px; }
.contact-form input[type="range"] { flex: 1; accent-color: #FF7C00; height: 4px; border-radius: 4px; }

.contact-form button { 
  background: linear-gradient(to right, #000, #A0522D); 
  padding: 12px 16px; 
  border: none; 
  border-radius: 30px; 
  color: #fff; 
  font-weight: 700; 
  font-size: 16px; 
  cursor: pointer; 
  transition: background 0.3s ease; 
}

.contact-form button:hover { background: linear-gradient(to right, #FF7C00, #A0522D); }

/* Popup */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; z-index: 1000; }
.popup-content { background: #111; color: #fff; padding: 32px; border-radius: 16px; width: min(90vw, 420px); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.popup-content button { margin-top: 16px; background: #FF7C00; border: none; color: #000; font-weight: 700; padding: 12px 16px; border-radius: 10px; cursor: pointer; }
.popup-content button:hover { filter: brightness(1.1); }

/* Responsive */
@media (max-width: 767px) {
  .contact-section { padding: 32px 16px; text-align: center; }
  .contact-content { flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .contact-left, .contact-form { width: 100%; max-width: 90%; }
  .contact-tag { font-size: 20px; line-height: 28px; }
  .contact-heading { font-size: 26px; line-height: 34px; }
  .contact-description { font-size: 15px; line-height: 26px; max-width: 100%; margin: 0 auto; }
  .contact-form { padding: 20px; gap: 16px; border-radius: 16px; text-align: left; }
  .contact-form input, .contact-form textarea { font-size: 14px; line-height: 22px; padding: 12px; }
  .contact-form button { width: 100%; padding: 14px; font-size: 16px; }
  .range-wrap { flex-direction: column; align-items: flex-start; }
  .contact-highlights { display: none; }
}
.contact-section {
  margin-bottom: 0;
  padding-bottom: 0;
}
h2.main-title{ margin-top:0 !important; }
  /* Avoid margin-collapsing gap at section start */
  /* ===== Services — perfect alignment ===== */
.services-section{
  --num-col: 72px;               /* number badge column */
  --gap-col: 32px;               /* space between columns */
  --row-pad: 32px;               /* vertical padding per row */
  --img-h: 220px;                /* image height (desktop) */
  --sep: rgba(255,255,255,.10);  /* dividers */
  --title-size: clamp(28px, 3.2vw, 48px);
  --title-lh: 1.12;
}

.services-wrapp{
  display: grid;
}

/* 3 equalized columns: number | title | image */
.services-item{
  display: grid;
  grid-template-columns: var(--num-col) minmax(420px, 560px) 1fr;
  column-gap: var(--gap-col);
  align-items: center;                 /* number, title, image align on the same baseline */
  padding: var(--row-pad) 0;
  position: relative;
}

/* top divider for each row, bottom divider on the last one */
.services-item::before{
  content:""; position:absolute; left:0; right:0; top:0; height:1px; background:var(--sep);
}
.services-item:last-child::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background:var(--sep);
}

/* number badge (class name kept as in your HTML) */
.service-nunmber{
  width:56px; height:56px;
  display:grid; place-items:center;
  border-radius:12px;
  background:#171717;
  color:rgba(255,255,255,.85);
  font-weight:600; letter-spacing:.04em;
}

/* title link — remove the leading &nbsp;&nbsp;&nbsp; from your HTML */
.h2-heading{
  display:block;
  margin:0; padding:0;
  font-size:var(--title-size);
  line-height:var(--title-lh);
  font-weight:700;
  text-decoration:none;
  color:inherit;
  text-wrap:balance;                 /* prettier multi-line wrap where supported */
}

/* image column: fixed height, rounded, aligned to the right */
.service-img{
  justify-self:end;
  width: min(760px, 100%);
  height: var(--img-h);
  object-fit: cover;
  border-radius:16px;
  background:#0e0e0e;
  box-shadow:0 2px 16px rgba(0,0,0,.35);
  display:block;
}

/* focus-visible for accessibility */
.h2-heading:focus-visible{
  outline:2px solid rgba(255,106,0,.6);
  outline-offset:3px;
  border-radius:6px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px){
  .services-section{ --img-h: 200px; }
  .services-item{ grid-template-columns: var(--num-col) minmax(360px, 520px) 1fr; }
}
@media (max-width: 992px){
  .services-item{
    grid-template-columns: var(--num-col) 1fr;   /* number | title */
    align-items:start;
  }
  .service-img{
    grid-column: 1 / -1;        /* image goes full width below title */
    justify-self: stretch;
    margin-top: 18px;
    height: 220px;
  }
}
@media (max-width: 600px){
  .services-section{ --num-col:56px; --gap-col:20px; --row-pad:24px; }
  .service-nunmber{ width:52px; height:52px; border-radius:10px; }
  .service-img{ height: 200px; }
}


.who-we-are-section {
  padding-top: 150px;
}

.who-we-are-section.wo-we-are-about {
  padding-top: 100px;
}

.mission-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mission-title {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.mission-title.mission-title-right {
  justify-content: flex-end;
  align-items: center;
}

.mission-plus {
  flex: 0 auto;
  width: 70px;
}

.mission-heading {
  text-transform: uppercase;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 30px;
  font-size: 40px;
  font-weight: 200;
  line-height: 40px;
}

.mission-heading.mission-heading-right {
  text-align: right;
  margin-left: 0;
  margin-right: 30px;
}

.mission-content {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
}

.mission-text-box {
  flex-flow: column;
  flex: 0 auto;
  display: flex;
}

.mission-paragraph {
  margin-bottom: 100px;
  font-size: 22px;
  line-height: 28px;
}

.mission-paragraph.mission-paragraph-right {
  margin-top: 100px;
  margin-bottom: 0;
  margin-left: 20px;
}

.mission-orange-box {
  border: 1px solid var(--default);
  background-color: var(--default);
  border-radius: 5px;
  align-self: flex-start;
  width: 30px;
  height: 30px;
}

.mission-orange-box.mission-transparent {
  background-color: var(--transparent);
  margin-top: 20px;
  margin-left: 20px;
}

.mission-img {
  border-radius: 10px;
  flex: 0 auto;
  width: 240px;
  margin-left: 40px;
}

.mission-img.mission-img-right {
  margin-left: 0;
}

.work-section {
  padding-top: 150px;
}

.work-section.work-page-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.main-title-box {
  position: relative;
}

.all-projects {
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 0;
}
@media (max-width: 640px) {
  .mission-img {
    display: none;
  }
}
.ai-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }

  .ai-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ai-banner-text {
  position: absolute;
  top: 50%;
  right: 5%; /* moved slightly more to the right */
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  text-align: right;
}

.ai-banner-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center; /* center title with paragraph */
}

.ai-banner-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f1f1f1;
  font-weight: 300;
  text-align: center; /* ensure paragraph aligns with title */
}

 

  .ai-banner-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(to right, #FF7C00, #A0522D);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  margin: 0 auto; /* center horizontally */
}

.ai-banner-text {
  text-align: center; /* ensure all inside is centered */
}


  .ai-banner-btn:hover {
    background: linear-gradient(to right, #A0522D, #FF7C00);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .ai-banner {
      min-height: 400px;
    }

    .ai-banner-text {
      position: absolute;
      top: 30%;
      left: 80%;
      right: auto;
      transform: translate(-50%, -50%);
      text-align: center;
      padding: 0 20px;
    }

    .ai-banner-text h1 {
      font-size: 28px;
    }

    .ai-banner-text p {
      font-size: 16px;
    }
  }
.work-list {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.work-item {
  color: var(--white);
  text-decoration: none;
  display: block;
}

.work-img {
  width: 100%;
}

.heading {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 200;
  line-height: 40px;
}

.work-category {
  text-transform: uppercase;
  background-color: #1e1e1e;
  border-radius: 5px;
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  display: inline-block;
}

.testimonials-section {
  padding-top: 150px;
}

.testimonials-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.trstimonials-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
}

.trstimonials-item:hover {
  background-color: var(--transparent);
}

.testimonial-item-box {
  border-bottom: 1px solid var(--border-color);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 30px;
  display: flex;
}

.testimonials-quote {
  width: 20px;
}

.testimonial-heading {
  text-transform: capitalize;
  margin: 0 0 0 20px;
  font-size: 28px;
  font-weight: 200;
  line-height: 26px;
}

.testimonials-img-txt {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-img {
  background-color: #191919;
  border-radius: 10px;
  width: 140px;
  padding-top: 10px;
}

.testimonials-txt {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 22px;
  line-height: 24px;
}

.blog-section {
  padding-top: 150px;
}

.blog-list-wrapper {
  margin-top: 50px;
}

.blog-list-wrapper.blog-list-page {
  margin-top: 0;
}

.blog-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-arrow {
  background-color: #333;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-left: 10px;
  text-decoration: none;
  display: flex;
}

.blog-left {
  border: 1px none var(--border-color);
  border-radius: 10px;
  flex: 1;
  padding: 0;
}

.blog-author {
  object-fit: cover;
  border: 3px solid #333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

.link-to-single {
  margin-left: auto;
}

.blog-image {
  border-radius: 5px;
  width: 390px;
  margin-left: auto;
}

.blog-item {
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  text-decoration: none;
  display: flex;
}

.blog-category {
  border: 1px solid var(--border-color);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

.blog-heading {
  color: var(--white);
  text-transform: uppercase;
  width: 80%;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 200;
  line-height: 44px;
}

.blog-author-and-arrow {
  border-top: 1px solid var(--border-color);
  width: 20%;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.blog-arrow-icon {
  width: 25px;
}

.footer {
  margin-top: 50px;
}

.phone-link {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Clashdisplay, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 50px;
  text-decoration: none;
  display: block;
}

.copyright-text {
  color: #fff;
}

.socials {
  justify-content: center;
  display: flex;
}

.inner-footer {
  border-style: solid;
  border-width: 1px 1px 15px;
  border-color: var(--border-color);
  text-align: center;
  border-radius: 5px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.copyright {
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.backtotop {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  display: flex;
}

.mail-link {
  color: #fff;
  text-align: center;
  font-size: 36px;
  text-decoration: none;
  display: inline-block;
}

.social-link {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  text-decoration: none;
  display: flex;
}

.social-link.last-social {
  margin-right: 0;
}

.social-text {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 18px;
  text-decoration: underline;
}

.social-arrow {
  width: 15px;
  margin-left: 10px;
}

.right-copyright {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.license {
  color: var(--white);
  text-transform: capitalize;
  margin-right: 20px;
  text-decoration: none;
}

.sitemap {
  margin-top: 20px;
}

.inner-sitemap {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 50px;
  display: flex;
}

.sitemap-heading {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 200;
  line-height: 60px;
}

.stemap-text {
  border: 1px solid var(--border-color);
  background-color: #000000b3;
  border-radius: 5px;
  margin-left: 20px;
  padding: 10px;
}

.clients-section, .team-section {
  padding-top: 150px;
}

.team-scials {
  position: absolute;
  inset: 10px 10px auto auto;
}

.social-link-2 {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 5px;
  display: flex;
}

.team-job {
  font-size: 16px;
  line-height: 20px;
}

.team-image-wrapp {
  border: 1px solid var(--border-color);
  background-color: var(--black);
  color: #1d1d1d;
  text-align: center;
  border-radius: 5px;
  padding: 60px 20px 0;
  position: relative;
}

.team-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social-image {
  width: 20px;
}

.team-img {
  object-fit: cover;
  width: auto;
  height: 247px;
}

.team-heading {
  margin-top: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
}

.team-details {
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.contact-text {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  line-height: 40px;
}

.social-arrow-2 {
  width: 16px;
  margin-left: auto;
}

.input-style {
  border: 1px solid var(--border-color);
  color: #fff;
  background-color: #fff0;
  border-radius: 5px;
  flex: 1;
  align-self: auto;
  min-height: 50px;
  margin-bottom: 0;
  padding: 25px 20px 20px;
  line-height: 20px;
}

.input-style:active {
  color: #fff;
}

.input-style:focus {
  color: #fff;
  background-color: #fff0;
  font-size: 20px;
  font-weight: 400;
}

.input-style:focus-visible {
  color: #fff;
  font-weight: 400;
}

.input-style[data-wf-focus-visible] {
  color: #fff;
  font-weight: 400;
}

.input-style::placeholder {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.input-style:lang(en) {
  color: #fff;
  font-weight: 400;
}

.input-style.textarea {
  min-height: auto;
  padding-bottom: 100px;
}

.form-stack {
  grid-row-gap: 20px;
  padding: 0;
}

.contact-stack {
  margin-top: 0;
  padding: 0;
}

.comtact-main-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 38px;
}

.comtact-main-title.contact-title-with-border {
  text-transform: capitalize;
  border-bottom: 1px #fff;
  padding-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.social-item {
  color: #fff;
  align-items: center;
  margin-right: 20px;
  text-decoration: none;
  display: flex;
}

.social-text-2 {
  text-transform: capitalize;
  margin-right: 10px;
  line-height: 20px;
  text-decoration: underline;
}

.contact-link {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
}

.contact-link.contact-last-link {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.contact-location {
  width: 100%;
  margin-bottom: 30px;
}

.footer-socials {
  align-self: stretch;
  align-items: center;
  margin-top: 65px;
  display: flex;
}

.footer-socials.contact-socials {
  margin-top: 0;
}

.submit-button {
  float: none;
  color: #fff;
  text-transform: uppercase;
  background-color: #dc5f00;
  border: 1px solid #242424;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: auto;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 500;
  transition: all .3s;
}

.submit-button:hover {
  color: #000;
  background-color: #fff;
  background-image: none;
}

.success-message {
  background-color: #fff0;
  border: 1px solid #272727;
}

.single-cell {
  align-items: stretch;
}

.contact-form-block {
  border: 5px #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.error-message {
  background-color: #c4ecce;
}

.product-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.prod-description-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
}

.single-prod-right {
  border: 1px solid var(--border-color);
  background-color: var(--transparent);
  border-radius: 5px;
  padding: 50px;
}

.prod-description {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.quantity {
  float: left;
  border-color: var(--border-color);
  background-color: #000;
  border-radius: 0;
  height: 43px;
  margin-top: 20px;
  margin-bottom: 0;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-prod-title {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 400;
}

.refund-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
}

.option-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--border-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.single-prod-left {
  border: 1px solid var(--border-color);
  background-color: var(--transparent);
  border-radius: 5px;
  padding: 50px;
}

.select-field {
  color: #fff;
  background-color: #000;
  border: 1px solid #303030;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.refund-div {
  border: 1px solid var(--border-color);
  background-color: var(--transparent);
  border-radius: 5px;
  margin-top: 20px;
  padding: 40px;
}

.buy-now-button {
  display: none;
}

.single-prod-price {
  line-height: 21px;
}

.add-to-cart-button {
  background-color: var(--white);
  color: #000;
  margin-top: 20px;
  margin-left: 20px;
}

.single-prod-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph {
  margin-bottom: 0;
}

.shop-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.shop-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shop-item {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  transition: all .2s;
}

.shop-item:hover {
  border-color: var(--default);
}

.shop-image-wrapper {
  padding: 20px 40px;
  display: block;
}

.shop-image-image {
  width: 100%;
}

.shop-text-wrapp {
  text-align: center;
  background-color: #181818;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 30px;
}

.shop-prod-title {
  border-bottom: 1px solid var(--border-color);
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}

.default-button {
  color: #000;
  text-transform: uppercase;
  background-color: #c4ef17;
  border: 1px solid #c4ef17;
  padding: 17px 23px;
  font-weight: 600;
  transition: all .2s;
}

.default-button:hover {
  color: #c4ef17;
  background-color: #000;
}

.default-button.order-button {
  border-color: var(--border-color);
  background-color: var(--white);
  margin-top: 20px;
  padding: 10px 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.default-button.order-button:hover {
  background-color: var(--black);
  color: var(--white);
}

.sigle-work-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.single-work-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.single-main-work-img {
  margin-bottom: 20px;
}

.single-main-title-heading {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 200;
  line-height: 40px;
}

.single-left-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.single-left-item {
  border-left: 1px solid var(--white);
  padding-left: 20px;
}

.single-detail-heading {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 200;
}

.single-details-text {
  font-size: 18px;
}

.button {
  border: 1px solid var(--default);
  background-color: var(--transparent);
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 50px;
  padding: 10px 40px;
}

.single-post-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-author-and-category {
  margin-bottom: 20px;
}

.single-post-text-cell {
  border: 1px solid var(--border-color);
  background-color: var(--transparent);
  border-radius: 5px;
  padding: 30px;
}

.single-post-img {
  mix-blend-mode: normal;
  border-radius: 0;
  position: static;
  top: 10px;
}

.single-blog-heading {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  position: static;
}

.blog-category-2 {
  color: #19191a;
  border: 1px solid #0003;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

.blog-category-2.single-category {
  border-color: var(--default);
  color: #fff;
  border-radius: 0;
  margin-left: 0;
}

.signel-post-image-cell {
  background-color: #fff0;
  border-radius: 0;
}

.single-img-wrapper {
  position: sticky;
  top: 10px;
}

.single-stack {
  padding: 0;
}

.single-upper {
  border: 1px solid var(--border-color);
  background-color: var(--transparent);
  border-radius: 5px;
  padding: 30px 30px 40px;
}

.blog-page-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pages-body {
  cursor: auto;
}

.checkout {
  color: var(--black);
  margin-top: 40px;
}

.checkout-button {
  background-color: var(--default);
  border-style: solid;
  border-color: #000;
}

.utility-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.utility-h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.list-item.last-list-item {
  margin-bottom: 0;
}

.h1-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  line-height: 60px;
}

.style-guide {
  margin-top: 0;
}

.h5-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 20px;
}

.block-quote {
  border-left-color: var(--default);
}

.quick-stack-2 {
  padding: 0;
}

.h6-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 16px;
}

.h3-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}

.h3-heading.list-heading {
  margin-bottom: 30px;
  font-weight: 600;
}

.sample-link {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: underline;
}

.h2-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}

.ordered-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
}

._30mb-space {
  border-bottom: 1px solid #272727;
  height: 30px;
  margin-bottom: 30px;
}

.list-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}

.h4-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 23px;
}

.paragraph-6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.sample-link-2 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: underline;
}

.utility-p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
}

.utility-p.change-paragrap {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.changelog-text {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.cart-wrapper {
  color: var(--black);
}

.close-button {
  cursor: pointer;
}

.delete-me {
  color: #fff;
  text-transform: capitalize;
  background-image: linear-gradient(#55bdbe, #3da9af);
  border: 1px solid #7acfd8;
  border-radius: 50px;
  padding: 10px 40px;
  font-size: 20px;
  font-weight: 400;
  transition: all .2s;
  display: inline-block;
  box-shadow: 0 2px 5px #00000017;
}

.delete-me:hover {
  box-shadow: 0 2px 20px 5px #0000000d;
}

.delete-me.more-template {
  z-index: 5555;
  background-image: linear-gradient(180deg, var(--default), #6d2f00);
  text-transform: uppercase;
  border-style: none;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: fixed;
  inset: auto 20px 10px auto;
}

@media screen and (min-width: 1440px) {
  .menu-item {
    padding: 10px 0;
    font-size: 16px;
  }

  .menu-item.w--current {
    margin-left: 15px;
    margin-right: 15px;
    padding: 10px 0;
  }

  .header-inner {
    justify-content: flex-end;
    display: flex;
  }

  .main-menu {
    flex: none;
    align-self: center;
    margin-left: auto;
  }

  .main-container {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }

  .cursor {
    opacity: 0;
  }

  .hero-big-text {
    font-size: 201px;
  }

  .hero-under-text {
    font-size: 39px;
  }

  .hero-partners {
    border-style: solid none;
    border-width: 1px;
    border-color: var(--border-color);
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .service-img {
    width: 770px;
  }

  .mission-paragraph {
    margin-top: 20px;
    margin-bottom: 130px;
    margin-left: 20px;
  }

  .mission-paragraph.mission-paragraph-right {
    margin-top: 130px;
    margin-bottom: 20px;
  }

  .mission-orange-box {
    border: 1px solid var(--default);
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .mission-orange-box.mission-transparent {
    background-color: var(--transparent);
    align-self: flex-start;
  }

  .mission-img {
    object-fit: cover;
    border-radius: 10px;
    align-self: stretch;
    margin-left: 20px;
  }

  .mission-img.mission-img-right {
    margin-left: 0;
    margin-right: 20px;
  }

  .blog-image {
    width: 420px;
  }

  .blog-heading {
    font-size: 26px;
    line-height: 55px;
  }

  .contact-stack {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .single-left-item {
    padding-left: 40px;
  }

  .single-stack {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .paragraph-6 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1920px) {
  .menu-item {
    padding: 10px 0;
  }

  .menu-item.w--current {
    padding-left: 0;
    padding-right: 0;
  }

  .main-container {
    max-width: 1700px;
  }
}

@media screen and (max-width: 991px) {
  body {
    cursor: auto;
  }

  .menu-item {
    color: var(--white);
    font-weight: 300;
  }

  .menu-item.w--current {
    color: var(--default);
    border-bottom-style: none;
  }

  .cart-button {
    justify-content: center;
    width: auto;
    height: auto;
    padding: 15px;
  }

  .main-menu {
    border: 1px solid var(--white);
    background-color: #000;
    border-radius: 0;
    padding: 20px;
  }

  .icon {
    color: var(--white);
    font-size: 33px;
  }

  .shop-button {
    color: var(--white);
    align-self: flex-start;
    margin-top: 25px;
  }

  .menu-button {
    border: 1px solid var(--white);
    flex: 0 auto;
    order: 1;
    margin-left: 20px;
    padding: 8px;
  }

  .menu-button.w--open {
    background-color: #fff0;
  }

  .hero-section {
    background-position: 50% 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-under-text {
    margin-top: 60px;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-item {
    display: block;
  }

  .service-text {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .service-img {
    flex: 0 auto;
    order: 0;
    margin-left: 0;
    display: block;
  }

  .mission-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-left {
    flex: 1;
  }

  .blog-image {
    width: 300px;
  }

  .blog-heading {
    width: 100%;
  }

  .blog-author-and-arrow {
    width: 50%;
  }

  .socials {
    display: flex;
  }

  .team-image-wrapp {
    padding: 60px 60px 0;
  }

  .team-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .single-prod-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .shop-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .single-stack {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .cart-wrapper {
    color: var(--black);
  }
}

@media screen and (max-width: 767px) {
  .logo-img {
    width: 150px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .service-img {
    width: 100%;
  }

  .work-list {
    grid-template-columns: 1fr;
  }

  .blog-left {
    margin-bottom: 20px;
  }

  .blog-image {
    width: 100%;
  }

  .blog-item {
    margin-bottom: 0;
    display: block;
  }

  .blog-heading, .blog-author-and-arrow {
    width: 100%;
  }

  .phone-link {
    font-size: 50px;
    line-height: 50px;
  }

  .socials {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .copyright {
    display: block;
  }

  .social-link {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .right-copyright {
    justify-content: space-between;
    margin-top: 20px;
  }

  .inner-sitemap {
    display: block;
  }

  .sitemap-heading {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 50px;
  }

  .stemap-text {
    margin-left: 0;
  }

  .contact-stack {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin-top: 60px;
  }

  .footer-socials {
    margin-top: 40px;
  }

  .single-prod-grid, .shop-list {
    grid-template-columns: 1fr;
  }

  .single-work-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .single-left-grid {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .single-left-item {
    border-bottom: 1px solid var(--white);
    border-left-style: none;
    padding-bottom: 20px;
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .logo-img {
    width: 120px;
  }

  .header-right-side {
    margin-top: 0;
  }

  .cart-button {
    padding: 8px;
  }

  .header-inner {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .icon {
    font-size: 20px;
    line-height: 20px;
  }

  .hero-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-big-text {
    font-size: 60px;
    line-height: 40px;
  }

  .hero-under-text {
    font-size: 26px;
    line-height: 35px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 30px;
    line-height: 19px;
  }

  .mission-content {
    display: block;
  }

  .mission-paragraph {
    margin-bottom: 20px;
  }

  .mission-paragraph.mission-paragraph-right {
    margin: 10px 0 0;
  }

  .mission-orange-box.mission-transparent {
    margin-left: 0;
  }

  .mission-img {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .all-projects {
    top: 0;
  }

  .heading {
    font-size: 30px;
    line-height: 30px;
  }

  .testimonials-img-txt {
    display: block;
  }

  .testimonial-img {
    width: 100%;
  }

  .testimonials-txt {
    margin-left: 0;
    padding-top: 20px;
  }

  .phone-link {
    font-size: 34px;
    line-height: 40px;
  }

  .copyright-text {
    padding-right: 20px;
  }

  .inner-footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .backtotop {
    flex: none;
    width: 60px;
    height: 60px;
  }

  .mail-link {
    font-size: 28px;
  }

  .inner-sitemap {
    padding: 20px;
  }

  .sitemap-heading {
    font-size: 40px;
    line-height: 40px;
  }

  .team-image-wrapp {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-img {
    width: auto;
  }

  .social-item {
    margin-bottom: 15px;
  }

  .contact-location {
    width: 80%;
  }

  .footer-socials {
    margin-top: 30px;
    display: block;
  }

  .submit-button {
    float: none;
    background-image: none;
    margin-top: 10px;
    padding: 20px 60px;
    font-size: 19px;
  }

  .quantity {
    float: none;
  }

  .option-list {
    grid-template-columns: 1fr;
  }

  .select-field {
    color: #fff;
  }

  .add-to-cart-button {
    margin-left: 0;
  }

  .single-post-text-cell {
    padding: 20px;
  }

  .single-blog-heading {
    font-size: 40px;
    line-height: 40px;
  }

  .delete-me {
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
  }
}

#darkyn21 {
  align-self: end;
}

#w-node-_300d1045-815b-d871-744a-2aa00050ca14-3c872027 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#darkyn42, #darkyn36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#darkyn30 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#darkyn35 {
  grid-column: span 2 / span 2;
}

#w-node-_08bc5feb-2130-9b76-71de-0ef14c34c536-affb563a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_08bc5feb-2130-9b76-71de-0ef14c34c537-affb563a, #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c539-affb563a, #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c53b-affb563a, #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c53d-affb563a, #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c53f-affb563a, #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c541-affb563a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #darkyn18 {
    order: 9999;
  }

  #darkyn42 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #darkyn36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #darkyn30 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #darkyn31, #darkyn32, #darkyn33, #darkyn34 {
    grid-column: span 2 / span 2;
  }

  #w-node-_08bc5feb-2130-9b76-71de-0ef14c34c536-affb563a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashdisplay';
  src: url('../fonts/ClashDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.span {
}
  :root{
      --glass-bg: rgba(255,255,255,0.08);
      --glass-brd: rgba(255,255,255,0.15);
      --txt: #fff;
      --txt-soft:#cfcfcf;
      --txt-muted:#a7a7a7;
      --accent:#ff6a00;
      --card:#141414;
    }
    .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

    /* Cursor visibility */
    html, body, main, header, nav, section, article, aside, footer { cursor: auto !important; }
    a, button, [role="button"], .menu-toggle, .submenu-toggle, [aria-controls] { cursor: pointer !important; }
    input, textarea, select, [contenteditable="true"] { cursor: text !important; }
    .cursor-wrapp { pointer-events: none !important; }

    /* Header */
    .site-header{position:sticky;top:0;z-index:1000}
    .header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:14px 18px;border-radius:10px;border:1px solid var(--glass-brd);background:var(--glass-bg);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
    .logo-img{height:71px;width:auto;display:block}
    .main-nav{display:flex}
    .menu{display:flex;align-items:center;gap:18px;list-style:none;margin:0;padding:0}
    .menu a,.submenu-toggle{color:var(--txt);text-decoration:none;font-weight:600;letter-spacing:.02em}
    .menu a:focus,.submenu-toggle:focus{outline:2px solid var(--accent);outline-offset:3px}
    .has-submenu{position:relative}
    .submenu-toggle{background:none;border:0;display:flex;align-items:center;gap:.35rem}
    .submenu{position:absolute;left:0;top:calc(100% + 8px);min-width:220px;padding:10px;border-radius:10px;border:1px solid var(--glass-brd);background:var(--glass-bg);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);list-style:none;margin:0;display:none;flex-direction:column;gap:6px}
    .submenu a{display:block;padding:8px 10px;border-radius:8px}
    .submenu a:hover{background:rgba(255,255,255,0.06)}
    .has-submenu[data-open="true"]>.submenu{display:flex}
    .menu-toggle{display:none;background:none;border:0;color:var(--txt)}
    @media (max-width: 900px){
      .menu-toggle{display:inline-flex}
      .main-nav{position:fixed;inset:64px 12px auto 12px;display:none}
      .main-nav[aria-expanded="true"]{display:block}
      .menu{flex-direction:column;align-items:stretch;gap:10px;padding:12px;border-radius:12px;border:1px solid var(--glass-brd);background:var(--glass-bg);backdrop-filter:blur(12px)}
      .has-submenu{position:static}
      .submenu{position:static;display:none;padding:6px 8px;margin-top:4px}
      .has-submenu[data-open="true"]>.submenu{display:flex}
    }

    /* ---------- Post layout (balanced 2-col) ---------- */
    .single-post-section{padding:56px 0}
    .main-container{max-width:1200px;margin:0 auto}
    /* turn the existing wrapper into a grid without touching Webflow */
    #darkyn42.post-grid{
      display:grid;
      grid-template-columns: 1.05fr 1.1fr;
      gap:46px;
      align-items:start;
    }
    @media (max-width: 980px){
      #darkyn42.post-grid{grid-template-columns:1fr;gap:28px}
    }

    /* Left column: figure card with caption */
    .post-figure{
      margin:0;
      border-radius:16px;
      overflow:hidden;
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border:1px solid var(--glass-brd);
      box-shadow:0 10px 26px rgba(0,0,0,.35);
    }
    .single-post-img{display:block;width:100%;height:auto}
    .post-caption{
      padding:14px 16px 16px;
      font-size:15px;
      line-height:1.6;
      color:var(--txt-soft);
      background:rgba(0,0,0,.25);
      backdrop-filter:blur(6px);
    }

    /* Titles & text */
    .single-blog-heading{margin:10px 0 16px;font-size:30px;line-height:1.2;color:var(--txt)}
    .single-post-text-cell h4{font-size:20px;margin:24px 0 10px;color:#fff}
    .hero__subtitle{
    color: var(--txt-soft);
    line-height: 1.7;
    margin-top: 0;
    margin-right: 0;
    margin-left: 10px;
    margin-bottom: 12px
}
    .single-post-text-cell ul{margin:8px 0 0 20px}
    .single-post-text-cell li{margin:8px 0;color:var(--txt-soft)}

    /* Nicer blockquote */
    blockquote.hero__subtitle{
      margin:16px 0;
      padding:14px 16px;
      border-left:4px solid var(--accent);
      background:rgba(255,255,255,.04);
      border-radius:8px;
      color:#eaeaea;
      font-style:italic;
    }

    /* WhatsApp float (minimal) */
    .whatsapp-float{
      position:fixed;right:18px;bottom:18px;z-index:1001;
      width:54px;height:54px;border-radius:50%;display:grid;place-items:center;
      background:#25D366;border:0;box-shadow:0 8px 18px rgba(0,0,0,.35)
    }
    .whatsapp-float img{width:28px;height:28px}

    /* Footer small tweaks */
    .footer{margin-top:56px}
    .mail-link,.phone-link{color:var(--txt-soft);text-decoration:none}
    .mail-link:hover,.phone-link:hover{color:#fff}
    /* Full-bleed section */
.partners-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-block: 24px;
}

/* Mask */
.partners-mask {
  overflow: hidden;
  width: 100%;
}

/* Scrolling tracks */
.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

/* Logos */
.partner-logo {
  height: 120px;      /* match your design */
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .9;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); } /* second track is identical */
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}
:root{
  --banner-bg:#0b0b0b;
  --banner-fg:#ffffff;
  --banner-accent:#ff6a00;
  --banner-title-max:970px;
  --banner-pad-top:220px;
  --banner-pad-bot:320px;
  --track-color:rgba(255,255,255,.12);
  --runner-color:rgba(255,255,255,.9);
  --runner-glow:rgba(255,106,0,.5);
}
*{box-sizing:border-box}
html,body{height:100%;background:#000;margin:0}
body{font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--banner-fg);}

.prod-banner{position:relative;width:100%;background:var(--banner-bg);overflow:hidden;}
.prod-banner__inner{position:relative;z-index:1;padding:var(--banner-pad-top) 24px var(--banner-pad-bot);}    

/* TRACKS + RUNNERS */
.prod-banner__lines{position:absolute;inset:0;display:grid;grid-template-columns:repeat(8,1fr);pointer-events:none;z-index:0}
.prod-banner__lines span{position:relative;display:block}

/* Static track */
.prod-banner__lines span::before{
  content:"";position:absolute;left:50%;top:0;transform:translateX(-50%);
  width:1px;height:100%;
  background:linear-gradient(to bottom, transparent 0%, var(--track-color) 10%, var(--track-color) 90%, transparent 100%);
}

/* Moving runner */
.prod-banner__lines span::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  width:1px; height:80px;
  background:linear-gradient(to bottom, transparent, var(--runner-color) 50%, transparent);
  box-shadow:0 0 8px var(--runner-glow);
  animation: runnerTravel var(--dur,7s) linear infinite;
}

/* Assign directions and delays */
.prod-banner__lines span{ --dur:7s; --start:-20%; --end:120%; }
.prod-banner__lines span:nth-child(1)::after{ animation-delay:0s; --start:-20%; --end:120%; }
.prod-banner__lines span:nth-child(2)::after{ animation-delay:1s; --start:120%; --end:-20%; }
.prod-banner__lines span:nth-child(3)::after{ animation-delay:2s; --start:-20%; --end:120%; }
.prod-banner__lines span:nth-child(4)::after{ animation-delay:1.5s; --start:120%; --end:-20%; }
.prod-banner__lines span:nth-child(5)::after{ animation-delay:0.5s; --start:-20%; --end:120%; }
.prod-banner__lines span:nth-child(6)::after{ animation-delay:2.5s; --start:120%; --end:-20%; }
.prod-banner__lines span:nth-child(7)::after{ animation-delay:3s; --start:-20%; --end:120%; }
.prod-banner__lines span:nth-child(8)::after{ animation-delay:2s; --start:120%; --end:-20%; }

@keyframes runnerTravel{
  0%   { top: var(--start); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { top: var(--end); opacity:0; }
}

.prod-banner__copy{position:relative;z-index:2;max-width:var(--banner-title-max);margin:0 auto;text-align:center;text-transform:uppercase;color:var(--banner-fg)}
.prod-banner__title{font-size:76px;line-height:1.18;font-weight:800;margin:0;opacity:0;transform:translateY(50px);animation:rise .9s ease forwards;animation-delay:.2s}
.prod-banner__outline{-webkit-text-fill-color:transparent;-webkit-text-stroke:1px var(--banner-fg)}
.prod-banner__arrow{display:inline-block;transform:rotate(-45deg);color:var(--banner-accent);font-style:normal}

.prod-banner__art{position:absolute;left:50%;bottom:0;transform:translateX(-50%) translateY(30px);opacity:0;transition:opacity .9s ease, transform .9s ease;transition-delay:.4s;z-index:1}
.prod-banner__art img{display:block;width:min(980px,90vw);height:auto}

.prod-banner__inner::after{content:"";position:absolute;left:0;right:0;bottom:0;height:520px;background:linear-gradient(180deg, rgba(9,9,9,0) 78%, #0d0d0d 100%);z-index:1;pointer-events:none}

@keyframes rise{from{transform:translateY(50px);opacity:0}to{transform:translateY(0);opacity:1}}

.prod-banner.loaded .prod-banner__art{opacity:1;transform:translate(-50%,0)}

@media(max-width:1024px){.prod-banner__title{font-size:56px}:root{--banner-pad-top:180px;--banner-pad-bot:260px}}
@media(max-width:640px){.prod-banner__title{font-size:38px}:root{--banner-pad-top:140px;--banner-pad-bot:210px}}

@media(prefers-reduced-motion:reduce){
  .prod-banner__lines span::after{animation:none}
  .prod-banner__title{animation:none;opacity:1;transform:none}
  .prod-banner__art{transition:none;opacity:1;transform:translate(-50%,0)}
}
/* ===== Services Marquee (full-bleed) ===== */
.prod-banner__services{
  position: relative;
  z-index: 5;               /* above background lines, below headline glow */
  margin-top: 130px;         /* push it lower beneath the title */
  /* make it full-bleed across the viewport, ignoring inner padding */
  width: 85vw;
  left: 50%;
  transform: translateX(-50%);
}

.prod-banner__services .services-mask{
  overflow: hidden;
  width: 100%;
  pointer-events: none;     /* text won’t capture clicks */
}

.prod-banner__services .services-track{
  display: inline-flex;
  gap: 48px;                /* spacing between items */
  padding: 29px 0;
  white-space: nowrap;
  will-change: transform;
  animation: services-scroll 24s linear infinite;
}

/* service item style */
.prod-banner__services span{
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .5px;
  opacity: .9;
  color: var(--banner-fg);
  text-transform: uppercase;
}

/* smooth infinite loop: list is duplicated, so -50% completes the cycle */
@keyframes services-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* smaller screens */
@media (max-width: 1024px){
  .prod-banner__services{ margin-top: 56px; }
  .prod-banner__services span{ font-size: 18px; }
  .prod-banner__services .services-track{ gap: 32px; }
}
@media (max-width: 640px){
  .prod-banner__services{ margin-top: 44px; }
  .prod-banner__services span{ font-size: 16px; }
  .prod-banner__services .services-track{ gap: 24px; }
}
/* === Edge fade + under-glow for services marquee === */

/* 1) Fade at left/right edges using mask-image (best) */
.prod-banner__services .services-mask{
  position: relative; /* for the fallback overlays below */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

/* 1b) Fallback overlay (in case mask-image isn't supported) */
.prod-banner__services .services-mask::before,
.prod-banner__services .services-mask::after{
  content:"";
  position:absolute;
  top:0; bottom:0; width:8%;
  pointer-events:none; z-index:2;
}
.prod-banner__services .services-mask::before{
  left:0;
  background:linear-gradient(to right, var(--banner-bg), rgba(11,11,11,0));
}
.prod-banner__services .services-mask::after{
  right:0;
  background:linear-gradient(to left, var(--banner-bg), rgba(11,11,11,0));
}

/* 2) A subtle under-glow bar beneath the scrolling text */
.prod-banner__services::after{
  content:"";
  position:absolute;
  left:50%; transform:translateX(-50%);
  width:100%;
  top: calc(100% - 12px);   /* sits just under the text row */
  height:42px;
  background: radial-gradient(ellipse at center,
              rgba(255,106,0,.18) 0%, rgba(255,106,0,0) 60%);
  filter: blur(12px);
  opacity:.55;
  pointer-events:none;
  z-index:1;
}

/* 3) Slight text glow (very gentle) */
.prod-banner__services span{
  text-shadow: 0 0 6px rgba(255,255,255,.08),
               0 0 14px rgba(255,106,0,.12);
}
/* ============================
   TYPOGRAPHY NORMALIZATION PATCH
   (place at END of style.css)
   ============================ */

/* 1) Tokens */
:root{
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-display: "Clashdisplay", var(--font-sans);

  /* fluid type scale */
  --h1: clamp(38px, 5.5vw, 76px);
  --h2: clamp(28px, 3.2vw, 48px);
  --h3: clamp(22px, 2.2vw, 32px);
  --body: clamp(16px, 1.15vw, 18px);
}

/* 2) Global base */
html, body{
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* inherit form controls (stops odd font mixing) */
button, input, select, textarea { font: inherit; }

/* 3) Headings use display family */
h1, h2, h3,
.display,
.prod-banner__title{
  font-family: var(--font-display);
  letter-spacing: .01em;
}

/* base sizes (scoped after everything so they win) */
h1{ font-size: var(--h1); line-height: 1.15; font-weight: 700; }
h2{ font-size: var(--h2); line-height: 1.18; font-weight: 700; }
h3{ font-size: var(--h3); line-height: 1.22; font-weight: 600; }
body, p, li{ font-size: var(--body); }

/* 4) Neutralize the broad section/article h1 rule */
section h1, article h1, aside h1, nav h1{
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

/* 5) Stop component-level overrides from forcing other families */
.powerpr-editorial-modern,
.ai-banner,
.numbers-item{
  font-family: inherit !important; /* keep site-wide choice */
}

/* If any component set Clashdisplay for general text, return it to body sans  */
.numbers-item,
.ai-banner .some-inner,
[class*="text-modern"]{
  font-weight: inherit;
  font-family: inherit !important;
}

/* 6) Ensure hero/banner typography matches the system */
.prod-banner__copy,
.prod-banner__services{
  font-family: var(--font-display); /* or switch to var(--font-sans) if you want same as body */
}

/* 7) Small quality-of-life tweaks */
strong, b{ font-weight: 700; }
em, i{ font-style: italic; }
/* ===== Why Choose Us ===== */
.chooseus-section{
  --bg: #0b0b0b;
  --fg: #fff;
  --muted: rgba(255,255,255,.6);
  --accent: var(--banner-accent, #ff6a00);
  --grid-gap: clamp(20px, 2.5vw, 36px);
  background: var(--bg);
  color: var(--fg);
  padding: clamp(56px, 8vw, 120px) 0;
}

/* KPIs (top row) */
.chooseus-kpis{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-bottom: clamp(28px, 6vw, 72px);
}
.kpi-num{ font-family: var(--font-display, inherit); font-weight: 800; font-size: clamp(26px, 3.6vw, 44px); line-height: 1.1; }
.kpi .count{ display: inline-block; min-width: 2ch; }
.kpi-label{ margin-top: 6px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Middle heading + CTA */
.chooseus-head{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: end;
  gap: var(--grid-gap);
  margin-bottom: clamp(36px, 7vw, 90px);
}
.overline{ grid-column: 1 / -1; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.chooseus-title{ font-family: var(--font-display, inherit); font-weight: 800; font-size: clamp(28px, 5vw, 58px); line-height: 1.12; margin: 0; }
.chooseus-cta{
  justify-self: end; align-self: center; text-decoration: none; color: var(--fg);
  font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
}
.chooseus-cta:hover{ border-color: rgba(255,255,255,.35); }

/* Rings grid */
.chooseus-rings{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.ring{ text-align: center; }

.ring-graph{
  width: clamp(160px, 21vw, 220px);
  aspect-ratio: 1/1;
  margin: 0 auto 16px;
  position: relative;
}
.ring-graph svg{
  width: 100%; height: 100%;
  transform: rotate(-90deg); /* 0 starts at top */
  overflow: visible; position: relative; z-index: 1;
}
.ring-graph .track{ fill: none; stroke: rgba(255,255,255,.16); stroke-width: 12; }
.ring-graph .progress{
  fill: none; stroke: var(--accent); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 490; stroke-dashoffset: 490; transition: stroke-dashoffset 1.2s ease-out;
}

/* centered value */
.ring-center{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; justify-content: center; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-display, inherit); font-weight: 800; font-size: clamp(18px, 2.4vw, 28px); line-height: 1; z-index: 2;
}
.ring-num{ line-height: 1; }
.ring-unit{ line-height: 1; font-size: .55em; } /* set to 1em if you want same size */

/* label */
.ring-label{ text-transform: uppercase; letter-spacing: .15em; font-size: 12px; color: var(--muted); }

/* Responsive */
@media (max-width: 1024px){
  .chooseus-kpis{ grid-template-columns: repeat(2,1fr); }
  .chooseus-head{ grid-template-columns: 1fr; }
  .chooseus-cta{ justify-self: start; }
  .chooseus-rings{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .kpi-num{ font-size: clamp(22px, 8vw, 34px); }
  .chooseus-title{ font-size: clamp(24px, 9vw, 40px); }
}
@media (prefers-reduced-motion: reduce){
  .ring-graph .progress{ transition: none; }
}
/* Services cards (3 per row, 2 rows) */
.dp-cards{ padding: 32px 0; }
.dp-cards .container{ max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.dp-cards__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 32px;
}

/* Card */
.dp-card{
  position: relative;
  display: block;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;                 /* ← no black box */
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  aspect-ratio: 205 / 244;                 /* ≈ 410×488 look */
}

.dp-card__media{ position: relative; display: block; width: 100%; height: 100%; }
.dp-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}
.dp-card:hover img{ transform: scale(1.04); }

/* Bottom gradient + label */
.dp-card__grad{
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 60%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.dp-card__label{
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  font-weight: 800; color: #fff;
  font-size: clamp(16px, 1.6vw, 20px);
  display: inline-flex; align-items: center; gap: 8px;
}
.dp-card__arrow{ transition: transform .3s ease; }
.dp-card:hover .dp-card__arrow{ transform: translateX(4px); }

/* Responsive */
@media (max-width: 992px){
  .dp-cards__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
}
@media (max-width: 560px){
  .dp-cards__grid{ grid-template-columns: 1fr; gap: 22px; }
}
/* Section header */
.dp-cards__head{ margin: 6px 0 22px; }
.dp-cards__eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom:8px;
}
.dp-cards__title{
  margin:0;
  font-weight:800;
  line-height:1.12;
  font-size: clamp(24px, 3.2vw, 44px);
}

/* If you prefer centered: uncomment
.dp-cards__head{ text-align:center; }
*/
/* 1) any decorative overlay should NOT catch clicks */
.line_animation,
.line_animation * {
  pointer-events: none;        /* clicks pass through */
}

/* 2) make sure the cards sit above backgrounds */
.dp-cards,
.dp-cards__grid,
.dp-card {
  position: relative;
  z-index: 10;
}

/* 3) the anchor is the hit target, inner overlays don't block it */
.dp-card { display: block; }
.dp-card__grad,
.dp-card__label,
.dp-card__media img {
  pointer-events: none;        /* let the <a> receive the click */
}

