/* =============================================================================
   SharePoint Landing Page Main Stylesheet
   Theme   : Nanosoft (WordPress)
   Updated : 2026-06-12
   Palette : #07111f (bg)  #7c4dff (accent-purple)
   Font    : Inter (Google Fonts)
   ========================================================================== */


/* =============================================================================
   1. RESET & BASE
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #07111f;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}


/* =============================================================================
   2. LAYOUT CONTAINER & SECTIONS
   ========================================================================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

section {
  padding: 50px 0;
  position: relative;
}


/* =============================================================================
   3. UTILITY  GRADIENT TEXT
   ========================================================================== */

.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #7c4dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* =============================================================================
   NAV
   ========================================================================== */

nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 999;
   background: #ffffff;
   backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 22px 0;
}

.logo {
   display: flex;
   align-items: center;
}

.logo img {
   height: 64px;
   width: auto;
   display: block;
   object-fit: contain;
}

@media (max-width: 767px) {
    .logo img {
        height: 48px;
    }
}

.nav-links {
   display: flex;
   gap: 30px;
}

.nav-links a {
   color: #2a2c2f;
   font-size: 15px;
   transition: 0.3s;
   font-weight: 800;
   text-decoration: none;
}

.nav-links a:hover {
   color: #00d9ff;
}

.nav-btn {
   padding: 10px 10px;
   border-radius: 60px;
   background: linear-gradient(90deg, #00d9ff, #0055ff);
   color: white;
   font-weight: 700;
   box-shadow: 0 0 30px rgba(0, 217, 255, 0.25);
   font-size: 13px;
   text-decoration: none;
   transition: box-shadow 0.3s, transform 0.3s;
}

.nav-btn:hover {
   box-shadow: 0 0 40px rgba(0, 217, 255, 0.45);
   transform: translateY(-2px);
}
.nav-toggle { display: none; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile nav (tablet + mobile ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤1023px) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media(max-width:1023px) {
   .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      border-radius: 0.375rem;
      transition: background 0.2s;
      flex-shrink: 0;
      order: 2;
   }
   .nav-toggle:hover { background: rgba(0,0,0,0.05); }
   .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #2a2c2f;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
   }
   .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
   .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   .nav-btn { display: none; }
   .nav-links {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 998;
      flex-direction: column;
      gap: 0;
      padding: 0.375rem 0 0.75rem;
      background: rgba(7, 17, 31, 0.98);
      border-top: 2px solid rgba(0, 212, 255, 0.5);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-0.4rem);
      transition: opacity 0.22s ease, visibility 0s 0.22s, transform 0.22s ease;
   }
   .nav-links.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      transition: opacity 0.22s ease, visibility 0s 0s, transform 0.22s ease;
   }
   .nav-links a {
      display: block;
      padding: 0.875rem 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: #dce6ff !important;
      font-weight: 600;
      font-size: 0.9375rem;
      line-height: 1.4;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
   }
   .nav-links a:last-child { border-bottom: none; }
   .nav-links a:hover,
   .nav-links a:active {
      background: rgba(255,255,255,0.05);
      color: #00d4ff !important;
   }
}


/* =============================================================================
   4. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 115px;
  background:
    radial-gradient(circle at top left,    #173056 0%, transparent 30%),
    radial-gradient(circle at bottom right, #21114d 0%, transparent 30%),
    #07111f;
  position: relative;
  overflow: hidden;
}

/* Two-column layout: copy left, card right */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* "AI-Powered" pill above the H1 */
.eyebrow {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  font-size: 14px;
  margin-bottom: 25px;
  color: #9fdcff;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 900;
}

.hero p {
  font-size: 15px;
  color: #c8d4e5;
  margin-bottom: 30px;
}

/* CTA button row */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #00d4ff, #7c4dff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- Hero Info Card (right column) ---------- */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-card ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.hero-card li {
  margin-bottom: 12px;
  color: #d7e2ef;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300d4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}


/* =============================================================================
   5. METRICS BAR  (5-column stat strip below hero grid)
   ========================================================================== */

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.metric-card h2 {
  font-size: 38px;
  color: #00d4ff;
  margin-bottom: 10px;
}


/* =============================================================================
   6. SECTION TITLE  (centred heading + sub-copy used in every section)
   ========================================================================== */

