body {
  background: #05070f I !important;
  color: white;
  font-family: Arial, sans-serif;
}

/* HERO SECTION */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

/* TEXT */
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero p {
  color: #aaa;
  margin: 20px 0 30px;
  font-size: 18px;
}

/* IMAGE */
.hero-visual {
  border: 1px solid #333;
  border-radius: 30px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  display: block;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #3456d3;
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #444;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
}

/* TABLET */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* MOBILE */
@media (max-width: 500px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}


/* === Assesla Services - True Black Dark UI === */

.assesla-services {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  background-color: #000000; /* pure black background */
  color: #eee; /* light text */
  font-family: 'Inter', sans-serif;
}

/* Wrapper grid */
.services-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

/* Left content */
.services-left .eyebrow {
  letter-spacing: 4px;
  font-size: 12px;
  color: #3a59d1; /* vibrant blue */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 20px 0;
  color: #ffffff;
}

.services-left h2 span {
  color: #3a59d1;
}

.services-left p {
  color: #bbb; /* softer white for paragraph */
  max-width: 480px;
  margin-bottom: 34px;
  line-height: 1.7;
  font-weight: 400;
}

.services-cta {
  display: inline-block;
  color: #3a59d1;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.services-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #3a59d1;
  opacity: 0.8;
  transition: width 0.3s ease;
}

.services-cta:hover::after {
  width: 120%;
}

/* Right side service cards */
.services-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each service item */
.service-item {
  background-color: #111111; /* very dark card bg */
  border: 1px solid #222222;
  border-radius: 20px;
  padding: 26px 28px;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Service header */
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-head h3 {
  font-size: 18px;
  font-weight: 600;
  color: #eee;
}

.service-head span {
  color: #666666;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hidden paragraph initially */
.service-item p {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #bbb;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Hover effects */
.service-item:hover {
  border-color: #3a59d1;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.7),
    0 25px 55px rgba(58,89,209,0.35);
  transform: translateY(-6px);
  background-color: #1a1a1a;
}

.service-item:hover p {
  max-height: 140px;
  opacity: 1;
  margin-top: 14px;
}

.service-item:hover .service-head span {
  transform: rotate(180deg);
  color: #3a59d1;
}

/* Responsive */
@media (max-width: 900px) {
  .services-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-left h2 {
    font-size: 34px;
  }
}


/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.build .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.build {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.build h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.build .subtitle {
  color: var(--muted);
  margin-bottom: 50px;
}

.build .card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.build .card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow:
    0 12px 25px rgba(0,0,0,0.45),
    0 25px 50px rgba(52,86,211,0.4);
}

.process-grid div:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.4),
    0 18px 40px rgba(52,86,211,0.35);
}


.build .card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.build .card p {
  color: var(--muted);
}

.build .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(52, 86, 211, 0.35);
}

/* PROCESS */
.process-grid span {
  color: var(--primary);
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

/* WHY */
.why-grid div {
  text-align: center;
  font-weight: 600;
  color: var(--text);
}


.card {
  background: #111;
  padding: 40px;
  border-radius: 20px;
}

/* SLIDER */
.slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 30px;
}

.slide {
  min-width: 240px;
  height: 300px;
  background: #111;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-final-cta {
  text-align: center;
  background: radial-gradient(circle at top, rgba(52,86,211,0.2), transparent 70%);
  padding: 100px 8%;
  border-radius: 20px;
}

.lp-final-cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.lp-final-cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* RESPONSIVE */

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}
/* CREDIBILITY BAR */
.credibility-bar {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cred-box {
  background: #111;
  border: 1px solid #222;
  padding: 18px 22px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
}

/* FAQ */
.faq-box {
  max-width: 800px;
  margin: 20px auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #222;
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: #111;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 18px;
  background: #05070f;
  color: #aaa;
}
/* Portfolio Slider */
.slider-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex-shrink: 0;
  width: 260px;
  text-decoration: none;
}

.project-thumb {
  height: 380px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.8)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  color: rgba(255,255,255,0.35);

  transition: 0.3s ease;
}

.project-thumb:hover {
  transform: scale(1.06);
  border-color: rgba(52, 86, 211, 0.8);
}

.project-name {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* CLIENT WORK SECTION */
.client-work {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.client-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
  color: white;
}

/* SLIDER WRAPPER */
.client-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.client-track {
  display: flex;
  gap: 25px;
  width: max-content;

  animation: scrollSlider 18s linear infinite;
}

/* CLIENT WORK */
.client-work {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.client-title {
  font-size: 42px;
  margin-bottom: 60px;
}

/* SLIDER */
.client-slider {
  overflow: hidden;
  position: relative;
  height: 420px;
}

/* TRACK */
.client-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: webzplotSlide 22s linear infinite;
}

/* CARD = PHONE LOOK */
.client-card {
  min-width: 220px;
  height: 380px;
  border-radius: 32px;
  overflow: hidden;

  background: #0b0f1c;
  border: 1px solid rgba(255,255,255,0.08);

  transform: scale(0.85);
  opacity: 0.6;
  transition: 0.4s ease;

  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* CENTER CARD LOOK */
.client-card:nth-child(4),
.client-card:nth-child(12) {
  transform: scale(1);
  opacity: 1;
}

/* IMAGE */
.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ANIMATION */
@keyframes webzplotSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* MOBILE FIX */
@media (max-width: 768px) {
  .client-card {
    min-width: 190px;
    height: 260px;
  }

  .client-title {
    font-size: 30px;
  }
}
:root {
  --bg: #05050c;
  --card: rgba(255,255,255,0.05);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);
  --primary: #3456d3;
  --border: rgba(255,255,255,0.1);
  --glass: rgba(255,255,255,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

section {
  padding: 100px 8%;
}

/* HERO */
.lp-hero {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.lp-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(52,86,211,0.15);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: 54px;
  margin: 20px 0;
  line-height: 1.15;
}

.lp-hero h1 span {
  color: var(--primary);
}

.lp-hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.lp-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52,86,211,0.5);
}

.btn-secondary {
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* STATS */
.lp-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.lp-stats div {
  text-align: center;
}

.lp-stats strong {
  font-size: 28px;
  display: block;
}

/* TRUST */
.lp-trust {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.lp-clients {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.client {
  padding: 14px 22px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

/* SERVICES */
.lp-services h2,
.lp-process h2,
.lp-why h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 50px;
}

.services-grid,
.process-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
}

.service-card,
.process-grid div,
.why-grid div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.process-grid div:hover,
.why-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(52,86,211,0.4);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
}

/* PROCESS */
.process-grid span {
  color: var(--primary);
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

/* WHY */
.why-grid div {
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

/* FINAL CTA */
.lp-final-cta {
  text-align: center;
  background: radial-gradient(circle at top, rgba(52,86,211,0.2), transparent 70%);
  padding: 100px 8%;
  border-radius: 20px;
}

.lp-final-cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.lp-final-cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lp-hero h1 {
    font-size: 36px;
  }

  .lp-hero p {
    font-size: 16px;
  }

  .services-grid,
  .process-grid,
  .why-grid {
    gap: 15px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}