:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #3b82f6;
  --cyan:        #0891b2;
  --dark:        #0f172a;
  --dark-card:   #1e293b;
  --dark-mid:    #162032;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --text-main:   #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --border:      #e2e8f0;
  --accent:      #0ea5e9;
}

/* Header section css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
 
 html, body {
  min-height: 100vh;
}

    .cc-section {
      background: radial-gradient(ellipse 120% 90% at 55% 50%, #0c2660 0%, #04102e 65%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 6% 80px;
    overflow: hidden;
  }

  /* ─── BG ─── */
  .cc-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 120% 90% at 55% 50%, #0c2660 0%, #04102e 65%);
  }
  .cc-bg::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(12,60,160,0.32) 0%, transparent 70%);
    border-radius: 50%;
  }
  /* dot grid */
  .cc-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(120,170,255,0.12) 1px, transparent 1px);
    background-size: 38px 38px;
  }

  /* ─── LAYOUT ─── */
  .cc-grid {
    position: relative; z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 56px;
    align-items:  flex-start;
     padding-top: 20px;
  }
  

  /* ─── LEFT ─── */
  .cc-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .cc-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    width: fit-content;
  }
  .cc-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    flex-shrink: 0;
    animation: blink 2.2s ease-in-out infinite;
  }
  @keyframes blink {
    0%,100% { opacity:1; } 50% { opacity:0.25; }
  }

  .cc-h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 4.2vw, 3.7rem);
    line-height: 1.1;
    color: #fff;
  }
  .cc-h1 .cyan {
    color: var(--cyan);
    display: block;
  }

  .cc-desc {
    font-size: clamp(0.93rem, 1.25vw, 1.04rem);
    line-height: 1.85;
    color: white;
    max-width: 490px;
  }

  .cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a6fff 0%, #0050c8 100%);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 4px 22px rgba(26,111,255,0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .cc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(26,111,255,0.55);
    background: #fff;
    color:  rgba(26,111,255,0.55);
  }
  .cc-btn svg { flex-shrink:0; transition: transform 0.2s; }
  .cc-btn:hover svg { transform: translateX(4px); }
.cc-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cc-btn-outline {
  color: #4fa3e0;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cc-btn-outline:hover {
  color: #ffffff;
  text-decoration: underline;
}

.cc-trust {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #7a8fb0;
  flex-wrap: wrap;
}