.section-title {
  text-align: center;
  max-width: 950px;
  margin: auto auto 70px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-title p {
  font-size: 15px;
  color: #b8c6d8;
}


/* =============================================================================
   7. CARD GRID  (reusable auto-fit grid used across multiple sections)
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.card-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #0d1b2f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 24px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.10), rgba(124, 77, 255, 0.08));
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.card h3 {
  margin-bottom: 20px;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card h3 .fa-solid,
.card h3 .fa-brands {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #00d4ff;
  font-size: 16px;
}

.card p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 15px;
}

.card ul {
  padding-left: 0;
  list-style: none;
  color: #dce6f2;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9 4' stroke='%2300d4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}


/* =============================================================================
   8. COMPARISON  (Traditional vs AI-Powered two-column layout)
   ========================================================================== */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.comparison-box {
  padding: 40px;
  border-radius: 24px;
  background: #0d1b2f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.comparison-box:first-child:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.12);
}

.comparison-box:last-child:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.12);
}

.comparison-box h3 {
  margin-bottom: 25px;
  font-size: 32px;
}

.comparison-box ul {
  padding-left: 0;
  list-style: none;
}

.comparison-box li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d7e2ef;
}

.comparison-box li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* Traditional  red X */
.comparison-box:first-child li::before {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='%23ef4444' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* AI-Powered   cyan check */
.comparison-box:last-child li::before {
  background-color: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300d4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}


/* =============================================================================
   9. ECOSYSTEM FLOW  (horizontal pill-chain diagram)
   ========================================================================== */

.ecosystem {
  text-align: center;
  margin-top: 70px;
}

.ecosystem-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.flow-box {
  padding: 30px 40px;
  border-radius: 18px;
  background: #0d1b2f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 180px;
  font-weight: 700;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.flow-box:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: #00d4ff;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(124, 77, 255, 0.10));
  box-shadow: 0 10px 32px rgba(0, 212, 255, 0.18);
  color: #00d4ff;
}


/* =============================================================================
   10. TIMELINE  (5-step implementation framework)
   ========================================================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

/* Connector line */
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #7c4dff);
  opacity: 0.3;
  z-index: 0;
}

.timeline-step {
  background: #0d1b2f;
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #00d4ff, #7c4dff) 1;
  border-image-slice: 0 0 0 0 / 0 0 3px 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.timeline-step:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.10), rgba(124, 77, 255, 0.08));
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.timeline-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(124, 77, 255, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #00d4ff;
  font-size: 18px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-step__icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.30), rgba(124, 77, 255, 0.25));
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.3);
}

.timeline-step__label {
  display: inline-block;
  color: #7c4dff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.timeline-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.timeline-step p {
  font-size: 13px;
  color: #8fa3bc;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before { display: none; }
}

@media (max-width: 560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}


/* =============================================================================
   11. CASE STUDIES
   ========================================================================== */

.case-study {
  background: #0d1b2f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.08);
}

/* Header row: icon + tag + title */
.case-study__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.case-study__icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 77, 255, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 22px;
}

