/* ============================================================
   sections.css — ALL CONTENT SECTIONS
   Each block is clearly labelled. Jump to any section to edit.
   ============================================================ */

/* ──────────────────────────────────────────
   LOGO STRIP — TRAIN LOOP
────────────────────────────────────────── */

.logos-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  overflow: hidden;
}

.logos-pre {
    text-align: center;
    font-size: 12px;
    color: #748faf;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
}

.logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-chip {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #748faf;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-chip:hover {
  color: white;
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ──────────────────────────────────────────
   ENTERPRISE BAND (dark)
────────────────────────────────────────── */
/* REPLACE ONLY eb section CSS WITH THIS */

.enterprise-band {
    background: var(--ink);
    padding: 64px 0;
    overflow: hidden;
}

.eb-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.eb-left {
    max-width: 480px;
    width: 100%;
}

.eb-heading {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 14px 0 14px;
}

.eb-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* 🔥 KEY FIX */
.eb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.eb-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-md);
    padding: 20px;
    transition: background 0.2s;
    min-width: 0;
}

    .eb-pill:hover {
        background: rgba(255,255,255,0.09);
    }

.eb-pill-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.eb-pill-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.eb-pill-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
    overflow-wrap: break-word;
}

/* 🔥 MOBILE HARD FIX */
@media (max-width: 768px) {

    .eb-inner {
        flex-direction: column;
        gap: 24px;
    }

    .eb-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ──────────────────────────────────────────
   SMARTLYNE ERP — DEEP DIVE
────────────────────────────────────────── */
.erp-section { background: var(--surface); padding: 96px 0; }

.erp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left: capabilities accordion */
.erp-caps { display: flex; flex-direction: column; margin: 28px 0 36px; }
.erp-cap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.erp-cap:first-child { border-top: 1px solid var(--border); }
.erp-cap:hover .cap-title,
.erp-cap.active .cap-title { color: var(--accent); }
.erp-cap.active .cap-icon  { background: var(--accent-bg); }

.cap-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cap-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.cap-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ERP LEFT IMAGE */
.erp-image {
  margin-top: 40px;
}

.erp-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  display: block;
}