.cc-trust svg {
  color: #f0a500;
  fill: #f0a500;
}
.cc-btn-outline {
  color: #4fa3e0;
  background: transparent;
  border: 1.5px solid #4fa3e0;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cc-btn-outline:hover {
  background: #4fa3e0;
  color: #ffffff;
}

  /* ─── RIGHT — vertically stacked cards ─── */
  .cc-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 80%;
  }

  .cc-card {
    background: 1E293B;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 28px 26px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition:
      transform    0.32s cubic-bezier(.22,.68,0,1.15),
      border-color 0.28s ease,
      box-shadow   0.28s ease;
    cursor: default;
  }
  /* shimmer top line on hover */
  .cc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,211,245,0.55), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cc-card:hover {
    transform: translateX(8px);
    box-shadow: 8px 0 30px rgba(34,211,245,0.10), 0 6px 28px rgba(0,0,0,0.28);
  }
  .cc-card:hover::after { opacity: 1; }

  /* Icon box */
  .cc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(140deg, #1565e0 0%, #0a3fa0 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(21,101,224,0.45);
    transition: box-shadow 0.28s;
  }
  .cc-card:hover .cc-icon { box-shadow: 0 4px 24px rgba(34,211,245,0.40); }
  .cc-icon svg { width: 26px; height: 26px; color: #fff; }

  .cc-stat {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 7px;
  }
  .cc-stat-label {
    font-size: 0.94rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
  }
  .cc-stat-sub {
    font-size: 0.81rem;
    color: #fff;
    line-height: 1.55;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) {
    .cc-grid {
      grid-template-columns: 1fr;
      gap: 52px;
    }
    .cc-right {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .cc-card { flex: 1 1 220px; }
    .cc-section { padding: 80px 6% 60px; }
  }
  @media (max-width: 520px) {
    .cc-right { flex-direction: column; }
    .cc-h1 { font-size: 2.1rem; }
    .cc-section { padding: 70px 5% 56px; }
  }
  /* ===== SECTION 5 cta section ===== */

  .consultation-section {
    width: 100%;
}
.consultation-section .container {
    max-width: 100% !important;
    padding: 0 !important;
}

.consultation-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #041b4d 0%, #163d86 100%);
    border-radius: 0;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-height: 280px;
}

.consultation-left {
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.consultation-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #18d2ff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.consultation-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #fff;
    color: #1b4ddb;
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.consultation-btn:hover {
    background: #18d2ff;
    color: #041b4d;
}

.consultation-stats {
    display: flex;
    align-items: center;
    gap: 45px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.consultation-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #19d8ff;
    margin-bottom: 8px;
}

.consultation-stat p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.consultation-circle {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(40, 102, 219, 0.35);
}

/* ===== RESPONSIVE ===== */

/* MOBILE */
@media (max-width: 991px) {

    .consultation-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 25px;
    }

    .consultation-stats {
        width: 100%;
        overflow-x: auto;
        gap: 35px;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .consultation-stats::-webkit-scrollbar {
        display: none;
    }
}

/* WHAT WE OFFER SECTION CSS */
/* ── SECTION WRAPPER ── */
.cs-section {
  padding: 90px 5% 100px;
  background:linear-gradient(180deg, #f8faff 0%, #ffffff 60%);
}

/* ── SECTION HEADER ── */
.cs-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.cs-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.cs-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cs-h2-line {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 4px;
  margin: 0 auto 22px;
}
.cs-desc {
  font-size: clamp(0.93rem, 1.3vw, 1.05rem);
  color: #64748b;
  line-height: 1.85;
}

/* ── TABS ── */
.cs-tabs-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.cs-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color:  #64748b ;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.cs-tab i { font-size: 16px; }
.cs-tab:hover {
  border-color: var(--blue-light);
  color: var(--blue);
  background: #eff6ff;
}
.cs-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}

/* ── CONTENT PANEL ── */
.cs-panels { position: relative; }
.cs-panel { display: none; }
.cs-panel.active { display: block; }

/* ── CARD LAYOUT ── */
.cs-card-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(15,23,42,0.10);
  border: 1px solid var(--border);
  min-height: 480px;
}

/* LEFT DARK PANEL */
.cs-card-left {
  background: linear-gradient(160deg, #162032 0%, #0f172a 100%);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* bg circle decoration */
.cs-card-left::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.cs-card-left::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
}

.cs-left-icon {
     width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.cs-left-icon img{
    width: 30px;
}

.cs-left-title {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}

.cs-left-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  flex: 1;
}

/* Tags */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.cs-tag {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
}

.cs-left-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  position: relative; z-index: 1;
  width: fit-content;
  transition: gap 0.2s;
}
.cs-left-link:hover { gap: 10px; }

/* RIGHT WHITE PANEL */
.cs-card-right {
  background: #fff;
  padding: 36px 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.cs-feature:last-child { border-bottom: none; }

.cs-feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s;
}
.cs-feature-icon img{
    width: 30px;
    height: auto;
}
.cs-feature-text .para-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  line-height: 1.3;
}
.cs-feature-text p {
  font-size: 0.83rem;
  color:  #64748b; ;
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cs-card-wrap {
    grid-template-columns: 1fr;
  }
  .cs-card-left { padding: 36px 28px 32px; }
  .cs-card-right { padding: 28px; }
}
@media (max-width: 600px) {
  .cs-section { padding: 60px 4% 70px; }
  .cs-tab { font-size: 0.8rem; padding: 8px 14px; }
  .cs-tab span { display: none; }
  .cs-card-left { padding: 28px 20px 24px; }
  .cs-card-right { padding: 20px; }
}

 /* Logo Section */
  /* Logo section background + shadow */