.case-study__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7c4dff;
  background: rgba(124, 77, 255, 0.1);
  border: 1px solid rgba(124, 77, 255, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.case-study h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Three-column Challenge / Solution / Outcomes grid */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.case-box {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.case-box--challenge { border-top-color: #ef4444; }
.case-box--solution  { border-top-color: #00d4ff; }
.case-box--outcomes  { border-top-color: #22c55e; }

.case-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-box--challenge h4 { color: #ef4444; }
.case-box--solution  h4 { color: #00d4ff; }
.case-box--outcomes  h4 { color: #22c55e; }

.case-box p {
  color: #8fa3bc;
  font-size: 14px;
  line-height: 1.65;
}

.case-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #c8d4e5;
  line-height: 1.6;
}

.case-box ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  margin-top: 2px;
}

/* Challenge icon (Red X) */
.case-box--challenge ul li::before {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 9L9 3M3 3l6 6' stroke='%23ef4444' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Solution icon (Cyan Check) */
.case-box--solution ul li::before {
  background-color: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9 4' stroke='%2300d4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* Outcomes icon (Green Check) */
.case-box--outcomes ul li::before {
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9 4' stroke='%2322c55e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ========================================================= */
/* TESTIMONIALS CAROUSEL */
/* ========================================================= */

.testimonial-carousel__wrapper {
   position: relative;
}

#testimonial-carousel {
   overflow: hidden;
   width: 100%;
}

#testimonial-track {
   display: flex;
   gap: 32px;
   transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   will-change: transform;
}

.testimonial {
   flex: 0 0 calc((100% - 64px) / 3);
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 16px;
   padding: 36px 32px 32px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
   border-color: #00d4ff;
   box-shadow: 0 8px 32px rgba(0, 212, 255, 0.18);
}

.testimonial__stars {
   color: #00d4ff;
   font-size: 16px;
   letter-spacing: 2px;
}

.testimonial__text {
   color: rgba(255, 255, 255, 0.8);
   font-size: 15px;
   line-height: 1.75;
   flex: 1;
   margin: 0;
   font-style: italic;
}

.testimonial__author {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-top: auto;
}

.testimonial__avatar {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background: linear-gradient(135deg, #00d4ff, #7c4dff);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 12px;
   color: #fff;
   flex-shrink: 0;
}

.testimonial__name {
   font-weight: 700;
   font-size: 15px;
   color: #fff;
}

.testimonial__role {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.5);
   margin-top: 2px;
}

.testimonial-carousel__controls {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 40px;
}

.carousel-arrow {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 2px solid rgba(0, 212, 255, 0.3);
   background: rgba(0, 212, 255, 0.06);
   color: #00d4ff;
   font-size: 18px;
   cursor: pointer;
   transition: background 0.3s, border-color 0.3s, transform 0.2s;
   display: flex;
   align-items: center;
   justify-content: center;
}

.carousel-arrow:hover:not(:disabled) {
   background: rgba(0, 212, 255, 0.15);
   border-color: #00d4ff;
   transform: scale(1.1);
}

.carousel-arrow:disabled {
   opacity: 0.3;
   cursor: default;
}

.testimonial-carousel__dots {
   display: flex;
   gap: 8px;
}

.testimonial-carousel__dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   border: none;
   background: rgba(255, 255, 255, 0.2);
   cursor: pointer;
   padding: 0;
   transition: background 0.3s, transform 0.3s;
}

.testimonial-carousel__dot.active {
   background: #00d4ff;
   transform: scale(1.4);
}

@media (max-width: 1023px) {
   #testimonial-track { gap: 24px; }
   .testimonial { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 639px) {
   #testimonial-track { gap: 20px; }
   .testimonial { flex: 0 0 100%; padding: 28px 22px; }
}


/* =============================================================================
   12. SECTION TAG PILL
   ========================================================================== */

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  font-size: 13px;
  margin-bottom: 22px;
}


/* =============================================================================
   13. FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.faq-item.faq-open,
.faq-item:hover {
  border-color: #00d4ff;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}

/*   icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.4);
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #00d4ff;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

/* Vertical bar  hidden when open */
.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.faq-open .faq-icon {
  background: rgba(0, 212, 255, 0.15);
  border-color: #00d4ff;
}

.faq-item.faq-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.faq-open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}


/* =============================================================================
   13. CTA SECTION
   ========================================================================== */

.cta {
  text-align: center;
  background: linear-gradient(135deg, #0f1d34, #151e46);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.cta p {
  max-width: 900px;
  margin: auto auto 40px;
  color: #c7d2e3;
  font-size: 20px;
}


/* =============================================================================
   14. FOOTER
   ========================================================================== */

footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9cb0c8;
}


/* =============================================================================
   15. RESPONSIVE  991px)
   ========================================================================== */

@media (max-width: 991px) {

  h1 {
    font-size: 46px;
  }

  /* Stack hero, comparison, and case columns to single column */
  .hero-grid,
  .comparison,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-title h2 {
    font-size: 38px;
  }

  .cta h2 {
    font-size: 42px;
  }
}


/* =============================================================================
   16. RESPONSIVE 600px)
   ========================================================================== */

@media (max-width: 600px) {

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

  .card-grid--2col,
  .card-grid--3col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  .section-title h2 {
    font-size: 32px;
  }
}


/* =============================================================================
   17. BACK TO TOP BUTTON
   Fixed bottom-right pill; shown via .visible class toggled by main.js
   after the user scrolls 300 px down the page.
   ========================================================================== */

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00d4ff, #7c4dff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.55);
}


/* =============================================================================
   18. SCROLL ANIMATIONS
   ========================================================================== */

.anim-hidden {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up.anim-hidden    { transform: translateY(40px); }
.anim-fade-left.anim-hidden  { transform: translateX(-50px); }
.anim-fade-right.anim-hidden { transform: translateX(50px); }
.anim-fade-in.anim-hidden    { transform: translateY(16px); }

.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}


/* =============================================================================
   19. OUR SERVICES & OFFERINGS
   ========================================================================== */

.services-offerings {
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(124, 77, 255, 0.07) 0%, transparent 50%),
    #07111f;
  padding: 90px 0;
}

/* 3-column grid; falls back to 2 then 1 at breakpoints */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Gradient accent bar along the top of every service card */
.service-card {
  position: relative;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #00d4ff, #7c4dff); */
  border-radius: 24px 24px 0 0;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Push the list to the bottom so cards stretch evenly */
.service-card ul {
  margin-top: auto;
  padding-top: 18px;
}

/* Featured card (AI & Copilot) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â stronger glow */
.service-card--featured {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.07), rgba(124, 77, 255, 0.07)), #0d1b2f;
  border-color: rgba(124, 77, 255, 0.35);
}

.service-card--featured::before {
  opacity: 1;
  height: 4px;
}

.service-card--featured:hover {
  border-color: rgba(124, 77, 255, 0.65);
  box-shadow: 0 16px 56px rgba(124, 77, 255, 0.2);
}

/* Stagger animation delay per card */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= */
/* POPUP ASSESSMENT */
/* ========================================================= */

.cn-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 11, 31, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cn-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cn-popup-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 32px 80px rgba(2, 11, 31, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #2563eb;
}

.cn-popup-overlay.is-open .cn-popup-box {
  transform: translateY(0) scale(1);
}

.cn-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: #475569;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.cn-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.cn-popup-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cn-popup-header {
  margin-bottom: 1.5rem;
}

.cn-popup-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #020b1f;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.cn-popup-accent {
  color: #2563eb;
}