/* Right: module panel */
.erp-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.erp-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.erp-tab:hover,
.erp-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.erp-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.erp-panel-head {
  background: var(--ink);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #fff; }
.panel-badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: var(--accent); color: #fff;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.erp-panel-body { padding: 20px; }
.module-list    { display: flex; flex-direction: column; gap: 10px; }
.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.module-icon {
  font-size: 18px;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.module-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.module-desc { font-size: 12px; color: var(--subtle); }

/* ──────────────────────────────────────────
   INDUSTRY CARDS
────────────────────────────────────────── */
.industries-sec { background: var(--bg); padding: 96px 0; }
.ind-header     { text-align: center; margin-bottom: 56px; }
.ind-grid       { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.ind-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
   transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; */
  cursor: pointer;
}

.ind-grid:hover .ind-card {
  opacity: 0.65;
  transform: scale(0.98);
}

.ind-grid .ind-card:hover {
  opacity: 1 !important;
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: var(--accent);
  z-index: 5;
}

.ind-card-body { padding: 28px 22px 20px; flex: 1; }

.tailored-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.ind-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
px; }
/*.ind-blurb { font-size: 13px; color: var(--muted*//* Industry icon backgrounds */
.ind-blurb {
    font-size: 13px;
    color: var(--muted);
}
.ind-retail .ind-icon { background: #EEF2FF; }
.ind-ngo    .ind-icon { background: #F0FDF4; }
.ind-dist   .ind-icon { background: #FFF7ED; }
.ind-hosp   .ind-icon { background: #FDF4FF; }
.ind-edu    .ind-icon { background: #FFFBEB; }

/*.ind-name  { font-family: var(--font-body); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8); line-height: 1.6; }*/
.ind-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.ind-features {
  padding: 0 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ind-features li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ind-features li::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: var(--border-lt);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%234F46E5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.ind-card-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Initial hidden state */
.ind-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.ind-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* Hide features initially */
.ind-features li {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* When card becomes visible */
.ind-card.show .ind-features li {
  opacity: 1;
  transform: translateX(0);
}
.ind-card.show .ind-features li:nth-child(1) { transition-delay: 0.1s; }
.ind-card.show .ind-features li:nth-child(2) { transition-delay: 0.2s; }
.ind-card.show .ind-features li:nth-child(3) { transition-delay: 0.3s; }
.ind-card.show .ind-features li:nth-child(4) { transition-delay: 0.4s; }
.ind-card.show .ind-features li:nth-child(5) { transition-delay: 0.5s; }

/* Subtle tinted backgrounds */
.ind-retail { background: linear-gradient(180deg, #eef2ff 0%, #ffffff 60%); }
.ind-ngo    { background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 60%); }
.ind-dist   { background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%); }
.ind-hosp   { background: linear-gradient(180deg, #fdf4ff 0%, #ffffff 60%); }
.ind-edu    { background: linear-gradient(180deg, #fffbeb 0%, #ffffff 60%); }



/* Smooth transitions */
.ind-grid:hover .ind-card {
  opacity: 0.6;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* Active hovered card */
.ind-grid .ind-card:hover {
  opacity: 1 !important;
  transform: scale(1.03) translateY(-6px);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ind-card {
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.ind-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: var(--accent);
  transition: height 0.5s ease;
}

/* Grow on hover */
.ind-card:hover::before {
  height: 100%;
}

.ind-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* On hover */
.ind-card:hover .ind-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Spotlight base setup */
.ind-card {
  position: relative;
  overflow: hidden;
}
/* Spotlight layer */
.ind-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    var(--spotlight, rgba(79,70,229,0.18)) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ind-card:hover::after {
  opacity: 1;
}

.ind-retail { --spotlight: rgba(79, 70, 229, 0.25); }   /* Blue */
.ind-ngo    { --spotlight: rgba(34, 197, 94, 0.25); }   /* Green */
.ind-dist   { --spotlight: rgba(249, 115, 22, 0.25); }  /* Orange */
.ind-hosp   { --spotlight: rgba(168, 85, 247, 0.25); }  /* Violet */
.ind-edu    { --spotlight: rgba(234, 179, 8, 0.25); }   /* Yellow */

@keyframes pulseHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(79,70,229,0.6); }
  70%  { box-shadow: 0 0 0 25px rgba(79,70,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,70,229,0); }
}

.pulse-highlight {
  animation: pulseHighlight 1.2s ease;
}


/* ──────────────────────────────────────────
   CASE STUDY SIDE PANEL
────────────────────────────────────────── */

.cs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 90;
}

.cs-panel {
    position: fixed;
    top: 80px;
    right: -100%; 
    width: 500px;
    height: calc(100vh - 80px);
    background: var(--bg);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
    transition: 0.5s cubic-bezier(.77,0,.18,1);
    z-index: 100;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.cs-panel.active {
  right: 0;
}

.cs-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cs-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.cs-panel-title {
  font-size: 18px;
  font-weight: 700;
}

.cs-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.cs-list-view {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.cs-list-view.active {
  display: flex;
}

.cs-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.cs-item:hover {
  border-color: var(--accent);
  background: var(--surface);
}

.cs-detail-view {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.cs-detail-view.active {
  display: flex;
}

.cs-back {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
}
.cs-item .cs-link {
    color: var(--accent) !important;
    text-decoration: none;
    font-weight: 500;
}
.cs-home {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--accent);
    cursor: pointer;
    padding: 0;
}


@media (max-width: 768px) {
    .cs-panel {
        top: 0; /* 🔥 remove 80px gap */
        height: 100vh; /* 🔥 full screen */
        width: 100%;
        right: -100%;
        padding: 20px; /* 🔥 reduce spacing */
        border-radius: 0; /* optional clean look */
    }

        .cs-panel.active {
            right: 0;
        }

    .cs-panel-header {
        margin-bottom: 16px;
    }

    .cs-list-view,
    .cs-detail-view {
        overflow-y: auto; /* 🔥 scroll fix */
    }

    .cs-item {
        padding: 14px;
    }

        .cs-item .cs-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }
    
}


/* ──────────────────────────────────────────
   COMPLETE SOLUTION
────────────────────────────────────────── */
.complete-sec { background: var(--surface); padding: 96px 0; }
.complete-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
.mod-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  transition: all 0.2s;
}
.mod-card:hover { border-color: var(--accent); background: var(--surface); box-shadow: var(--sh-sm); }
.mod-icon  { font-size: 22px; margin-bottom: 8px; }
.mod-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.mod-sub   { font-size: 12px; color: var(--subtle); }

.reasons-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.reason-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 1.5px solid var(--accent-bdr);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
}
.reason-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.reason-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* IMAGE SIDE */
.complete-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  display: block;
}

/* Mobile */
@media (max-width: 992px) {
  .complete-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .complete-image {
    order: -1; /* image on top on mobile */
  }
}


/* ──────────────────────────────────────────
   ANIMATED STATS BAND (SMARTLYNE VERSION)
────────────────────────────────────────── */

.stats-sec.animated-stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;

  /* Dark ink-based animated gradient */
  background: linear-gradient(-45deg,
    var(--ink),
    #4472bb,
    #111827,
    #1e2e53
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* Floating light blobs */
.stats-sec.animated-stats .animated-bg::before,
.stats-sec.animated-stats .animated-bg::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(165, 180, 252, 0.12); /* uses your em highlight color */
  border-radius: 50%;
  filter: blur(100px);
  animation: float 8s ease-in-out infinite alternate;
  z-index: 1;
}

.stats-sec.animated-stats .animated-bg::before {
  top: -120px;
  left: -120px;
}

.stats-sec.animated-stats .animated-bg::after {
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

/* Grid */
.stats-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Glass Cards */
.stat-box {
  text-align: center;
  padding: 40px 20px;
  transition: 0.4s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.249);
  backdrop-filter: blur(10px);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(5, 4, 24, 0.31);
}

/* Numbers */
.stat-num {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(82, 107, 231, 0.471);
}

.stat-num em {
  color: #647df8;
  font-style: normal;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}




/* ================= TESTIMONIALS ================= */
.section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
   font-family: 'Inter', sans-serif;
}

.section-title span {
    color: #5582ec;
}

.testimonials{
    background: #ffffff;
    padding:120px 0;
     
}
.testimonial-card{
    background:white;
    border-radius:10px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}
.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-bottom:20px;
}
.swiper-slide{
    opacity:.5;
    transition:.3s;
}
.swiper-slide-active{
    opacity:1;
    transform:scale(1.05);
}

.testimonial-card h5{
    color:#2A4D88;       
    font-size:24px;       
    font-weight:700;
    margin-bottom:5px;
}

.designation{
    font-size:18px;       
    color:#6c757d;         
    margin-bottom:15px;
    display:block;
    font-weight:500;
}

.testimonial-card p{
    font-size:20px;        
    color:#444;
    line-height:1.6;
}










/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testi-sec { background: var(--bg); padding: 96px 0; }
.testi-head { text-align: center; margin-bottom: 52px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.25s;
}
.tcard:hover { box-shadow: var(--sh-md); }

.tcard-stars span { color: #F59E0B; font-size: 14px; }
.tcard-quote  { font-size: 15px; color: var(--ink-soft); line-height: 1.72; flex: 1; }

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-lt);
}
.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.tcard-name { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--ink); }
.tcard-role { font-size: 12px; color: var(--subtle); margin-top: 1px; }
.tcard-tag  {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ──────────────────────────────────────────
   TESTIMONIAL ANIMATION UPGRADE
   (Swiper-style effect without slider)
────────────────────────────────────────── */

/* Default faded look like swiper */
.testi-grid .tcard {
  opacity: 0.6;
  transform: scale(0.96);
  transition: all 0.4s ease;
}

/* On hover → become active like swiper-slide-active */
.testi-grid .tcard:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: var(--sh-md);
  z-index: 2;
}

/* When hovering grid, dim others slightly */
.testi-grid:hover .tcard:not(:hover) {
  opacity: 0.4;
  transform: scale(0.95);
}

/* ──────────────────────────────────────────
   AUTO ROTATING TESTIMONIAL SLIDER
────────────────────────────────────────── */

.testi-slider {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform 0.8s ease;
}

.tcard {
  min-width: 100%;
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.tcard.active {
  opacity: 1;
  transform: scale(1.05);
}



/* ──────────────────────────────────────────
   360 JUMBOO SECTION
────────────────────────────────────────── */
.jumboo-sec {
  background: #0A140A;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.jumboo-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 500px at 100% 50%, rgba(16,185,129,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.jumboo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.jumboo-kicker .kicker {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.2);
}
.jumboo-title {
  font-family: var(--font-body);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
}
.jumboo-title span { color: #4ade80; }
.jumboo-sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }

.jumboo-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.jfeat { display: flex; align-items: center; gap: 12px; }
.jfeat-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.jfeat-text { font-size: 14px; color: rgba(255,255,255,0.7); }

.jumboo-cards { display: flex; flex-direction: column; gap: 14px; }
.jcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: background 0.2s;
}
.jcard:hover { background: rgba(255,255,255,0.08); }
.jcard-icon  { font-size: 24px; margin-bottom: 10px; }
.jcard-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.jcard-desc  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }



/* ──────────────────────────────────────────
   Kuse ERP SECTION
────────────────────────────────────────── */
.kuseerp-sec {
    background: #0000cd;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.kuseerp {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.kuseerp-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 500px at 100% 50%, rgba(16,185,129,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.kuseerp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kuseerp-kicker .kicker {
    color: #4ade80;
    background: rgba(74,222,128,0.1);
    border-color: rgba(74,222,128,0.2);
}

.kuseerp-title {
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    /* 3D depth */
    text-shadow: 0 2px 0 rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.4), 0 0 20px rgba(74,222,128,0.25);
}

    .kuseerp-title span {
        color: #4ade80;
    }

.kuseerp-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.kuseerp-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.j
kfeat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kfeat-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.kfeat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.kuseerp-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kcard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    transition: background 0.2s;
}

    .kcard:hover {
        background: rgba(255,255,255,0.08);
    }

.kcard-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.kcard-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.kcard-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}



/* ──────────────────────────────────────────
   STEPS / HOW IT WORKS
────────────────────────────────────────── */
.steps-sec { background: var(--surface); padding: 96px 0; }
.steps-header { text-align: center; margin-bottom: 64px; }

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* Connector line between steps */
.steps-track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  transition: all 0.25s;
}
.step:hover .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.35);
}
.step-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ──────────────────────────────────────────
   CTA