.logos-marquee {
    background: #ffffff;
    padding: 28px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.logo-item {
   background: #ffffff;
    border-radius: 10px;
    padding: 10px 18px;
}
  .logos-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.logos-inner {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 40px;
    animation: logos-scroll 14s linear infinite;
     padding-right: 60px;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Yeh sab SAME raha — kuch change nahi hua */
.logos-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
}
#logos {
  background: #ffffff !important;
}

.logo-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-item img {
        max-height: 35px;
    }
    .logos-inner {
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-item img {
        max-height: 25px;
    }
    .logos-inner {
        gap: 20px;
    }
}

/* CLOUD CTA SECTION */
.cloud-cta-section{
    padding: 70px 20px;
    background: #ffffff;
}
.cloud-cta-box{
    background: #e9eef8;
    border-radius: 22px;
    padding: 34px 50px 34px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 5px solid #2563eb;
}

/* subtle background pattern */
.cloud-cta-box::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(37,99,235,0.06) 2px, transparent 2px);
    background-size: 42px 42px;
    opacity: .6;
    pointer-events:none;
}

/* content */
.cloud-cta-content{
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.cloud-cta-title{
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #071028;
    margin: 0;
    flex: 1;
    min-width: 280px;
    max-width: 720px;
    line-height: 1.3;
}


.cloud-cta-title span{
    color: #2563eb;
}

/* button */
.cloud-cta-btn-wrap{
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


.cloud-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 190px;
    border-radius: 50px;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    transition: .3s ease;
}

.cloud-cta-btn:hover{
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){

    .cloud-cta-box{
        padding: 45px 35px;
        flex-direction: column;
        text-align: center;
    }

    .cloud-cta-title{
        font-size: 2.3rem;
    }
}

@media(max-width:768px){

    .cloud-cta-box{
        padding: 28px 22px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .cloud-cta-title{
        max-width: 100%;
        min-width: 100%;
    }

    .cloud-cta-btn{
        min-width: 170px;
        padding: 12px 22px;
    }
}

@media (max-width: 480px){

    .cloud-cta-title{
        font-size: 1.45rem;
    }

    .cloud-cta-box{
        padding: 30px 18px;
    }
}


/* ===== TESTIMONIALS ===== */
#testi {
  background: #fff;
  padding: 80px 0;
}

/* Header */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: #0f2a6e;
  border-radius: 20px;
  padding: 6px 16px;
  border: none;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fc3f7;
  display: inline-block;
}

.section-h {
  font-size: 3rem !important;
  font-weight: 800;
  color: #0d1e3d;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc{
        color: var(--txt-body);
}
.section-sub {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ── CARDS ── */
.tcard {
  background: #ffffff;
  border: 1.5px solid #e8ecf4;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
   height: auto; 
}

.tcard:hover {
  border-color: #1a6fd4;
  box-shadow: 0 8px 32px rgba(26, 111, 212, 0.1);
}

/* Stars */
.tstars {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
}

/* Quote text */
.tq {
  font-size: 14px;
  color: #3a4a62;
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

/* Avatar */
.tavatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8ecf4;
}

.tavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name & role */
.tname {
  font-size: 14px;
  font-weight: 700;
  color: #0d1e3d;
  margin: 0;
  line-height: 1.3;
}

.trole {
  font-size: 12px;
  color: #8d9ab8;
  margin: 0;
  line-height: 1.4;
}

/* ── CONTROLS ── */
#testiPrev,
#testiNext {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #1a3a8f;
  background: #ffffff;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
  padding: 0;
}