.cn-popup-header p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .cn-popup-box {
    padding: 2rem 1.25rem 1.5rem;
  }

  .cn-popup-header h3 {
    font-size: 1.25rem;
  }
}

/* ========================================================= */
/* FOOTER */
/* ========================================================= */

.cs-footer {
  background: #ffffff;
  color: #dce6ff;
  padding-block: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.cs-footer p {
  padding-top: 15px;
  font-size: 15px;
  color: #202224;
}
.cs-footer__grid {
  display: grid;
  gap: 3rem 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .cs-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cs-footer__grid {
    grid-template-columns: 3fr 1.5fr 1.5fr 2.5fr;
    gap: 4rem 2rem;
  }
}
.cs-footer h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 18px;
}
.cs-footer ul li {
  margin-bottom: 0.875rem;
  color: #000000;
  font-size: 15px;
}
.cs-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3f444a;
  transition: all 0.2s ease;
  text-decoration: none;
}
.cs-footer-menu a svg {
  color: #2563eb;
  transition: transform 0.2s ease;
}
.cs-footer-menu a:hover {
  color: #2563eb;
  transform: translateX(4px);
}
.cs-footer a {
  color: #323438;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 15px;
}
.cs-footer a:hover {
  color: #2563eb;
}
.cs-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #010206;
}
.cs-footer__copy p {
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* ========================================================= */
/* CONTACT POPUP MODAL                                        */
/* ========================================================= */

.contact-popup-overlay {
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   background: rgba(5, 8, 22, 0.85);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup-overlay.is-open {
   opacity: 1;
   visibility: visible;
}

.contact-popup-box {
   position: relative;
   width: 100%;
   max-width: 580px;
   max-height: 90vh;
   overflow-y: auto;
   background: #080d1c;
   border: 1px solid rgba(0, 217, 255, 0.2);
   border-radius: 24px;
   padding: 44px 40px 40px;
   box-shadow:
      0 0 0 1px rgba(0, 217, 255, 0.06),
      0 24px 80px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(0, 217, 255, 0.08);
   transform: translateY(24px) scale(0.97);
   transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-popup-overlay.is-open .contact-popup-box {
   transform: translateY(0) scale(1);
}

/* Top accent bar */
.contact-popup-box::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 3px;
   background: linear-gradient(90deg, #00d9ff, #0055ff);
   border-radius: 24px 24px 0 0;
}

/* Scrollbar styling for the box */
.contact-popup-box::-webkit-scrollbar { width: 6px; }
.contact-popup-box::-webkit-scrollbar-track { background: transparent; }
.contact-popup-box::-webkit-scrollbar-thumb { background: rgba(0, 217, 255, 0.3); border-radius: 3px; }

/* Close button */
.contact-popup-close {
   position: absolute;
   top: 18px;
   right: 18px;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.12);
   background: rgba(255, 255, 255, 0.05);
   color: #aac5e0;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-popup-close:hover {
   background: rgba(0, 217, 255, 0.12);
   border-color: rgba(0, 217, 255, 0.45);
   color: #00d9ff;
   transform: rotate(90deg);
}

/* Header */
.contact-popup-header {
   margin-bottom: 28px;
}

.contact-popup-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 16px;
   border-radius: 40px;
   background: rgba(0, 217, 255, 0.08);
   border: 1px solid rgba(0, 217, 255, 0.2);
   color: #00d9ff;
   font-size: 13px;
   font-weight: 600;
   margin-bottom: 18px;
}

.contact-popup-header h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.25;
   margin-bottom: 10px;
   color: #ffffff;
}

