:root {
  --primary: #6b5bff;
  --accent: #b38bff;
  --text: #121212;
  --muted: #555;
  --bg: #ffffff;
  --radius: 16px;
}

/* Reset + Base */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
.container{width:90%;max-width:1300px;margin:auto;}
.btn{padding:.8em 1.6em;border-radius:var(--radius);font-weight:600;display:inline-block;transition:.3s;}
.btn-primary{background:linear-gradient(135deg,var(--primary),var(--accent));color:#fff;}
.btn-primary:hover{opacity:.9;}
.btn-dark{background:#000;color:#fff;}
.btn-dark:hover{background:#222;}

/* ======= Header ======= */
.nav-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.brand img {
  width: 45px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.nav a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}
.nav a:hover {
  color: var(--primary);
}
#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

/* ======= Hero (Kinescope Embed) ======= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home_hero-video_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home_hero-video_embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 2em;
  text-align: center;
  transform: translateY(20%);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.6em;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.8em;
  color: #eaeaea;
}

.btn-dark {
  background: #000;
  color: #fff;
  padding: 0.9em 1.8em;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.btn-dark:hover {
  background: #1a1a1a;
}

/* ======= Responsive Fix ======= */
@media (max-width: 768px) {
  .hero-content {
    padding: 1em;
    transform: translateY(0);
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .nav {
    display: none;
  }
  #hamburger {
    display: block;
  }
}


/* ===================== AUTO SCROLLING LOGO STRIP ===================== */
.partners {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 3em 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.logo-strip__rail {
  display: flex;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}

.logo-strip__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6em;
  flex-shrink: 0;
}

.logo-strip__track img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.logo-strip__track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-strip__track { gap: 3em; }
  .logo-strip__track img { height: 30px; }
}

/* Projects */
.projects{padding:6em 0;}
.projects h2{text-align:left;font-size:2.5rem;margin-bottom:1.5em;}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2em;
}
.project-card{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:.3s;
}
.project-card:hover{transform:translateY(-6px);}
.project-info{padding:1em;}
.project-info h3{font-size:1.1rem;margin-bottom:.4em;}
.project-info p{color:var(--muted);font-size:.9rem;}
.center-btn{text-align:center;margin-top:2em;}

/* ===================== PROJECTS ===================== */
.projects {
  padding: 6em 0;
  background: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: left;
  margin-bottom: 2em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2.5em;
}

.project-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(107,91,255,0.15);
}

.project-video {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.project-video iframe,
.project-video img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 1.5em;
}
.project-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .4em;
}
.project-info p {
  font-size: .95rem;
  color: var(--muted);
}

.center-btn {
  text-align: center;
  margin-top: 3em;
}
.center-btn .btn-dark {
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.9em 2.4em;
  transition: all .3s ease;
}
.center-btn .btn-dark:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-video { height: 220px; }
}


/* About */
.about{padding:6em 0;background:#fafafa;}
.about-wrap{display:flex;flex-wrap:wrap;gap:3em;align-items:center;}
.about-image{flex:1;}
.about-text{flex:1;min-width:300px;}
.about-text h2{font-size:2.2rem;margin-bottom:.6em;}
.about-text p{color:var(--muted);margin-bottom:2em;}
.review{background:#fff;padding:1.5em;border-radius:var(--radius);box-shadow:0 5px 18px rgba(0,0,0,0.06);}
.reviewer{display:flex;align-items:center;gap:1em;margin-bottom:1em;}
.reviewer img{border-radius:50%;width:60px;height:60px;}
blockquote{font-style:italic;color:#333;}

/* Services */
.services{padding:6em 0;}
.services h2{font-size:2.3rem;margin-bottom:2em;}
.service-groups{display:grid;gap:2em;}
.service-category h4{margin-bottom:.8em;}
.tags{display:flex;flex-wrap:wrap;gap:.7em;}
.tags span{
  background:#f3f3f3;padding:.6em 1em;border-radius:20px;
  font-size:.9rem;transition:.3s;
}
.tags span:hover{background:var(--primary);color:#fff;}

/* ===================== TEAM SLIDER ===================== */
.team-section {
  padding: 6em 0;
  background: #fafafa;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2em;
}

.team-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  flex-wrap: wrap;
  background: #fff;
  padding: 3em;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.team-text {
  flex: 1;
  min-width: 300px;
}
.team-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .8em;
}
.team-text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.team-image {
  flex: 1;
  text-align: center;
}
.team-image img {
  width: 440px;
  max-width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.swiper {
  overflow: hidden;
  padding-bottom: 3em;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--accent);
}
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .team-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2em;
  }
  .team-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
}


/* CTA */
.cta{padding:6em 0;text-align:center;}
.cta h3{font-size:2rem;margin-bottom:1.5em;}

/* Footer */
.footer{background:#f7f7f7;padding:5em 0 2em;}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2em;
  margin-bottom:2em;
}
.footer-grid h4{color:var(--primary);margin-bottom:.5em;}
.footer-grid ul{list-style:none;}
.footer-grid ul li{margin-bottom:.4em;color:var(--muted);}
.footer-grid ul li:hover{color:var(--primary);}
.legal{text-align:center;color:var(--muted);font-size:.9rem;border-top:1px solid #ddd;padding-top:1em;}

/* Responsive */
@media (max-width: 768px) {

  .nav-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
  }

  .nav {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 260px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: 0.35s ease;
    z-index: 9999;
  }

  .nav.open {
    right: 20px;
  }

  .nav a {
    font-size: 1rem;
    font-weight: 600;
  }

  #hamburger {
    display: block;
    font-size: 2rem;
    color: #0d8bff;
    cursor: pointer;
    z-index: 10000;
  }

}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px) {

  .hero {
    min-height: 62vh;
    height: auto;
    padding: 9rem 1.5rem 4rem;
    background:
      radial-gradient(circle at top, rgba(107,91,255,0.25), transparent 45%),
      linear-gradient(180deg, #050505 0%, #101010 55%, #171717 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .home_hero-video_wrapper {
    display: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    transform: none;
  }

  .hero-content h1 {
    font-size: 2.7rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.78);
  }

}
@media (max-width: 768px) {

  .home_hero-video_wrapper {
    display: none;
  }

}
@media (max-width: 768px) {

  .hero {
    min-height: 62vh;
    padding: 9rem 1.5rem 4rem;
    background:
      linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
      ),
      url('/assets/img/mobile-hero1.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
  }

  .home_hero-video_wrapper,
  .hero-overlay {
    display: none;
  }

}