#testiPrev:hover,
#testiNext:hover {
  border-color: #1a6fd4;
  background: #1a6fd4;
}

#testiPrev:hover svg path,
#testiNext:hover svg path {
  stroke: #ffffff!important;
}

#testiPrev svg path,
#testiNext svg path {
  transition: stroke 0.2s ease;
}
/* Dots */
#testiDots span {
  transition: all 0.2s ease !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #testi {
    padding: 60px 0;
  }

  .tcard {
    padding: 24px 20px;
  }

  .section-h {
    font-size: 1.5rem;
  }
}

/* - CTA */
.cta2-section {
  padding: 80px 20px;
  background: #0f1f5c;
  text-align: center;
}
.cta2-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 auto 24px;
}
.cta2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a52c9;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
 border: none;
}
.cta2-btn:hover {
  background: #1a3a8f;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Section 10 - Core Values */
.core-section {
  padding: 80px 0;
background: #F7F9FF;
}

.core-left {
  padding-right: 40px;
}

.core-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f1f5c;
  line-height: 1.2;
  margin-bottom: 16px;
}

.core-desc {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin-top: 20px;
}

.core-right {
  padding-left: 20px;
}

.core-card {
  background: #fff;
  border: 1px solid #e0e6f5;
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.core-bar-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.core-bar-label {
  font-size: 0.97rem;
  font-weight: 600;
  color: #0f1f5c;
}

.core-bar-percent {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a3a8f;
}

.core-bar-track {
  width: 100%;
  height: 8px;
  background: #e8edf8;
  border-radius: 100px;
  overflow: hidden;
}

.core-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a3a8f, #3a7bd5);
  border-radius: 100px;
  transition: width 2.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26,158,212,0.08);
      border: 1px solid rgba(26,158,212,0.25);
      border-radius: 999px;
      padding: 6px 18px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: bpulse 1.6s ease-in-out infinite;
    }
    @keyframes bpulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.4; transform:scale(0.8); }
    }

/* Responsive */
@media (max-width: 991px) {
  .core-left {
    padding-right: 15px;
    margin-bottom: 40px;
    text-align: center;
  }
  .core-title {
    font-size: 1.7rem;
  }
  .title-underline {
    margin: 0 auto;
  }
  .core-right {
    padding-left: 15px;
  }
}

@media (max-width: 576px) {
  .core-section {
    padding: 50px 0;
  }
  .core-title {
    font-size: 1.4rem;
  }
  .core-card {
    padding: 24px 20px;
    gap: 24px;
  }
}
/*Why Choose Us */
.why-section {
  padding: 80px 0;
  background: #fff;
}

.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}

.why-section .why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid #e0e6f5;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.why-section .why-card:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 143, 0.1);
  border-color: #1a3a8f;
}

.why-section .why-card.highlighted {
  border-color: #e0e6f5;
  border-width: 1px;
}

.why-section .why-card.highlighted:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 143, 0.1);
  border-color: #1a3a8f;
}

.why-section .why-number {
  min-width: 48px;
  height: 48px;
  background: #c5d0f0;
  color: #1a3a8f;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-section .why-body {
  flex: 1;
}

.why-section .why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1f5c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-section .why-card-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 50px 0;
  }
  .why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .why-section .why-grid {
    grid-template-columns: 1fr;
  }
  .why-section .why-card {
    padding: 20px 16px;
  }
}

/* ==== FAQ Section ==== */
.crm-faq-section {
  background: #f8f9fa;
  padding: 4rem 0 1rem;
  color: #1e293b;
}

.crm-faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #1e293b;
}

/* Row & Column */
.crm-faq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}

.crm-faq-col {
  flex: 1;
  min-width: 300px;
  max-width: 580px;
}

/* FAQ Card */
.crm-faq-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  /* margin-bottom: 24px; */
  overflow: hidden;
  transition: all 0.3s ease;
}

