/* --- Global Reset & Base --- */
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif !important;
  color: #333;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ===== Buttons ===== */
.cta-group {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btnprimary {
  text-decoration: none;
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  background-color: #007bff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition:
    background-color 0.3s,
    opacity 0.3s;
}

.btnprimary:hover {
  text-decoration: none;
  background-color: #0056b3;
  color: #fff;
}

.btnsecondary {
  background-color: transparent;
  font-family: "Inter", sans-serif !important;
  text-decoration: none;
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s;
  cursor: pointer;
  color: #007bff;
  border: 2px solid #007bff !important;
}

.btnsecondary:hover {
  text-decoration: none;
  border-color: #0056b3 !important;
  background-color: #0056b3 !important;
  color: #fff;
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ===== HERO SECTION ===== */
.hero-content {
  padding: 60px 0;
  background: radial-gradient(at top, #eff2ff 0%, #e6ecff 100%);
  overflow: hidden;
  height: auto;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0;
}

.hero-text h1 span {
  background: #3553ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: clamp(14px, 1.2vw, 18px);
  margin: 10px 0 20px;
  opacity: 0.9;
}

/* ===== RIGHT MEDIA ===== */
.hero-media {
  position: relative;
  text-align: center;
}

.gif-wrapper {
  position: relative;
  width: 100%;
}

.tablet-gif {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Optional overlay (if you enable later) */
.overlay-gif {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35%;
  width: clamp(180px, 35vw, 320px);
  height: auto;
  z-index: 2;
}

.client-logos {
  display: flex; /* 🔥 REQUIRED */
  flex-direction: row; /* force same row */
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 24px;
  flex-wrap: nowrap; /* prevent wrapping */
}
.logo-big {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.logo-small {
  width: 170px;
  max-width: 100%;
  height: auto;
  opacity: 0.95;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .client-logos {
    gap: 8px;
  }

  .logo-big {
    width: 250px;
  }

  .logo-small {
    width: 120px;
  }

  .tablet-gif {
    max-width: 650px;
  }
}

/* Tablets / small laptops */
@media (max-width: 991px) {
  .hero-content {
    padding: 45px 0;
    text-align: left;
  }

  /* ✅ H1 + P for tablet */
  .hero-text h1 {
    font-size: 20px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-group {
    justify-content: flex-start;
    gap: 16px;
  }

  .gif-wrapper {
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .tablet-gif {
    max-width: 620px;
  }

  .client-logos {
    margin-top: 18px;
  }

  /* keep logos in same row on tablet */
  .client-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .logo-big {
    width: 180px;
    height: auto;
  }

  .logo-small {
    width: 100px;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-content {
    padding: 50px 0;
    text-align: center;
  }

  /* ✅ H1 + P for mobile */
  .hero-text h1 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0;
  }

  .hero-text p {
    font-size: 15px;
    margin: 10px 0 16px;
  }

  .cta-group {
    justify-content: center;
    gap: 12px;
  }

  .btnprimary,
  .btnsecondary {
    padding: 8px 18px;
    font-size: 15px;
  }

  .hero-media {
    margin-top: 20px;
  }

  .gif-wrapper {
    margin-top: 18px;
    margin-bottom: 0;
  }

  .tablet-gif {
    max-width: 100%;
  }

  /* ✅ LEFT LOGOS IN 2 ROWS ON MOBILE */
  .client-logos {
    display: flex !important;
    flex-direction: column !important; /* 🔥 2 rows */
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    flex-wrap: nowrap !important;
  }

  /* override any old rule like .client-logos img { width:100% } */
  .client-logos img {
    width: auto !important;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .logo-big {
    width: 100%; /* row 1 */
  }

  .logo-small {
    width: 100%; /* row 2 */
  }

  .overlay-gif {
    bottom: -22%;
    width: min(240px, 75%);
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-content {
    padding: 45px 0;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .logo-big {
    width: 210px;
  }

  .logo-small {
    width: 120px;
  }
}

/* ---------------------------------------------------------------------time line--------------------------------------- */
:root {
  --primary-plum: #5f95ff;
  --dot-color: #5f95ff;
}

/* REMOVED RESET STATE - Everything is visible by default */

.timeline-main-container {
  padding: 50px 0;
  margin: 0 auto;
  position: relative;
  font-family: "Inter", sans-serif !important;
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 100px 0px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

/* 1. TIMELINE TRACK (DESKTOP) */
.timeline-track {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 90%; /* Set to final width immediately */
  height: 3px;
  border-top: 3px dashed #0072ec;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-track::after {
  content: ">";
  position: absolute;
  right: -5px;
  top: -23px;
  color: #007bff;
  font-size: 26px;
  font-weight: bold;
}

/* 2. CIRCLES */
.step-item {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* TEXT */
  color: #333;
  font-size: 22px;
  font-weight: 600;
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(to bottom, #7c3aed, #0066ff) border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transform: scale(1);
}
.step-circle span {
  background: linear-gradient(to bottom, #7c3aed, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* 3. CARDS */
.process-card {
  position: absolute;
  width: 240px;
  background: linear-gradient(to bottom, #0066ff, #4f46e5);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  opacity: 1; /* Always visible */
  border-bottom: 2px solid #000000b0;
}

.process-card h6 {
  color: rgb(255, 255, 255);
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
}

.process-card p {
  color: #333;
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
}

.step-item.odd .process-card {
  bottom: 90px;
}

.step-item.even .process-card {
  top: 90px;
}

.arrow-indicator {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 50%;
  transform: translateX(-50%);
}

.odd .arrow-indicator {
  border-top: 15px solid #4f46e5;
  bottom: -15px;
}

.even .arrow-indicator {
  border-bottom: 15px solid #0066ff;
  top: -15px;
}

/* --- FIXED MEDIA QUERIES (NO ANIMATION) --- */
@media (max-width: 991px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    min-width: auto;
    padding: 30px 0;
  }

  .timeline-track {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 3px;
    height: 85%; /* Set to final height immediately */
    border-top: none;
    border-left: 3px dashed var(--primary-plum);
    z-index: 1;
    transform: translateX(-50%);
    overflow: visible;
  }

  .timeline-track::after {
    content: "▼" !important;
    position: absolute;
    bottom: -15px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-plum);
    font-size: 18px;
    line-height: 1;
    opacity: 1; /* Always visible */
  }
  .step-item {
    flex-direction: column;
    margin-bottom: 50px;
    width: 100%;
    position: relative;
  }

  .step-circle {
    margin: 0 auto;
    z-index: 3;
  }

  .process-card {
    position: absolute;
    top: 50% !important;
    bottom: auto !important;
    width: calc(50% - 60px);
    height: auto;
    transform: translateY(-50%) !important; /* Center vertically */
    opacity: 1; /* Always visible */
  }

  .step-item.odd .process-card {
    left: 0;
  }

  .step-item.even .process-card {
    right: 0;
  }

  .arrow-indicator {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  .step-item.odd .arrow-indicator {
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    border-left: 15px solid var(--primary-plum) !important;
    border-right: none !important;
    right: -15px !important;
    left: auto !important;
  }

  .step-item.even .arrow-indicator {
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    border-right: 15px solid var(--primary-plum) !important;
    border-left: none !important;
    left: -15px !important;
  }
}

@media (max-width: 576px) {
  .timeline-main-container {
    padding: 0px 0;
  }
  .process-wrapper {
    padding: 30px 0;
  }
  .step-item {
    margin-bottom: 50px;
  }
  .process-card {
    width: calc(50% - 40px);
    padding: 8px;
  }
  .process-card h6,
  .process-card p {
    font-size: 11px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .process-wrapper {
    padding: 220px 0;
  }
  .process-card {
    width: 200px;
  }
  .step-item.odd .process-card {
    bottom: 80px;
  }
  .step-item.even .process-card {
    top: 80px;
  }
}
/* ========================================== */

.v-process-wrapper {
  position: relative;
  padding: 80px 0;
}

.v-timeline-track {
  position: absolute;
  top: 90px;
  bottom: 95px;
  left: 50%;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #006cdf,
    #006cdf 6px,
    transparent 6px,
    transparent 12px
  );
  transform: translateX(-50%);
  transform-origin: top;
}

.v-timeline-track::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #007bff;
  z-index: 2;
}

.v-step-item {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.v-step-item:last-child {
  margin-bottom: 0;
}

.v-step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* white background + gradient border */
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(to top, #0066FF, #7C3AED) border-box;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
  opacity: 1;
  transform: none;
}

/* gradient text */
.v-step-circle span {
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(to top, #0066FF, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.v-process-card {
  position: absolute;
  width: 300px;
  background: linear-gradient(to bottom, #0066FF, #4F46E5);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #000000;
  opacity: 1;
  transform: none;
}

.v-step-item.odd .v-process-card {
  left: calc(50% - 350px);
}

.v-step-item.even .v-process-card {
  right: calc(50% - 350px);
}

.v-arrow-indicator {
  position: absolute;
  top: 16px;
  width: 0;
  height: 0;
}

.v-step-item.odd .v-arrow-indicator {
  right: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #005be5;
}

.v-step-item.even .v-arrow-indicator {
  left: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #005be5;
}

.v-process-card h6 {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.v-process-card p,
.v-process-card li {
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .v-timeline-track {
    left: 30px;
    transform: none;
  }

  .v-step-item {
    justify-content: flex-start;
    padding-left: 2px;
    display: flex;
    flex-direction: row !important;
  }

  .v-step-item.odd {
    flex-direction: row-reverse !important;
    justify-content: flex-end;
  }

  .v-process-card {
    position: relative !important;
    width: calc(100% - 80px) !important;
    left: auto !important;
    right: auto !important;
    margin-left: 25px;
    opacity: 1;
    transform: none;
  }

  .v-step-circle {
    min-width: 58px;
    width: 58px;
    z-index: 5;
    opacity: 1;
    transform: none;
  }

  .v-step-item.odd .v-arrow-indicator,
  .v-step-item.even .v-arrow-indicator {
    left: -11px;
    right: auto;
    border-left: 0;
    border-right: 12px solid #007bff;
  }

  .v-timeline-track {
    z-index: 1;
  }
}

/* -------------------------------------------------------------------------timeline--------------------------------------- */

.hhh {
  font-size: 2.5rem;
  font-weight: 600;
}

/* Base section styling */
.product-showcase {
  position: relative;
  padding: 50px 0 80px;
  overflow: hidden;
  text-align: center;
  scroll-margin-top: 60px;
}

.background-color-block {
  /* background: linear-gradient(180deg, #9edaff 0%, #9f93fd 100%); */
  background-color: rgb(239, 245, 255);
  height: 380px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
}

.sectiontitle {
  font-weight: 700;
  font-size: 2.5rem;
  color: #333;
  position: relative;
  z-index: 10;
  text-align: justify;
}

/* Section Title + Subtitle */
.section-header {
  z-index: 10;
  max-width: 850px;
  margin: 0 auto;
}

.sectionsubtitle {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

/* Card styling */
.showcase-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgb(200, 200, 200);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 20px 20px 0 0;
  transition: 0.3s;
}

.showcase-card.open-source::before {
  background: linear-gradient(90deg, #0066FF, #7C3AED);
}

.showcase-card.closed-source::before {
  background: linear-gradient(90deg, #2344ff, #683fc7);
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #f0f2f3;
  color: #2176ff;
  transition: 0.3s;
}
.showcase-card:hover {
   background: linear-gradient(130deg, #EDE3FF 0%, #AAF0FD 100%);
}

.showcase-card:hover .icon-wrapper {
  background: linear-gradient(130deg, #0066FF 0%, #7C3AED 100%);
  color: #fff;
  transform: scale(1.1);
}

/* Typography and features */
.card-title {
  font-weight: 700;
  color: #171717;
  margin-bottom: 15px;
}

.card-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.feature-list li {
  margin: 8px 0;
  font-size: 0.89rem;
  color: #292929;
  font-family: "Inter", sans-serif !important;
}

.feature-list i {
  color: #126dff;
  margin-right: 8px;
}

/* CTA wrapper */
.cta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/* Base button style */
.cta-btn {
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

/* Primary button */
.cta-primary {
  background-color: #007bff;
  border: 2px solid #007bff;
  color: #ffffff;
}

.cta-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #ffffff !important;
  text-decoration: none;
}

/* Secondary button */
.cta-secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.cta-secondary:hover {
  background-color: #0056b3;
  color: #ffffff !important;
  border-color: #0056b3;
  text-decoration: none;
}

/* Remove focus outline */
.cta-btn:focus,
.cta-btn:active {
  outline: none;
  box-shadow: none;
}

/* Floating CTA */
.floating-cta {
  position: relative;
  z-index: 20;
  display: inline-block;
  background-color: #8b4298;
  color: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 50px;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.floating-cta:hover {
  background-color: #722a7d;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .background-color-block {
    height: 300px;
    border-radius: 0;
  }
}

/* =======================
   TABLET VIEW FIX
   ======================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .showcase-card {
    padding: 30px 20px;
    height: 400px;
  }

  .card-title,
  .card-text,
  .feature-list li {
    font-size: 0.7rem;
  }

  /* CTA buttons stay in ONE LINE */
  .cta {
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 20px;
    /* pushes it UP from bottom */
  }

  .cta-btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Icons slightly smaller for tablet */
  .icon-wrapper {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  /* Subtitle alignment fix */
  .sectionsubtitle {
    font-size: 14px;
    text-align: left;
  }

  /* Keep icon + text aligned */
  .feature-list i {
    flex-shrink: 0;
  }

  /* Optional: reduce card padding */
  .showcase-card {
    padding: 28px 18px;
  }
}

@media (max-width: 767.98px) {
  .product-showcase {
    padding: 30px 0 60px;
  }

  .background-color-block {
    height: 260px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }

  .section-header {
    padding: 0 20px;
  }

  .sectiontitle {
    font-size: 1.6rem;
  }

  .sectionsubtitle {
    font-size: 13px;
  }

  .showcase-card {
    padding: 30px 20px;
  }

  .icon-wrapper {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text,
  .feature-list li {
    font-size: 0.85rem;
  }

  .cta {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn {
    width: 80%;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #844657;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.2s;
}

.floating-cta:hover {
  background-color: #5c2e3b;
  text-decoration: none;
  color: white;
}

.floating-cta i {
  font-size: 1.2em;
  background-color: #fff;
}

.servicess {
  scroll-margin-top: 90px;
  margin-top: 30px;
}

/* GRID LIKE IMAGE */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 25px;
}

/* CARD UI */
.service-card {
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
/* Hover effect like modern UI */
.service-card:hover {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  background: linear-gradient(135deg, #EDE3FF 0%,#AAF0FD 100%);
}

/* ICON SQUARE */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* icon sizes */
.icon-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

/* Background colors like screenshot */
.icon-box.blue {
  background: linear-gradient(to bottom, #0066FF, #4F46E5);
}
.icon-box.purple {
  background: linear-gradient(to bottom, #4F46E5, #7C3AED);
}
.icon-box.orange {
  background: linear-gradient(to bottom, #FF6B6B, #FF8A5B);
}

/* TITLE like screenshot (black, bold, not gradient) */
.service-title-ui {
  font-size: 22px;
  font-weight: 600;
  color: #272a30;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Inter", sans-serif !important;
}

/* ---------- Responsive ---------- */

/* tablet: 2 columns */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-title-ui {
    font-size: 20px;
  }
}

/* mobile: 1 column */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 18px;
    border-radius: 14px;
  }

  .service-title-ui {
    font-size: 18px;
  }
}

/* ---------- Tabs Section ---------- */
.tab-navigation {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  border-bottom: 2px solid #e8edff;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  margin-bottom: 30px;
}

.tab {
  flex: 0 0 auto;
  padding: 12px 25px;
  border-radius: 25px;
  background-color: #e0eaff;
  cursor: pointer;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab.active {
  background-color: #54264e;
  color: white;
  box-shadow: 0 4px 10px rgba(229, 30, 209, 0.3);
}

.tab-content,
.info-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active,
.info-content.active {
  display: block;
}

/* ---------- Sidebar Section ---------- */
.content-wrapper {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.sidebar {
  width: 280px;
  border-right: 1px solid #cee6ff;
}

.menu-item {
  padding: 18px 25px;
  cursor: pointer;
  border-left: 4px solid transparent;
  color: #5f6368;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgb(249, 249, 249);
}

.menu-item:hover {
  background: #cee6ff;
  color: #2344ff;
}

.menu-item.active {
  background: #4561ff;
  color: #fff;
  border-left-color: #001485;
}

.main-content {
  flex: 1;
  padding: 40px 50px;
   background: linear-gradient(135deg, #EDE3FF, #AAF0FD);
}

.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
  font-family: "Inter" sans-serif;
}

.content-section.active {
  display: block;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.content-section p {
  text-align: justify;
  font-size: 15px;
}

/* ---------- Responsive Design ---------- */

/* Medium devices (tablets) */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    /* Stack sidebar above content */
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .main-content {
    padding: 30px 25px;
  }

  .menu-item {
    padding: 15px 20px;
    font-size: 14px;
  }
}

/* Small devices (mobile) */
@media (max-width: 768px) {
  .tab-navigation {
    padding-bottom: 6px;
    gap: 8px;
  }

  .tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .main-content {
    padding: 25px 20px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .sidebar {
    padding: 0;
  }

  .menu-item {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* Extra small devices (small mobile) */
@media (max-width: 480px) {
  .tab {
    padding: 8px 12px;
    font-size: 13px;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .content-section p {
    font-size: 13px;
  }

  .main-content {
    padding: 20px 15px;
  }

  .menu-item {
    padding: 10px 15px;
    font-size: 12px;
  }
}

.card-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 10px;
}

.video-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-card iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* Pagination & arrows */
.swiper-pagination-bullet {
  background: #834b67;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #834b67;
}

@media (max-width: 1000px) {
  .video-card iframe {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .video-card iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .video-card iframe {
    height: 200px;
  }
}

.glass-buttons {
  text-align: center;
  margin: 50px 0;
}

/* Glass button container */
.glass-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(to bottom, #2563eb, #3730b6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-buttons a:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Optional: make buttons responsive */
@media (max-width: 480px) {
  .glass-buttons a {
    padding: 10px 10px;
    font-size: 14px;
  }
}

/* Chat Button */
.demo-badge {
  position: fixed;
  bottom: 40px;
  right: 90px;
  background: rgb(255, 201, 244);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

.chat-btn {
  position: fixed;
  bottom: 35px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #844680;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.2s;
}

.chat-btn:hover {
  transform: scale(1.05);
  background: #60323e;
}

@media (max-width: 968px) {
  .content-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-badge {
    display: none;
  }
}

.client-highlight {
  background: linear-gradient(135deg, #ebf5ff, #f7eeff);
}

.section-subtitle {
  color: #1a6aff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sectiontitle {
  font-size: 2.2em;
  font-weight: 800;
  color: #262626;
  margin-bottom: 25px;
}

.client-review {
  font-size: 1.1em;
  color: #55596f;
  line-height: 1.6;
  margin-bottom: 30px;
}

.highlight-quote {
  font-style: italic;
  font-size: 1.2em;
  color: #1a6aff;
  border-left: 4px solid #094ac3;
  padding-left: 15px;
  margin-bottom: 25px;
}

.client-role {
  color: #55596f;
  font-size: 0.95em;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  /* spacing between image and text */
  justify-content: flex-start;
  margin-top: 15px;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.client-role {
  font-size: 1em;
  color: #55596f;
  text-align: left;
}

.company-logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}

.right-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.right-image {
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .right-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .section-subtitle {
    margin-top: 20px !important;
    text-align: left !important;
  }
}

@media (max-width: 991.98px) {
  .client-highlight {
    text-align: center;
  }

  .sectiontitle {
    font-size: 1.9em;
  }

  .client-logo {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .client-highlight {
    text-align: center;
  }

  .section-subtitle {
    margin-top: 20px !important;
  }

  .section-subtitle {
    margin-top: 20px !important;
    text-align: left !important;
  }

  .sectiontitle {
    text-align: left;
    font-size: 1.2rem;
  }

  .client-info {
    font-size: 1rem;
    text-align: start;
  }

  .client-review {
    font-size: 1rem;
    text-align: justify;
  }
}

.footer-copyright ul li {
  display: inline-block;
}

.footer-copyright ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 2px solid #fff;
  opacity: 80%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer_copyright {
  color: #fff;
  opacity: 80%;
}

.footer-campaign {
  text-align: center;
  background: linear-gradient(to bottom, #181f2d, #181a3d) !important;
}

.col-form-label,
.control-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.45;
}

.row,
.form-horizontal .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

form label {
  font-weight: 700;
}

.mb-12 {
  margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
  padding: 10px 0;
  text-align: center;
}

.cta-popup {
  display: flex;
  justify-content: center;
  margin: 0;
}

@media (max-width: 767px) {
  .cta-popup {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* Button wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

/* Primary button */
.btn-primary-cta {
  background: #0066FF;
  color: #fff;
  padding: 6px 32px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  font-size: 16px;
  font-family: "Inter", sans-serif !important;
}

.btn-primary-cta:hover {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}

/* Secondary button */
.btn-outline-cta {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 6px 28px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif !important;
}

.btn-outline-cta:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 991px) {

  .btn-primary-cta,
  .btn-outline-cta {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;              /* clean mobile look */
    max-width: 280px;         /* prevents oversized buttons */
    padding: 12px 0;
    font-size: 15px;
  }
}


/* ============================================== */
:root {
  --dark-purple: #3f59ff;
  --light-purple: #b3bdff;
  --card-height: 125px;
  --gap: 8px;
}

.ts-header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.video-card-main {
  border: 1px solid #d7d7d7;
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  box-shadow: 0px 2px 6px rgb(78, 78, 78);
}

.video-top-section {
  padding: 30px;
  flex-grow: 1;
  position: relative;
}

.iframe-container {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-title-area {
  padding: 10px 30px;
}

.video-title-area h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.video-footer-banner {
  background-color: var(--dark-purple);
  color: white;
  padding: 18px 35px;
  display: flex;
  align-items: center;
  border-top-right-radius: 70px;
  width: 400px;
}

.user-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 15px;
}

.user-info h6 {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}

.user-info p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.scroller-viewport {
  height: 500px;
  overflow-y: scroll;
  position: relative;
  /* border: 1px solid #d7d7d7; */
  border-radius: 25px;
  /* box-shadow: 0px 2px 6px rgb(78, 78, 78); */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroller-viewport::-webkit-scrollbar {
  display: none;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.testimonial-side-card {
  min-height: var(--card-height);
  /* background-color: var(--light-purple); */
  border: 1px solid rgba(209, 209, 209, 0.372);
  border-radius: 20px;
    box-shadow: 0 5px 5px rgba(42, 15, 30, 0.175);
  padding: 15px;
  color: rgb(41, 41, 41);
  display: flex;
  cursor: pointer;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.testimonial-side-card.active {
  background: linear-gradient(135deg, #EDE3FF, #AAF0FD);
    color: #000000;
}

.testimonial-side-card.active .card-hr {
  border-top: 1px solid #7490ff81;
  margin: 5px 0;
}

.testimonial-side-card.active h6 {
 color: #000;
}
.testimonial-side-card.active p {
 color: #3186f6;
}
.testimonial-side-card img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 15px;
  flex-shrink: 0;
  object-fit: cover;
}

.card-body-text {
  flex-grow: 1;
}

.card-body-text p {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 5px;
  color: #475569;
}

.card-hr {
  border-top: 1px solid rgba(211, 211, 211, 0.807);
  margin: 5px 0;
}

.card-body-text h6 {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  color: #2942ff;
}

.card-body-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* --- RESPONSIVE QUERIES --- */
@media (min-width: 992px) and (max-width: 1199px) {
  .video-card-main,
  .scroller-viewport {
    height: 550px;
  }

  .video-footer-banner {
    width: 95%;
    border-top-right-radius: 40px;
  }
}

@media (max-width: 991px) {
  .video-card-main,
  .scroller-viewport {
    min-height: 550px;
  }

  .video-footer-banner {
    max-width: 100%;
    border-top-right-radius: 0;
  }
}

@media (max-width: 767px) {
  .scroller-viewport {
    height: 350px;
  }

  .video-footer-banner {
    max-width: 100%;
    border-top-right-radius: 40px;
  }
}

/* ========================================================= */
/* ===== FAQ Section ===== */
.faq-section {
  padding: 40px 0;
}

/* Title */
.faq-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Accordion wrapper */
.faq-accordion {
  width: 100%;
  counter-reset: faq-counter;
}

/* FAQ item card */
.faq-item {
  width: 100%;
  background: #f7faff;
  border: 1px solid #c0d9ff;
  border-radius: 14px;
  box-shadow: 0 5px 5px rgba(42, 15, 30, 0.175);
  margin-bottom: 14px;
  overflow: hidden;
  counter-increment: faq-counter;
}

/* Question button */
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 15px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-align: left;
  font-weight: 500;
  font-size: 15px;
  color: #1d1d1d;
  cursor: pointer;

  border-radius: 14px;
  /* 🔥 keeps radius on hover/active */
  transition: background 0.25s ease;
}

/* Remove focus outline */
.faq-q,
.faq-q:focus,
.faq-q:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Hover state */
.faq-q:hover {
  background: linear-gradient(90deg, #cdecff, #f6f0ff);
}

/* Active (open) state */
.faq-q[aria-expanded="true"] {
  background: #0066FF;
  padding: 10px 18px;
}

/* Question text */
.q-text {
  padding-right: 12px;
  line-height: 1.35;
}

/* Numbering */
.q-text::before {
  content: counter(faq-counter) ". ";
  font-weight: 600;
}

/* Change text color when active */
.faq-q[aria-expanded="true"] .q-text {
  color: #ffffff;
}

/* Arrow icon */
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

/* Arrow shape */
.faq-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #3a61e3;
  border-bottom: 2px solid #3a61e3;
  transform: rotate(45deg);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

/* Rotate arrow when open */
.faq-q[aria-expanded="true"] .faq-icon::before {
  transform: rotate(-135deg);
  border-color: #ffffff;
}

/* Answer */
.faq-a {
  padding: 18px 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  background: #f7fcff;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-q {
    font-size: 15px;
    padding: 14px 14px;
  }

  .faq-q[aria-expanded="true"] {
    padding: 12px 14px;
  }

  .faq-a {
    padding: 0 14px 16px;
  }
}



/* ============================== */
/* ===== CTA SECTION ===== */
.cta-resume {
  background: linear-gradient(to bottom, #0066FF 0%, #7C3AED 100%);
  padding: 70px 20px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-resume h2 {
  font-size: 39px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-resume p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #2563eb;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #1d4ed8;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta-resume {
    padding: 50px 16px;
  }

  .cta-resume h2 {
    font-size: 24px;
  }

  .cta-resume p {
    font-size: 14px;
  }
}
