:root {
  --bg-1: #0b0b16;
  --bg-2: #0f1224;
  --accent-1: #6b6fef; /* blue-purple */
  --accent-2: #a56bff; /* violet */
  --muted: #9aa0c0;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.06);
  --max: 1200px;
}

/* global resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;             /* sits behind everything */
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); /* global bg tone */
}

main {
  position: relative;
  z-index: 1;
}

/* layout container */
.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 20, 0.9);
  padding: 0.7rem 0;
  box-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: -10px;
}

/* brand area */
.brand {
  display: flex;
  align-items: center;
  gap:0px
}

.logo {
  height: 52px;
  width: 100px;
  object-fit: cover;
}

.brand-title {
   font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.3px;
  color: #fff;
  text-shadow: 0 0 8px rgba(106, 111, 239, 0.3);
  padding: 0;      /* REMOVE extra padding */
  margin-left: -25px; /* small spacing between logo & text */
  margin-top: 15px;
  
  
}

/* nav */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all .25s;
  font-size: 1.05rem;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* responsive nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 22px;
}

/* hero */
.section { padding: 80px 0; }
.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 320px;
  max-width: 640px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero text */
.hero-title {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.03;
  margin: 0 0 18px;
  font-weight: 700;
  color: #fff;
}

.hero-sub {
  color: var(--muted);
  margin: 0 0 22px;
}

/* buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #6a6fef, #a56bff);
  color: #fff;
  border: none;              /* removes ugly border */
  padding: 12px 30px;
  border-radius: 50px;       /* smooth pill look */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(106, 111, 239, 0.4);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #7b76ff, #b67bff);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 111, 239, 0.6);
}

.btn.outline {
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  background: transparent;
}

.btn.outline:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* glass card */
.glass-card {
  width: 320px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(5,6,10,0.6);
}

/* small sections */
.card-top { display: flex; justify-content: space-between; align-items: center; }
.chip {
  width: 40px;
  height: 10px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 6px;
}
.ver { font-size: 12px; color: var(--muted); }
.card-title { margin: 12px 0 8px; font-weight: 600; }
.stats { display: flex; gap: 10px; }
.stat {
  text-align: center;
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border-radius: 8px;
  flex: 1;
}
.stat-val { font-weight: 700; }
.sparkline {
  height: 56px;
  background: linear-gradient(90deg, rgba(106,90,255,0.12), rgba(165,107,255,0.08));
  border-radius: 8px;
  margin-top: 12px;
}

/* wave */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  opacity: 0.06;
  fill: #fff;
}

/* contact + footer */
.contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  color: #fff;
}

.site-footer {
  padding: 30px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.03);
  font-size: 0.95rem;
}

/* === ABOUT SECTION === */
.about-hero {
  position: relative;
  background: transparent;
  padding: 120px 0 100px;
  z-index: 1;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* === LEFT CONTENT === */
.about-left {
  flex: 1;
  min-width: 320px;
}

.about-left h2 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #fff;
}

.about-left p {
  color: #d6d6d6;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* === RIGHT CARD BOX === */
.about-right {
  flex: 1;
  min-width: 320px;
}

.card-info {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.card-info h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  border-left: 3px solid #ff7b00; /* subtle accent */
  padding-left: 10px;
}

.card-info p {
  color: #d3d3d3;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }
  .card-info {
    margin-top: 2rem;
  }
  .card-info h3 {
    border-left: none;
    padding-left: 0;
  }
}


/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: -5px;
  
  
}
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}

/* CLIENTS SECTION */
.clients {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 0;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.clients p {
  color: #d3d3d3;
  margin-bottom: 3rem;
}

/* === SLIDER CONTAINER === */
.client-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

/* === SCROLL TRACK === */
.slide-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Smooth infinite scroll */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.client-slider:hover .slide-track {
  animation-play-state: paused;
}

/* Edge fade effect for better visuals */
.client-slider::before,
.client-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.client-slider::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.client-slider::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* === CLIENT CARD === */
/* === CLIENT CARD === */
.client-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border-radius: 20px;
  padding: 40px 50px;
  width: 250px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto; /* prevent shrinking */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);

  /* ✅ Remove link underline and keep color consistent */
  text-decoration: none;
  color: inherit;
}

.client-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
}

/* === CLIENT LOGO === */
.client-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1.2rem;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: brightness(1.1) contrast(1.05);
}

.client-card:hover .client-logo {
  transform: scale(1.05);
}

/* === CLIENT NAME === */
.client-card h4 {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;

  /* ✅ Ensure no underline on text */
  text-decoration: none;
}


/* FOUNDERS SECTION */

 .founders {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(106,111,239,0.15), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(165,107,255,0.12), transparent 60%);
  padding: 100px 20px 140px; /* more bottom padding for spacing */
  margin: 0;
  z-index: 1;
}