.crm-faq-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.crm-faq-header {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  user-select: none;
}

.crm-faq-toggle {
  width: 44px;
  height: 44px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #475569;
  transition: all 0.3s ease;
}

.crm-faq-card.active .crm-faq-toggle {
  background: #3b82f6;
  color: white;
  /* transform: rotate(45deg); */
}

.crm-faq-card.active .crm-faq-toggle i::before {
  content: "\f068";
  /* minus */
}

.crm-faq-toggle i::before {
  content: "\f067";
  /* plus */
}

.crm-faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  border-top: 1px solid #e2e8f0;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.crm-faq-card.active .crm-faq-body {
  max-height: 400px;
  padding: 20px 28px 28px;
}

/* Section 8 - Free Call CTA */
.free-call-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #1a3a8f 0%, #2a52c9 60%, #1a3a8f 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.free-call-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.free-call-section::after {
  content: '';
  position: absolute;
  top: -60px;
  right: 80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.section-badge-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  background: #0f2a6e;
  border-radius: 20px;
  padding: 6px 16px;
  border: none;
  position: relative;
  z-index: 1;
}

.badge-dot-white {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fc3f7;
  display: inline-block;
}

.free-call-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.free-call-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.free-call-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.fcb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

.fcb-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2a52c9;
  border: 2px solid #4fc3f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4fc3f7;
  font-size: 0.7rem;
}

.fcb-dot::after {
  content: '✓';
  font-weight: 700;
}

.free-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1a3a8f;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border: 2px solid #1a3a8f;
  transition: background 0.2s, color 0.2s;
}

.free-call-btn:hover {
  background: #1a3a8f;
  color: #ffffff;
  text-decoration: none;
  border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .free-call-section {
    padding: 60px 20px;
  }
  .free-call-title {
    font-size: 1.6rem;
  }
  .free-call-badges {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .free-call-title {
    font-size: 1.3rem;
  }
  .free-call-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .free-call-btn {
    padding: 13px 28px;
    font-size: 0.9rem;
  }
}


/* POPUP */
.industry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}

.industry-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 320px;
}

.industry-popup-inner {
  background: #0d1b3e;
  border-radius: 14px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.industry-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.industry-popup-close:hover {
  color: #fff;
}

.industry-popup-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.industry-popup-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}

.industry-popup-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4fa3e0;
  text-decoration: none;
  transition: color 0.2s;
}

.industry-popup-link:hover {
  color: #fff;
}

.industry-popup.active,
.industry-overlay.active {
  display: block;
}
/* ── SECTION ── */
.cf-section {
  padding: 90px 5% 100px;
  background: #f8fafc;
}
 
/* ── INNER WRAPPER ── */
.cf-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
 
/* ── LEFT — STICKY ── */
.cf-left {
  position: sticky;
  top: 100px;
}
 
.cf-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}
 
.cf-h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}
 
.cf-h2-line {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  border-radius: 4px;
  margin-bottom: 24px;
}
 
.cf-left-desc {
  font-size: clamp(0.93rem, 1.2vw, 1.02rem);
  color: #64748b;
  line-height: 1.85;
}
 
/* ── RIGHT — SCROLLABLE STEPS ── */
.cf-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* native scroll on mobile */
  -webkit-overflow-scrolling: touch;
}
 
/* ── STEP CARD ── */
.cf-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: default;
  transition:
    border-color 0.25s ease,
    background   0.25s ease,
    box-shadow   0.25s ease,
    transform    0.22s ease;
}
 
.cf-card:hover {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 6px 28px rgba(37,99,235,0.10);
  transform: translateY(-2px);
}
 
/* Number badge */
.cf-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37,99,235,0.30);
}
 
.cf-card-body { flex: 1; }
 
.cf-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}
 
.cf-card-text {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .cf-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cf-left {
    position: static; /* no sticky on mobile */
  }
  .cf-section { padding: 60px 5% 70px; }
}
 
