﻿  /* â”€â”€ Google Font â”€â”€ */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

  /* â”€â”€ CSS Variables â”€â”€ */
  :root {
    --orange: #f2a93b;
    --orange-dark: #d68d2a;
    --orange-light: #fff7eb;
    --blue: #113f8c;
    --blue-light: #eef4ff;
    --green: #45a049;
    --green-light: #edfaf0;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #071533;
    --shadow-card: 0 4px 24px rgba(17,63,140,0.08);
    --shadow-hover: 0 16px 48px rgba(17,63,140,0.14);
    --radius: 20px;
    --radius-lg: 28px;
  }



  /* â”€â”€ Stats Counter â”€â”€ */
  .idx-stats {
    background: linear-gradient(135deg, #071533 0%, #113f8c 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  .idx-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
  }
  .stat-counter-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
  }
  .stat-counter-card::after {
    content: '';
    position: absolute;
    top: 20%; right: 0;
    width: 1px; height: 60%;
    background: rgba(255,255,255,0.1);
  }
  .stat-counter-card:last-child::after { display: none; }
  .stat-counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-counter-number .suffix { color: var(--orange); }
  .stat-counter-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.3rem;
  }
  .stat-counter-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }

  /* â”€â”€ Why Choose Us â”€â”€ */
  .idx-why { background: var(--off-white); }
  .why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1.5px solid var(--gray-200);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: all 0.3s ease;
  }
  .why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
  }
  .why-card h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
  }
  .why-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
  }
  .why-card .why-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .why-card .why-check-list li {
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .why-card .why-check-list li i {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
  }



  /* â”€â”€ Hero Slider Redesign â”€â”€ */
  .idx-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 7.5rem;
    min-height: 700px;
    display: flex;
    align-items: center;
    transition: background 0.8s ease-in-out;
  }
  .hero-slides-wrapper {
    width: 100%;
    position: relative;
  }
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    z-index: 1;
  }
  .hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  /* Slide Gradients & Glowing Blur Blobs */
  .hero-slide-ai {
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 60%, #f8fafc 100%);
  }
  .hero-slide-web {
    background: linear-gradient(135deg, #ecfeff 0%, #e0f2fe 60%, #f8fafc 100%);
  }
  .hero-slide-mobile {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 60%, #f8fafc 100%);
  }
  .hero-slide-marketing {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #f8fafc 100%);
  }

  .hero-slide::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    transition: all 0.8s ease;
  }
  .hero-slide::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    transition: all 0.8s ease;
  }

  .hero-slide-ai::before { background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%); }
  .hero-slide-ai::after { background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%); }

  .hero-slide-web::before { background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%); }
  .hero-slide-web::after { background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%); }

  .hero-slide-mobile::before { background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%); }
  .hero-slide-mobile::after { background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%); }

  .hero-slide-marketing::before { background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%); }
  .hero-slide-marketing::after { background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%); }

  .hero-slide-content {
    position: relative;
    z-index: 2;
  }

  /* Badge Styles */
  .slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17, 63, 140, 0.07);
    border: 1px solid rgba(17, 63, 140, 0.12);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
  }
  .slide-badge .pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
  }
  .slide-badge .pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    animation: pulseRing 2s infinite;
  }
  @keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
  }

  /* Heading Styles */
  .hero-slide h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
  }
  .hero-slide h1 .accent-blue {
    color: var(--blue);
  }
  .hero-slide .idx-hero-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.25rem;
  }
  .hero-slide .idx-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* Primary Button style */
  .btn-hero-primary {
    background: linear-gradient(135deg, #f2a93b 0%, #e85d04 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 24px rgba(232,93,4,0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-hero-primary:hover {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(232,93,4,0.35);
    transform: translateY(-2px);
  }

  /* Secondary Button style */
  .btn-hero-secondary {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-hero-secondary:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
    box-shadow: 0 8px 24px rgba(242,169,59,0.15);
    transform: translateY(-2px);
  }

  /* â”€â”€ Slide Stagger Animations (badge, sub, btns, stats, img) â”€â”€ */
  .hero-slide .slide-badge,
  .hero-slide .idx-hero-sub,
  .hero-slide .idx-hero-btns,
  .hero-slide .idx-stats-row,
  .hero-slide .idx-hero-img-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero-slide.active .slide-badge,
  .hero-slide.active .idx-hero-sub,
  .hero-slide.active .idx-hero-btns,
  .hero-slide.active .idx-stats-row,
  .hero-slide.active .idx-hero-img-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-slide.active .slide-badge    { transition-delay: 0.1s; }
  .hero-slide.active .idx-hero-sub   { transition-delay: 0.65s; }
  .hero-slide.active .idx-hero-btns  { transition-delay: 0.78s; }
  .hero-slide.active .idx-stats-row  { transition-delay: 0.9s; }
  .hero-slide.active .idx-hero-img-wrap { transition-delay: 0.25s; }

  /* â”€â”€ H1 Heading â€” clean stagger (no crusher) â”€â”€ */
  .hero-slide h1 {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero-slide.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
  }

  /* Typewriter accent span */
  .hero-slide h1 .type-accent {
    position: relative;
    display: inline;
  }
  /* Blinking cursor appended by JS */
  .hero-slide h1 .type-cursor {
    display: inline-block;
    width: 3px;
    height: 0.82em;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 3px;
    opacity: 0;
    background: currentColor;
  }
  .hero-slide h1 .type-cursor.blink {
    animation: heroCursorBlink 0.75s step-end infinite;
  }
  @keyframes heroCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }

  /* Shimmer on accent gradient text after typing done */
  .hero-slide h1 .type-accent[data-shimmer="true"] {
    background-size: 250% auto;
    animation: accentShimmer 3s ease infinite;
  }
  @keyframes accentShimmer {
    0%   { background-position: 0%   center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0%   center; }
  }

  /* Slide-Specific Stats row */
  .idx-stats-row {
    display: flex;
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(17, 63, 140, 0.1);
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  .idx-stat-item .number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
  }
  .idx-stat-item .number span { color: var(--orange); }
  .idx-stat-item .label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-top: 0.2rem;
  }

  /* Image Wrap and Floating Badges */
  .idx-hero-img-wrap {
    position: relative;
    padding: 1rem;
    z-index: 2;
  }
  .idx-hero-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(17,63,140,0.12);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165,0.84,0.44,1);
  }
  .idx-hero-img-wrap:hover img {
    transform: translateY(-6px) rotate(-0.5deg);
  }

  .hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 0.7rem 1rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--gray-200);
    z-index: 5;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .hero-slide.active .hero-float-badge {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  .hero-slide.active .hero-float-badge.b1 { transition-delay: 0.6s; animation: floatBadge1 6s ease-in-out infinite 1.2s; }
  .hero-slide.active .hero-float-badge.b2 { transition-delay: 0.8s; animation: floatBadge2 6s ease-in-out infinite 1.4s; }
  .hero-slide.active .hero-float-badge.b3 { transition-delay: 1.0s; animation: floatBadge3 6s ease-in-out infinite 1.6s; }

  .hero-float-badge.b1 { top: 12%; left: -25px; }
  .hero-float-badge.b2 { bottom: 16%; right: -15px; }
  .hero-float-badge.b3 { top: -10px; right: 25px; }

  @keyframes floatBadge1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes floatBadge2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes floatBadge3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
  }

  .hero-float-badge .badge-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  .hero-float-badge .badge-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
  }
  .hero-float-badge .badge-text span {
    font-size: 0.68rem;
    color: var(--gray-500);
    white-space: nowrap;
  }

  /* Slider Bottom Progress-Tab Navigation */
  .hero-slider-nav {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .hero-nav-dots {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
  }
  .hero-nav-dot {
    flex: 1;
    background: rgba(17, 63, 140, 0.04);
    border: 1.5px solid rgba(17, 63, 140, 0.08);
    padding: 0.65rem 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    overflow: hidden;
  }
  .hero-nav-dot:hover {
    background: rgba(17, 63, 140, 0.07);
    transform: translateY(-2px);
    border-color: rgba(17, 63, 140, 0.15);
  }
  .hero-nav-dot.active {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 63, 140, 0.09);
    border-color: rgba(17, 63, 140, 0.18);
  }
  .hero-nav-dot .dot-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.3s ease;
  }
  .hero-nav-dot .dot-service {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 500;
  }
  .hero-nav-dot .dot-progress-bg {
    width: 100%;
    height: 3px;
    background: rgba(17, 63, 140, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 0.25rem;
  }
  .hero-nav-dot .dot-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    border-radius: 10px;
  }

  /* Specific Slide Progress Animation */
  @keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
  }
  .hero-nav-dot.active .dot-progress-bar {
    animation: fillProgress 6s linear forwards;
  }
  .idx-hero.paused .hero-nav-dot.active .dot-progress-bar {
    animation-play-state: paused;
  }

  /* Accent theme styling for tabs */
  .hero-nav-dot[data-slide-to="0"].active .dot-progress-bar { background: #8b5cf6; }
  .hero-nav-dot[data-slide-to="1"].active .dot-progress-bar { background: #0ea5e9; }
  .hero-nav-dot[data-slide-to="2"].active .dot-progress-bar { background: #10b981; }
  .hero-nav-dot[data-slide-to="3"].active .dot-progress-bar { background: #f59e0b; }

  .hero-nav-dot[data-slide-to="0"].active .dot-label { color: #8b5cf6; }
  .hero-nav-dot[data-slide-to="1"].active .dot-label { color: #0ea5e9; }
  .hero-nav-dot[data-slide-to="2"].active .dot-label { color: #10b981; }
  .hero-nav-dot[data-slide-to="3"].active .dot-label { color: #f59e0b; }

  /* Navigation control buttons */
  .hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .hero-control:hover {
    background: var(--blue);
    color: #ffffff;
    border-color: var(--blue);
    box-shadow: 0 8px 20px rgba(17,63,140,0.22);
  }
  .hero-control-prev { left: 2.25rem; }
  .hero-control-next { right: 2.25rem; }

  /* Responsive breakpoints */
  @media (max-width: 1199px) {
    .hero-control { display: none; }
  }
  @media (max-width: 991px) {
    .idx-hero { padding: 1.5rem 0 8.5rem; text-align: center; }
    .hero-slide {
      position: absolute;
      height: auto;
    }
    .hero-slide.active {
      position: relative;
    }
    .hero-nav-dots { gap: 0.75rem; }
    .hero-nav-dot { padding: 0.55rem 0.75rem; border-radius: 12px; }
    .hero-nav-dot .dot-service { display: none; }
    .hero-slide .idx-hero-sub { margin: 0 auto 2rem; }
    .hero-slide .idx-hero-btns { justify-content: center; }
    .hero-slide .idx-stats-row { justify-content: center; }
    .hero-float-badge.b1 { left: -10px; }
    .hero-float-badge.b2 { right: -10px; }
    .idx-hero-img-wrap { margin-top: 3.5rem; }
  }
  @media (max-width: 576px) {
    .idx-hero { padding: 1rem 0 9rem; }
    .hero-float-badge { display: none !important; }
    .hero-nav-dots {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.4rem;
    }
    .hero-nav-dot {
      padding: 0.4rem 0.2rem;
      border-radius: 8px;
      align-items: center;
    }
    .hero-nav-dot .dot-label {
      font-size: 0.65rem;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
    }
  }

  /* â”€â”€ Ticker Bar â”€â”€ */
  .idx-ticker {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    overflow: hidden;
  }
  .idx-ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: ticker 40s linear infinite;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .idx-ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .idx-ticker-item i { color: var(--orange); }

  /* â”€â”€ Section Common â”€â”€ */
  .idx-section { padding: 5.5rem 0; }
  .idx-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange-dark);
    background: var(--orange-light);
    border: 1px solid rgba(242,169,59,0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
  }
  .idx-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }
  .idx-section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
  }

  /* â”€â”€ Highlights Strip â”€â”€ */
  .idx-highlights { background: var(--off-white); }
  .idx-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
  }
  .idx-highlight-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }
  .idx-highlight-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  /* â”€â”€ Services Section â”€â”€ */
  .idx-services { background: var(--white); }
  .service-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
    display: flex;
    flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242,169,59,0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
  }
  .service-card:hover::before { opacity: 1; }
  .service-card.flagship {
    border-color: var(--orange);
    background: linear-gradient(135deg, #fff7eb 0%, #fff 60%);
  }
  .service-card.flagship .flagship-tag {
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, #f2a93b, #e85d04);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 0 var(--radius-lg) 0 12px;
  }
  .service-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
  }
  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
  }
  .service-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
  }
  .service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.25rem;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange-dark);
    text-decoration: none;
    transition: gap 0.3s ease;
  }
  .service-link { gap: 0.7rem; color: var(--blue); }
  .service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  .service-card-link:hover .service-link { gap: 0.7rem; color: var(--blue); }

  /* â”€â”€ Process Section â”€â”€ */
  .idx-process { background: var(--off-white); }
  .process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1.5px solid var(--gray-200);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
  }
  .process-step:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
  }
  .process-step-num {
    position: absolute;
    top: -14px; left: 24px;
    background: linear-gradient(135deg, #f2a93b, #e85d04);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 1px;
  }
  .process-step-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .process-step h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 0.6rem;
  }
  .process-step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
  }

  /* â”€â”€ Testimonials â”€â”€ */
  .idx-testimonials { background: var(--white); }
  .testi-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
  }
  .testi-card:hover {
    background: var(--white);
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }
  .testi-card::before {
    content: '\201C';
    position: absolute;
    top: 12px; left: 20px;
    font-size: 5rem;
    color: rgba(242,169,59,0.12);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
  }
  .testi-stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 1rem; }
  .testi-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
  }
  .testi-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
  .testi-role { font-size: 0.75rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

  /* â”€â”€ FAQ â”€â”€ */
  .idx-faq { background: var(--off-white); }
  .idx-accordion .accordion-item {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 0.9rem;
    overflow: hidden;
  }
  .idx-accordion .accordion-button {
    background: var(--white);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--gray-900);
    box-shadow: none;
    border-radius: var(--radius) !important;
    padding: 1.25rem 1.5rem;
  }
  .idx-accordion .accordion-button:not(.collapsed) {
    color: var(--orange-dark);
    background: var(--orange-light);
    box-shadow: none;
  }
  .idx-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2a93b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  .idx-accordion .accordion-body {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.75;
    padding: 0 1.5rem 1.25rem;
    background: var(--orange-light);
  }

  /* â”€â”€ CTA â”€â”€ */
  .idx-cta {
    background: linear-gradient(135deg, #071533 0%, #113f8c 50%, #071533 100%);
    position: relative;
    overflow: hidden;
  }
  .idx-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,169,59,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .idx-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69,160,73,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-resource-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .cta-resource-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(242,169,59,0.4);
    transform: translateX(4px);
  }
  @media (max-width: 576px) {
    .idx-section { padding: 4rem 0; }
  }