────────────────────────────────────────── */
.cta-sec { background: var(--bg); padding: 96px 0; }
.cta-box {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 70% 110%, rgba(79,70,229,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
}
.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ──────────────────────────────────────────
   BOOK DEMO SECTION
────────────────────────────────────────── */

.demo-sec {
  background: #fff;
  padding: 110px 0;
}

.demo-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.demo-box h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
  color: var(--ink);
}

.demo-box p {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: var(--muted);
}

.demo-form {
  margin-top: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
  transition: 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.demo-form textarea {
  margin-bottom: 24px;
  resize: vertical;
}

.demo-form button {
  margin-top: 10px;
}

html {
  scroll-behavior: smooth;
}

/* ──────────────────────────────────────────
   RESPONSIVE — SECTIONS
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ind-grid        { grid-template-columns: repeat(3, 1fr); }
  .erp-inner       { grid-template-columns: 1fr; gap: 48px; }
  .complete-inner  { grid-template-columns: 1fr; gap: 48px; }
  .jumboo-inner    { grid-template-columns: 1fr; gap: 48px; }
  .eb-inner        { flex-direction: column; }
  .eb-grid         { width: 100%; }
}
@media (max-width: 768px) {
  .ind-grid        { grid-template-columns: 1fr 1fr; }
  .stats-inner     { grid-template-columns: 1fr 1fr; }
  .stat-box        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .testi-grid      { grid-template-columns: 1fr; }
  .steps-track     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-track::before { display: none; }
  .module-grid     { grid-template-columns: 1fr 1fr; }
  .cta-box         { padding: 48px 24px; }
}
@media (max-width: 500px) {
  .ind-grid        { grid-template-columns: 1fr; }
}









/* ============================================================
   MOBILE RESPONSIVE FIX PACK
   Add this at the END of sections.css
   ============================================================ */


/* -------- TABLET -------- */

@media (max-width:1024px){

  .wrap{
    padding-left:20px;
    padding-right:20px;
  }

  .ind-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats-inner{
    grid-template-columns:repeat(2,1fr);
  }

  .steps-track{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
  }

  .steps-track::before{
    display:none;
  }

}


/* -------- MOBILE -------- */

@media (max-width:768px){

  section{
    padding:70px 0 !important;
  }

  .h2{
    font-size:28px;
    line-height:1.25;
  }

  .body-md{
    font-size:15px;
  }

  /* HERO */

  .hero{
    padding-top:110px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .hero-meta{
    gap:6px;
    font-size:12px;
  }

  .domain-pills{
    gap:8px;
  }

  .dpill{
    font-size:12px;
    padding:6px 14px;
  }

  /* HERO IMAGE */

  .hero-image-wrap{
    min-height:auto;
  }

  .hero-image{
    min-height:auto;
  }

  /* FLOATERS */

  .hero-floater{
    display:none;
  }
@media (max-width:768px){
  .hero-floater{
    display:none;
  }
}

  /* ERP SECTION */

  .erp-panel{
    margin-top:10px;
  }

  .erp-panel-body{
    padding:16px;
  }

  .module-item{
    padding:10px;
  }

  .module-name{
    font-size:13px;
  }

  .module-desc{
    font-size:11px;
  }


  /* INDUSTRY CARDS */

  .ind-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .ind-card{
    transform:none !important;
  }



  /* COMPLETE SECTION */

  .complete-inner{
    grid-template-columns:1fr;
    gap:40px;
  }


  /* STATS */

  .stats-inner{
    grid-template-columns:1fr;
  }

  .stat-box{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }


  /* TESTIMONIAL */

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


  /* CTA */

  .cta-box{
    padding:40px 24px;
  }

}


/* -------- SMALL MOBILE -------- */

@media (max-width:480px){

  .nav-inner{
    height:54px;
  }

  .hero-heading{
    font-size:30px;
  }

  .hero-sub{
    font-size:15px;
  }

  .btn{
    width:100%;
    justify-content:center;
  }

  .logos-track{
    gap:40px;
    animation-duration:35s;
  }

}



.eb-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

    .eb-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

.eb-card-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.eb-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.eb-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