@media (max-width: 500px) {
  .cf-card { padding: 22px 18px; gap: 16px; }
  .cf-num { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
  .cf-h2 { font-size: 1.7rem; }
}

/* Cloud ecosystem css */
/* ── SLIDER OUTER ── */
.tech-section .tech-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
 
/* ── TRACK ── */
.tech-section .tech-slider-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tech-section .tech-slider-track::-webkit-scrollbar { display: none; }
 
/* ── CARDS ── */
.tech-section .tech-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  display: block;
  padding: 28px 22px;
  border: 1px solid #e0e6f5;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.tech-section .tech-card:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 143, 0.12);
  border-color: #1a3a8f;
  transform: translateY(-3px);
}
.tech-section .tech-card.featured {
  border-color: #1a3a8f;
  box-shadow: 0 4px 20px rgba(26, 58, 143, 0.15);
}
 
/* ── ICON ── */
.tech-section .tech-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eef2fc;
  border-radius: 10px;
}
.tech-section .tech-icon img {
  width: 30px;
  height: auto;
  object-fit: contain;
  display: block;
}
 
.tech-section .tech-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1f5c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tech-section .tech-card-title a {
  color: #0f1f5c;
  text-decoration: none;
}
.tech-section .tech-card-title a:hover { color: #1a3a8f; }
 
.tech-section .tech-card-desc {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
 
/* ── ARROWS ── */
.tech-section .tech-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e0e6f5;
  background: #fff;
  color: #1a3a8f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
  z-index: 2;
}
.tech-section .tech-arrow:hover {
  background: #1a3a8f;
  border-color: #1a3a8f;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,58,143,0.25);
}
.tech-section .tech-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tech-section .tech-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
 
@media (max-width: 768px) {
  .tech-section {
    padding: 50px 0;
  }
  .tech-section .tech-card {
    flex: 0 0 calc(50% - 10px);
  }
}
 
@media (max-width: 480px) {
  .tech-section .tech-card {
    flex: 0 0 calc(85% - 10px);
  }
  .tech-section .tech-arrow {
    width: 36px;
    height: 36px;
  }
}



.tech-section {
  padding: 80px 0;
  background: #F7F9FF;
}

.tech-section .tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.tech-section .tech-card {
  display: block;
  padding: 28px 22px;
  border: 1px solid #e0e6f5;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.tech-section .tech-card:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 143, 0.12);
  border-color: #1a3a8f;
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.tech-section .tech-card.featured {
  border-color: #1a3a8f;
  box-shadow: 0 4px 20px rgba(26, 58, 143, 0.15);
}

.tech-section .tech-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eef2fc;
  border-radius: 10px;
}

.tech-section .tech-icon img {
  width: 30px;
  height: auto;
  object-fit: contain;
  display: block;
}

.tech-section .tech-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1f5c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tech-section .tech-card-desc {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tech-section .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-section {
    padding: 50px 0;
  }
  .tech-section .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .tech-section .tech-grid {
    grid-template-columns: 1fr;
  }
  .tech-section .tech-card {
    padding: 20px 16px;
  }
}

/* Industries */

.ind7-section {
  padding: 90px 0 110px;
  background: #12192c;
  color: #e8edf5;
  position: relative;
  overflow: visible;
}
 
/* faint dot grid — clipped separately so popups can overflow */
.ind7-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
 
.ind7-section .ind7-wrap {
  position: relative;
  z-index: 1;
}
 
/* ── HEADER ───────────────────────────── */
.ind7-section .ind7-head {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ind7-section .ind7-head.ind7-vis {
  opacity: 1;
  transform: translateY(0);
}
 
.ind7-section .ind7-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a8cff;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(74,140,255,0.28);
  border-radius: 100px;
  background: rgba(74,140,255,0.06);
}
 
.ind7-section .ind7-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.ind7-section .ind7-title span { color: #6fa3ff; }
 
.ind7-section .ind7-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: #8b96a8;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
 
/* ── ROW 1 : 6 equal cols ─────────────── */
.ind7-section .ind7-row1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
 
/* ── ROW 2 : 4 cols centered ──────────── */
.ind7-section .ind7-row2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
/* 4 cards sit in middle 4 of 6 columns */
.ind7-section .ind7-row2 .ind7-item:nth-child(1) { grid-column: 2; }
.ind7-section .ind7-row2 .ind7-item:nth-child(2) { grid-column: 3; }
.ind7-section .ind7-row2 .ind7-item:nth-child(3) { grid-column: 4; }
.ind7-section .ind7-row2 .ind7-item:nth-child(4) { grid-column: 5; }
 
/* ── ITEM (lazy-load wrapper) ─────────── */
.ind7-section .ind7-item {
  opacity: 0;
  transform: translateY(36px) scale(0.95);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34,1.4,0.64,1);
  position: relative;
}
.ind7-section .ind7-item.ind7-vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}
 