.founders::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(106,111,239,0.08), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(165,107,255,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.founders h2,
.founders p,
.founders-grid,
.founders-note {
  position: relative;
  z-index: 1;
}

.founders h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.founders p {
  color: #cfcfcf;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.founders-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.founder-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 30px 25px;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
}

.founder-card h3 {
  font-weight: 600;
  font-size: 1.2rem;
}

.founder-card h5 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.founder-card p {
  color: #d2d2d2;
  font-size: 0.95rem;
  line-height: 1.5;
}

.founder-card .quote {
  font-style: italic;
  margin-top: 0.8rem;
  color: #fff;
}

.founders-note {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
}


/* Add a smooth fade separator at bottom for clean transition */
.founders::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(11,11,22,0), rgba(11,11,22,1));
  z-index: 0;
}



/* contact form */
/* contact form */
.contact-form {
  max-width: 720px;
  margin: 40px auto;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 15px;
  transition: all 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6b6fef;
  background: rgba(255,255,255,0.06);
  outline: none;
  box-shadow: 0 0 4px rgba(107,111,239,0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* button layout + message */
.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* submit button */
.contact-form button {
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #6b6fef, #a56bff);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.85;
}

.form-status {
  color: #8fd19e;
  font-weight: 600;
  font-size: 14px;
}

/* mobile responsive */
@media (max-width: 600px) {
  .contact-form {
    padding: 10px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-form button {
    width: 100%;
  }
}
.form-status {
  color: #8fd19e;
  font-weight: 600;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.b1 {
  width: 500px;
  height: 500px;
  left: -150px;
  top: 5%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.b2 {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 30%;
  background: linear-gradient(90deg, #3cc0ff, #6b6fef);
}

.b3 {
  width: 280px;
  height: 280px;
  left: 15%;
  bottom: -120px;
  background: linear-gradient(90deg, #ffb3f0, #a56bff);
}

/* responsive */
@media (max-width: 860px) {
  .hero-inner { flex-direction: column-reverse; padding-top: 30px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .container { padding: 24px; }
  .brand-title { font-size: 1.6rem; }
}

/* ==========================
   SERVICES SECTION
========================== */
.services {
  position: relative;
  color: #fff;
  padding: 100px 0;
  background: radial-gradient(circle at 20% 30%, rgba(106,111,239,0.15), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(165,107,255,0.12), transparent 60%);
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Layout Wrapper */
.service-layout {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

/* ==========================
   LEFT SIDE (Main Image + Thumbnails)
========================== */
.service-left {
  flex: 1 1 50%;
  text-align: center;
  position: relative;
}

/* Main Image Container */
.main-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
}

.main-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  transition: opacity 0.8s ease, transform 0.3s ease;
  border-radius: 15px;
}

.main-image img:hover {
  transform: scale(1.02);
}

/* Arrow Buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.main-image:hover .arrow-btn {
  opacity: 1;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.arrow-btn.prev {
  left: 10px;
}

.arrow-btn.next {
  right: 10px;
}

/* Thumbnails */
.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail-row .thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-row .thumb:hover,
.thumbnail-row .thumb.active {
  opacity: 1;
  border-color: var(--accent-1, #6a6fef);
  transform: scale(1.05);
}

/* ==========================
   RIGHT SIDE (Text Content)
========================== */
.service-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start; 
  padding-left: 30px;
  text-align: left;
  min-height: 450px;
}

.service-description {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-shadow: 0px 0px 12px rgba(255,255,255,0.06);
}

.service-description.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-description h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff; /* White heading */
  margin-bottom: 1rem;
}

.service-description p {
  font-size: 1.18rem;
  color: #c4a2ff;
  line-height: 1.8;
  max-width: 520px;
  text-shadow: 0px 0px 14px rgba(165,107,255,0.35);
}


/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   RESPONSIVE DESIGN — UPDATED
========================== */

/* TABLETS & SMALL LAPTOPS */
@media (max-width: 992px) {
  .service-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-left,
  .service-right {
    flex: 1 1 100%;
  }

  .service-right {
    margin-top: 25px;
    padding-left: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .service-description h3 {
    text-align: center;
    font-size: 1.8rem;
  }

  .service-description p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 90%;
  }

  .main-image img {
    max-height: 430px;
  }

  .thumbnail-row .thumb {
    width: 70px;
    height: 70px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .main-image img {
    max-height: 350px;
  }

  .thumbnail-row .thumb {
    width: 58px;
    height: 58px;
  }

  .arrow-btn {
    font-size: 1.5rem;
    padding: 6px 10px;
  }

  .service-description h3 {
    font-size: 1.55rem;
  }

  .service-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
}


.onsemble-footer {
  background: #0c0c15;
  padding: 70px 12%;
  color: #d6d6e4;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.06);
}


.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col p {
  line-height: 1.7;
  color: #b6b6c6;
}

.footer-col a {
  color: #a56bff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d1b0ff;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  font-size: 24px;
  color: #b6b6c6;
  transition: 0.2s ease-in-out;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.15);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #808099;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}