.contact-popup-header p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.7;
   margin: 0;
}

/* Form area */
.contact-popup-form {
   min-height: 100px;
}

/* Responsive */
@media (max-width: 600px) {
   .contact-popup-box {
      padding: 36px 22px 28px;
   }
   .contact-popup-header h3 {
      font-size: 22px;
   }
}

/* ========================================================= */
/* THANK YOU POPUP */
/* ========================================================= */

.thankyou-popup-overlay {
   z-index: 10000;
}

.thankyou-popup-box {
   max-width: 460px;
   text-align: center;
   border-color: rgba(0, 217, 255, 0.28);
}

.thankyou-popup-box::before {
   background: linear-gradient(90deg, #00d9ff, #00ff99, #0055ff);
}

.thankyou-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-top: 8px;
}

/* Animated SVG checkmark */
.thankyou-icon {
   width: 76px;
   height: 76px;
   margin: 0 auto 28px;
}

.thankyou-icon svg {
   width: 100%;
   height: 100%;
   overflow: visible;
}

.thankyou-circle {
   stroke-dasharray: 151;
   stroke-dashoffset: 151;
}

.thankyou-check {
   stroke-dasharray: 38;
   stroke-dashoffset: 38;
}

.thankyou-popup-overlay.is-open .thankyou-circle {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.thankyou-popup-overlay.is-open .thankyou-check {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.75s;
}

.thankyou-popup-box h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.3;
   color: #fff;
   margin-bottom: 12px;
}

.thankyou-popup-box > .thankyou-content > p,
.thankyou-popup-box p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.75;
   margin-bottom: 24px;
   max-width: 340px;
}

.thankyou-popup-box p strong {
   color: #00d9ff;
}

.thankyou-items {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 32px;
   width: 100%;
   max-width: 290px;
   text-align: left;
}

.thankyou-item {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   color: #a8bdd6;
}

.thankyou-item i {
   color: #00d9ff;
   font-size: 12px;
   flex-shrink: 0;
}

.thankyou-close-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   justify-content: center;
   min-width: 150px;
   font-family: inherit;
   cursor: pointer;
   font-size: 15px;
}

@media (max-width: 600px) {
   .thankyou-popup-box {
      padding: 36px 22px 28px;
   }
   .thankyou-popup-box h3 {
      font-size: 22px;
   }
}

/* ========================================================= */
/* READ MORE POPUP                                            */
/* ========================================================= */

.rm-popup-box::before {
   background: linear-gradient(90deg, #7b2ff7, #00d9ff, #0055ff);
}

.rm-success-state {
   display: none;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding-top: 8px;
}

.rm-circle {
   stroke-dasharray: 151;
   stroke-dashoffset: 151;
}

.rm-check {
   stroke-dasharray: 38;
   stroke-dashoffset: 38;
}

.rm-success-state.rm-shown .rm-circle {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.rm-success-state.rm-shown .rm-check {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.75s;
}

.rm-success-state h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.3;
   color: #fff;
   margin-bottom: 12px;
}

.rm-success-state p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.75;
   margin-bottom: 24px;
   max-width: 340px;
}

.rm-success-state p strong { color: #00d9ff; }

@media (max-width: 600px) {
   .rm-popup-box { padding: 36px 22px 28px; }
   .rm-success-state h3 { font-size: 22px; }
}

.lead-form input, .lead-form select {
    width: 100%;
    padding: 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 14px;
    background: #0c1730;
    color: white;
    font-size: 16px;
}
.btn-primary {
    padding: 18px 34px !important;
    border-radius: 60px !important;
    background: linear-gradient(90deg, #00d9ff, #0055ff) !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.25);
    transition: 0.35s;
    display: inline-block;
    border: none;
    cursor: pointer;
}