/* ── CARD ─────────────────────────────── */
.ind7-section .ind7-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 40px 12px 32px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  overflow: visible;
}
 
.ind7-section .ind7-card:hover {
  border-color: rgba(74,140,255,0.5);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.18);
  transform: translateY(-5px);
}
 
/* icon */
.ind7-section .ind7-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}
.ind7-section .ind7-icon img{
width: 30px;
height: auto;
}
.ind7-section .ind7-card:hover .ind7-icon {
  transform: scale(1.18) rotate(-4deg);
}
 
/* title */
.ind7-section .ind7-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #dde4ef;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.ind7-section .ind7-card:hover h3 { color: #fff; }
 
/* ── POPUP ────────────────────────────── */
.ind7-section .ind7-popup {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 250px;
  background: #18253d;
  border: 1px solid rgba(74,140,255,0.38);
  border-radius: 14px;
  padding: 18px 18px 16px;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(74,140,255,0.08);
  text-align: left;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.4,0.64,1);
}
 
/* arrow down */
.ind7-section .ind7-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(74,140,255,0.38);
}
.ind7-section .ind7-popup::before {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #18253d;
  z-index: 1;
}
 
.ind7-section .ind7-card:hover .ind7-popup,
.ind7-section .ind7-card.ind7-pinned .ind7-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
 
/* pinned card — keep hover styles active */
.ind7-section .ind7-card.ind7-pinned {
  border-color: rgba(74,140,255,0.65);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.22);
  transform: translateY(-5px);
}
.ind7-section .ind7-card.ind7-pinned .ind7-icon {
  transform: scale(1.18) rotate(-4deg);
}
.ind7-section .ind7-card.ind7-pinned h3 { color: #fff; }
 
.ind7-section .ind7-popup-ttl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a8cff;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.ind7-section .ind7-popup-txt {
  font-size: 0.8rem;
  color: #9aaaba;
  line-height: 1.65;
  margin: 0;
}
 
.ind7-section .ind7-popup-lnk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  color: #4a8cff;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.ind7-section .ind7-popup-lnk:hover { color: #7ab4ff; text-decoration: none; }
.ind7-section .ind7-popup-lnk svg { width: 11px; height: 11px; }
 
 
 
/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1080px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind7-section .ind7-row2 .ind7-item:nth-child(n) {
    grid-column: auto;
  }
}
 
@media (max-width: 640px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ind7-section .ind7-row2 {
    margin-bottom: 0;
  }
  .ind7-section .ind7-card { min-height: 130px; padding: 28px 10px 22px; }
  .ind7-section .ind7-icon { font-size: 2rem; margin-bottom: 12px; }
  .ind7-section .ind7-card h3 { font-size: 0.85rem; }
  .ind7-section .ind7-popup { width: 200px; font-size: 0.76rem; }
}
 
@media (max-width: 360px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
