/* ============================================================
   SISGAIN Healthcare Software Development Dubai – Stylesheet
   ============================================================ */

   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }
   
   :root {
       --bg-offwhite: #F5F8FC;
       --bg-offwhite2: #EEF4F9;
       --bg-blue: #0B3B5E;
       --bg-blue2: #0F4A72;
       --bg-blue3: #062C4A;
       --bg-blue4: #1A5A82;
       --card-light: #FFFFFF;
       --card-blue: #0F4A72;
       --border-light: #DCE5EE;
       --border-blue: #1A5A82;
       --blue-primary: #0B3B5E;
       --blue-secondary: #1A6BAA;
       --blue-accent: #2D8BC9;
       --blue-accent2: #4A9FD8;
       --blue-light: #E8F0F8;
       --text-dark: #1A2332;
       --text-muted: #4A5A6E;
       --text-muted2: #8AA4BC;
       --text-white: #FFFFFF;
       --white: #FFFFFF;
       --green: #2ECC71;
       --accent-ai: #3b82f6;
       --accent-io: #f97316;
       --accent-blockchain: #a855f7;
       --accent-cloud: #eab308;
       --accent-arvr: #06b6d4;
   }
   
   html {
       scroll-behavior: smooth;
   }
   
   body {
       background: var(--bg-offwhite);
       color: var(--text-dark);
       font-size: 16px;
       line-height: 1.6;
       overflow-x: hidden;
   }
   
   h1,
   h2 {
       font-size: clamp(2rem, 2.6rem, 3.4rem);
       font-weight: 800 !important;
       letter-spacing: -0.5px;
       line-height: 1.2;
   }
   
   h3 {
       font-size: 1.05rem;
       font-weight: 700 !important;
   }
   
   p {
       font-size: 0.9rem;
   }
   
   /* ─── HERO ─── */
   .hero {
       min-height: 100vh;
       display: flex;
       align-items: center;
       padding: 5px 5% 30px;
       position: relative;
       overflow: hidden;
       background: var(--bg-blue);
       color: var(--white);
   }
   .hero-orb {
       position: absolute;
       border-radius: 50%;
       filter: blur(90px);
       pointer-events: none;
   }
   .hero-orb-1 {
       width: 520px;
       height: 520px;
       background: radial-gradient(circle, rgba(45, 139, 201, 0.25) 0%, transparent 70%);
       top: -80px;
       right: 5%;
   }
   .hero-orb-2 {
       width: 380px;
       height: 380px;
       background: radial-gradient(circle, rgba(26, 107, 170, 0.2) 0%, transparent 70%);
       bottom: 5%;
       left: -60px;
   }
   .hero-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: stretch;
       max-width: 1280px;
       margin: 0 auto;
       width: 100%;
       position: relative;
       z-index: 1;
   }
   .hero-eyebrow {
       display: inline-flex;
       align-items: center;
       gap: .5rem;
       background: rgba(45, 139, 201, 0.15);
       border: 1px solid rgba(45, 139, 201, 0.25);
       color: var(--blue-accent2);
       padding: .35rem 1rem;
       border-radius: 100px;
       font-size: 0.78rem;
       font-weight: 600;
       letter-spacing: .06em;
       text-transform: uppercase;
       margin-bottom: 1.4rem;
   }
   .hero-eyebrow::before {
       content: '';
       width: 6px;
       height: 6px;
       background: var(--blue-accent2);
       border-radius: 50%;
       animation: pulse 2s infinite;
   }
   @keyframes pulse {
       0%,
       100% {
           opacity: 1;
           transform: scale(1);
       }
       50% {
           opacity: .5;
           transform: scale(.8);
       }
   }
   .hero-sub {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.05rem;
       line-height: 1.7;
       margin-bottom: 1.6rem;
       max-width: 520px;
   }
   .hero-btns {
       display: flex;
       gap: 1rem;
       flex-wrap: wrap;
   }
   .btn-primary {
       display: inline-flex;
       align-items: center;
       gap: .5rem;
       background: linear-gradient(135deg, var(--blue-accent), var(--blue-secondary));
       color: var(--white);
       padding: .9rem 2rem;
       border-radius: 10px;
       font-weight: 700 !important;
       font-size: .95rem;
       text-decoration: none;
       transition: transform .2s, box-shadow .2s;
       box-shadow: 0 0 30px rgba(45, 139, 201, 0.3);
       border: none;
       cursor: pointer;
   }
   .btn-primary:hover {
       transform: translateY(-2px);
       box-shadow: 0 0 40px rgba(45, 139, 201, 0.45);
   }
   .btn-outline {
       display: inline-flex;
       align-items: center;
       gap: .5rem;
       background: transparent;
       color: var(--white);
       padding: .9rem 2rem;
       border-radius: 10px;
       border: 1px solid rgba(255, 255, 255, 0.25);
       font-weight: 600;
       font-size: .95rem;
       text-decoration: none;
       transition: border-color .2s, color .2s;
   }
   .btn-outline:hover {
       border-color: var(--blue-accent2);
       color: var(--blue-accent2);
   }
   .btn-outline-dark {
       display: inline-flex;
       align-items: center;
       gap: .5rem;
       background: transparent;
       color: var(--text-dark);
       padding: .9rem 2rem;
       border-radius: 10px;
       border: 1px solid var(--border-light);
       font-weight: 600;
       font-size: .95rem;
       text-decoration: none;
       transition: border-color .2s, color .2s;
   }
   .btn-outline-dark:hover {
       border-color: var(--blue-accent);
       color: linear-gradient(135deg, var(--blue-accent), var(--blue-secondary)) !important;
   }
   
   /* Hero Visual (video now full width, badges overlaid) */
   .hero-visual {
       position: relative;
       width: 100%;
       height: 100%;
       min-height: 400px;
       padding-bottom: 56.25%; /* 16:9 aspect ratio for video */
       overflow: hidden;
   }
   .hero-video {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
   }
   .hero-video-overlay {
       position: absolute;
       inset: 0;
       background: radial-gradient(circle at 30% 40%, rgba(11, 59, 94, 0.15), rgba(0, 0, 0, 0.25));
       pointer-events: none;
       z-index: 1;
   }
   
   /* Floating badges now positioned relative to hero-visual */
   .floating-card {
       z-index: 10;
       position: absolute;
       background: rgba(11, 59, 94, 0.95);
       border: 1px solid rgba(255, 255, 255, 0.12);
       border-radius: 14px;
       padding: 12px 16px;
       font-size: .78rem;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
       backdrop-filter: blur(8px);
       animation: float 4s ease-in-out infinite;
       color: var(--white);
   }
   @keyframes float {
       0%,
       100% {
           transform: translateY(0);
       }
       50% {
           transform: translateY(-8px);
       }
   }
   .fc-top {
       top: 10%;
       right: 5%;
       animation-delay: 0s;
   }
   .fc-bot {
       bottom: 10%;
       left: 5%;
       animation-delay: 2s;
   }
   .fc-label {
       color: rgba(255, 255, 255, 0.5);
       margin-bottom: 2px;
   }
   .fc-val {
       font-weight: 700 !important;
       color: var(--blue-accent2);
       font-size: 1rem;
   }
   
   /* ─── TRUST BAR ─── */
   .trust-bar {
       background: var(--bg-blue2);
       border-top: 1px solid rgba(255, 255, 255, 0.06);
       border-bottom: 1px solid rgba(255, 255, 255, 0.06);
       padding: 28px 5%;
   }
   .trust-bar-inner {
       max-width: 1280px;
       margin: 0 auto;
       display: flex;
       justify-content: space-around;
       flex-wrap: wrap;
       gap: 2rem;
   }
   .trust-item {
       text-align: center;
   }
   .trust-num {
       font-weight: 800;
       font-size: 1.8rem;
       background: linear-gradient(135deg, var(--blue-accent2), var(--blue-accent));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }
   .trust-lbl {
       color: rgba(255, 255, 255, 0.6);
       font-size: .82rem;
       margin-top: 2px;
   }
   
   /* ─── SECTIONS ─── */
   section {
       padding: 30px 5%;
   }
   .container {
       max-width: 1280px;
       margin: 0 auto;
   }
   
   .section-eyebrow {
       display: inline-block;
       color: var(--blue-accent);
       font-size: .78rem;
       font-weight: 600;
       letter-spacing: .1em;
       text-transform: uppercase;
       margin-bottom: .8rem;
   }
   .section-intro {
       max-width: 640px;
       margin: 1rem auto 3rem;
       line-height: 1.7;
       font-size: 0.95rem;
   }
   .text-center {
       text-align: center;
   }
   
   /* ─── SECTION: OFF-WHITE ─── */
   .section-offwhite {
       background: var(--bg-offwhite);
       color: var(--text-dark);
   }
   .section-offwhite .section-intro {
       color: black;
   }
   .section-offwhite h2 {
       color: var(--text-dark);
   }
   
   /* ─── SECTION: BLUE ─── */
   .section-blue {
       background: var(--bg-blue);
       color: var(--white);
   }
   .section-blue .section-intro {
       color: rgba(255, 255, 255, 0.7);
   }
   .section-blue h2 {
       color: var(--white);
   }
   .section-blue .section-eyebrow {
       color: var(--blue-accent2);
   }
   
   /* ─── SECTION: BLUE LIGHT ─── */
   .section-blue-light {
       background: var(--bg-blue2);
       color: var(--white);
   }
   .section-blue-light .section-intro {
       color: rgba(255, 255, 255, 0.7);
   }
   .section-blue-light h2 {
       color: var(--white);
   }
   .section-blue-light .section-eyebrow {
       color: var(--blue-accent2);
   }
   
   /* ─── BUSINESS OUTCOMES ─── */
   .outcomes-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       margin-top: 3rem;
   }
   .outcome-card {
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 16px;
       padding: 2rem 1.8rem;
       transition: border-color .3s, box-shadow .3s, transform .3s;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
       text-align: center;
   }
   .outcome-card:hover {
       border-color: var(--blue-accent);
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.08);
       transform: translateY(-2px);
   }
   .outcome-card .out-icon {
       font-size: 2.2rem;
       margin-bottom: 0.5rem;
   }
   .outcome-card h3 {
       margin-bottom: .5rem;
   }
   .outcome-card p {
       line-height: 1.6;
   }
   
   /* ─── PROBLEM SECTION ─── */
   .problem-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 1.5rem;
       margin-top: 3rem;
   }
   .problem-card {
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 16px;
       padding: 2rem 1.6rem;
       transition: border-color .3s, transform .3s, box-shadow .3s;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
   }
   .problem-card:hover {
       border-color: var(--blue-accent);
       transform: translateY(-4px);
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.08);
   }
   .prob-icon {
       width: 52px;
       height: 52px;
       border-radius: 14px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.2rem;
       font-size: 1.4rem;
   }
   .prob-icon.red {
       background: rgba(231, 76, 60, 0.08);
       border: 1px solid rgba(231, 76, 60, 0.15);
   }
   .prob-icon.orange {
       background: rgba(243, 156, 18, 0.08);
       border: 1px solid rgba(243, 156, 18, 0.15);
   }
   .prob-icon.cyan {
       background: rgba(45, 139, 201, 0.08);
       border: 1px solid rgba(45, 139, 201, 0.15);
   }
   .prob-icon.violet {
       background: rgba(123, 159, 255, 0.08);
       border: 1px solid rgba(123, 159, 255, 0.15);
   }
   .problem-card h3 {
       margin-bottom: .6rem;
   }
   .problem-card p {
       line-height: 1.6;
   }
   .prob-cta {
       text-align: center;
       margin-top: 2.5rem;
   }
   
   /* ─── SERVICES CAROUSEL ─── */
   .services-carousel-wrap {
       position: relative;
       overflow: hidden;
       margin-top: 2.5rem;
   }
   .services-carousel-track {
       display: flex;
       transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       gap: 1.4rem;
   }
   .services-carousel-track .service-card {
       flex: 0 0 calc(25% - 1.05rem);
       min-width: 0;
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 16px;
       padding: 1.8rem 1.5rem;
       transition: border-color .3s, box-shadow .3s;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
   }
   .services-carousel-track .service-card:hover {
       border-color: var(--blue-accent);
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.08);
   }
   .svc-icon {
       width: 48px;
       height: 48px;
       border-radius: 12px;
       background: linear-gradient(135deg, rgba(45, 139, 201, 0.12), rgba(26, 107, 170, 0.08));
       border: 1px solid rgba(45, 139, 201, 0.15);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.3rem;
       margin-bottom: 1rem;
   }
   .service-card h3 {
       margin-bottom: .5rem;
   }
   .service-card p {
       line-height: 1.6;
   }
   
   .carousel-controls {
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 1.2rem;
       margin-top: 2rem;
   }
   .carousel-btn {
       width: 44px;
       height: 44px;
       border-radius: 50%;
       border: 1px solid var(--border-light);
       background: var(--blue-accent);
       color: black;
       font-size: 1.1rem;
       cursor: pointer;
       transition: all .25s;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 600;
   }
   .carousel-btn:hover {
       border-color: var(--blue-accent);
       color: var(--blue-accent);
       background: rgba(45, 139, 201, 0.06);
   }
   .carousel-dots {
       display: flex;
       gap: .5rem;
   }
   .carousel-dot {
       width: 10px;
       height: 10px;
       border-radius: 50%;
       border: none;
       background: var(--border-light);
       cursor: pointer;
       transition: background .3s, transform .3s;
       padding: 0;
   }
   .carousel-dot.active {
       background: var(--blue-accent);
       transform: scale(1.25);
   }
   .carousel-dot:hover {
       background: var(--blue-secondary);
   }
   
   /* ─── AI ANSWER ─── */
   .ai-answer-wrap {
       background: var(--bg-offwhite2);
       border: 1px solid var(--border-light);
       border-radius: 24px;
       overflow: hidden;
   }
   .ai-answer-inner {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 0;
       align-items: stretch;
   }
   .ai-visual {
       background: linear-gradient(135deg, rgba(11, 59, 94, 0.06), rgba(45, 139, 201, 0.08));
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 2rem;
       border-right: 1px solid var(--border-light);
       overflow: hidden;
   }
   .ai-visual img {
       width: 100%;
       height: auto;
       max-height: 400px;
       object-fit: cover;
       border-radius: 12px;
       display: block;
   }
   .ai-content {
       padding: 3rem;
   }
   .ai-content h2 {
       margin-bottom: 1.2rem;
   }
   .ai-content p {
       line-height: 1.8;
       margin-bottom: 1rem;
   }
   
   /* ─── SOLUTIONS BY BUSINESS TYPE (TABS) ─── */
   .tabs {
       display: flex;
       gap: .5rem;
       flex-wrap: wrap;
       margin-bottom: 2rem;
       justify-content: center;
   }
   .tab-btn {
       padding: .55rem 1.2rem;
       border-radius: 8px;
       border: 1px solid var(--border-light);
       color: black;
       font-size: .85rem;
       font-weight: 500;
       cursor: pointer;
       transition: all .2s;
       white-space: nowrap;
   }
   .tab-btn.active,
   .tab-btn:hover {
       background: linear-gradient(135deg, var(--blue-accent), var(--blue-secondary));
       color: var(--white);
       border-color: transparent;
       font-weight: 700 !important;
   }
   .tab-content {
       display: none;
   }
   .tab-content.active {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2rem;
       align-items: start;
   }
   .tab-visual {
       border-radius: 16px;
       height: 220px;
       display: flex;
       align-items: center;
       justify-content: center;
       background: rgba(255, 255, 255, 0.04);
       border: 1px solid rgba(255, 255, 255, 0.08);
       position: relative;
       overflow: hidden;
       flex-direction: column;
       gap: .5rem;
   }
   .tab-visual .photo-label {
       font-size: .75rem;
       color: var(--white);
       font-weight: 600;
       letter-spacing: .04em;
       text-transform: uppercase;
       background: rgba(11, 59, 94, 0.8);
       padding: .4rem 1.2rem;
       border-radius: 100px;
       backdrop-filter: blur(4px);
       border: 1px solid rgba(255, 255, 255, 0.08);
       position: relative;
       z-index: 2;
   }
   .tab-visual .photo-bg {
       position: absolute;
       inset: 0;
       opacity: .12;
       z-index: 0;
   }
   .tab-visual .photo-bg2 {
       position: absolute;
       inset: 0;
       opacity: .08;
       z-index: 0;
   }
   .tab-visual .tab-img {
       position: absolute;
       inset: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 0.5;
       z-index: 0;
   }
   .tab-visual .photo-label {
       position: relative;
       z-index: 2;
   }
   .tab-features h3 {
       font-weight: 700 !important;
       font-size: 1.4rem;
       color: var(--white);
       margin-bottom: 1.2rem;
   }
   .feature-list {
       display: flex;
       flex-wrap: wrap;
       gap: 0.5rem 0.7rem;
       list-style: none;
       padding: 0;
       margin: 0;
   }
   .feature-list li {
       display: inline-flex;
       align-items: center;
       gap: 0.4rem;
       padding: 0.35rem 1rem;
       background: rgba(255, 255, 255, 0.06);
       border: 1px solid rgba(255, 255, 255, 0.08);
       border-radius: 20px;
       font-size: 0.82rem;
       color: rgba(255, 255, 255, 0.8);
       white-space: nowrap;
       transition: border-color 0.2s, background 0.2s;
       cursor: default;
   }
   .feature-list li:hover {
       border-color: var(--blue-accent2);
       background: rgba(255, 255, 255, 0.1);
   }
   .feature-list li::before {
       content: '✓';
       color: var(--blue-accent2);
       font-weight: 700 !important;
       font-size: 0.75rem;
       flex-shrink: 0;
   }
   
   /* ─── KEY FEATURES ─── */
   .features-3col {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       margin-top: 3rem;
   }
   .feat-col {
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
       transition: box-shadow .3s, transform .3s;
   }
   .feat-col:hover {
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.08);
       transform: translateY(-2px);
   }
   .feat-col-head {
       padding: 1.5rem 1.8rem;
       border-bottom: 1px solid var(--border-light);
       display: flex;
       align-items: center;
       gap: .8rem;
   }
   .feat-col-head h3 {
       font-weight: 700 !important;
       font-size: 1rem;
       color: var(--text-dark);
   }
   .feat-col-head .tag {
       padding: .3rem .8rem;
       border-radius: 100px;
       font-size: .72rem;
       font-weight: 600;
   }
   .tag-cyan {
       background: rgba(45, 139, 201, 0.1);
       border: 1px solid rgba(45, 139, 201, 0.2);
       color: var(--blue-accent);
   }
   .tag-violet {
       background: rgba(123, 159, 255, 0.1);
       border: 1px solid rgba(123, 159, 255, 0.2);
       color: #5A7FFF;
   }
   .tag-green {
       background: rgba(46, 204, 113, 0.1);
       border: 1px solid rgba(46, 204, 113, 0.2);
       color: var(--green);
   }
   .feat-col-body {
       padding: 1.2rem 1.8rem 1.8rem;
   }
   .feat-item {
       display: flex;
       align-items: center;
       gap: .6rem;
       padding: .5rem 0;
       border-bottom: 1px solid rgba(220, 229, 238, 0.5);
       color: black;
       font-size: .875rem;
   }
   .feat-item:last-child {
       border-bottom: none;
   }
   .feat-item::before {
       content: '';
       width: 5px;
       height: 5px;
       background: var(--blue-accent);
       border-radius: 50%;
       flex-shrink: 0;
   }
   
   /* ─── SECURITY CAROUSEL ─── */
   .security-carousel-wrap {
       position: relative;
       overflow: hidden;
       margin-top: 2.5rem;
   }
   .security-carousel-track {
       display: flex;
       transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       gap: 1.4rem;
   }
   .security-carousel-track .sec-card {
       flex: 0 0 calc(33.333% - 0.93rem);
       min-width: 0;
       background: rgba(255, 255, 255, 0.06);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 16px;
       padding: 1.8rem;
       transition: border-color .3s, background .3s;
       backdrop-filter: blur(4px);
   }
   .security-carousel-track .sec-card:hover {
       border-color: var(--blue-accent2);
       background: rgba(255, 255, 255, 0.08);
   }
   .sec-icon {
       width: 48px;
       height: 48px;
       border-radius: 12px;
       background: rgba(46, 204, 113, 0.1);
       border: 1px solid rgba(46, 204, 113, 0.15);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.3rem;
       margin-bottom: 1rem;
   }
   .sec-card h3 {
       font-weight: 700 !important;
       font-size: .95rem;
       color: var(--white);
       margin-bottom: .5rem;
   }
   .sec-card p {
       color: rgba(255, 255, 255, 0.6);
       line-height: 1.6;
   }
   
   /* ─── PROCESS ─── */
   .process-section {
       background: var(--bg-offwhite2);
   }
   .process-steps {
       display: grid;
       grid-template-columns: repeat(6, 1fr);
       gap: 0;
       margin-top: 3rem;
       position: relative;
   }
   .process-steps::before {
       content: '';
       position: absolute;
       top: 28px;
       left: 8%;
       right: 8%;
       height: 1px;
       background: linear-gradient(90deg, var(--blue-accent), var(--blue-secondary));
       opacity: .3;
   }
   .step {
       text-align: center;
       padding: 0 .5rem;
       position: relative;
       z-index: 1;
   }
   .step-num {
       width: 56px;
       height: 56px;
       border-radius: 50%;
       background: var(--white);
       border: 2px solid var(--border-light);
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 800;
       font-size: .9rem;
       color: var(--blue-accent);
       margin: 0 auto 1rem;
       transition: border-color .3s, background .3s;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
   }
   .step:hover .step-num {
       border-color: var(--blue-accent);
       background: rgba(45, 139, 201, 0.06);
   }
   .step h3 {
       font-weight: 700 !important;
       font-size: .82rem;
       color: var(--text-dark);
       margin-bottom: .4rem;
   }
   .step p {
       line-height: 1.5;
   }
   
   /* ─── WHY CHOOSE ─── */
   .why-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2rem;
       margin-top: 3rem;
   }
   .why-col {
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 20px;
       padding: 2.5rem;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
       transition: box-shadow .3s;
   }
   .why-col:hover {
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.08);
   }
   .why-col-head {
       display: flex;
       align-items: center;
       gap: .8rem;
       margin-bottom: 1.8rem;
       padding-bottom: 1.2rem;
       border-bottom: 1px solid var(--border-light);
   }
   .why-col-head h3 {
       font-weight: 700 !important;
       font-size: 1.1rem;
       color: var(--text-dark);
   }
   .badge-good {
       background: rgba(45, 139, 201, 0.1);
       color: var(--blue-accent);
       padding: .3rem .8rem;
       border-radius: 100px;
       font-size: .75rem;
       font-weight: 600;
   }
   .badge-bad {
       background: rgba(231, 76, 60, 0.1);
       color: #E74C3C;
       padding: .3rem .8rem;
       border-radius: 100px;
       font-size: .75rem;
       font-weight: 600;
   }
   .why-item {
       display: flex;
       align-items: flex-start;
       gap: .8rem;
       padding: .65rem 0;
       border-bottom: 1px solid rgba(220, 229, 238, 0.5);
       font-size: .875rem;
   }
   .why-item:last-child {
       border-bottom: none;
   }
   .check-good {
       color: var(--blue-accent);
       font-size: 1rem;
       flex-shrink: 0;
   }
   .check-bad {
       color: #E74C3C;
       font-size: 1rem;
       flex-shrink: 0;
   }
   .why-item span {
       color:white;
   }
   
   /* ─── USE CASES ─── */
   .usecase-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 1rem;
       margin-top: 2.5rem;
   }
   .uc-card {
       background: var(--card-light);
       border: 1px solid var(--border-light);
       border-radius: 12px;
       padding: 1.2rem 1rem;
       display: flex;
       align-items: center;
       gap: 0.6rem;
       transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
       cursor: default;
   }
   .uc-card:hover {
       border-color: var(--blue-accent);
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(11, 59, 94, 0.06);
   }
   .uc-card .uc-dot {
       width: 8px;
       height: 8px;
       background: var(--blue-accent);
       border-radius: 50%;
       flex-shrink: 0;
   }
   .uc-card span {
       color: var(--text-dark);
       font-size: 0.85rem;
       font-weight: 500;
       line-height: 1.3;
   }
   
   /* ─── TECH STACK ─── */
   .tech-groups {
       display: grid;
       gap: 2rem;
       margin-top: 3rem;
   }
   .tech-row {
       display: grid;
       grid-template-columns: 160px 1fr;
       gap: 1.5rem;
       align-items: center;
   }
   .tech-cat {
       color: var(--text-muted2);
       font-size: .8rem;
       font-weight: 600;
       letter-spacing: .08em;
       text-transform: uppercase;
       text-align: right;
   }
   .tech-chips {
       display: flex;
       flex-wrap: wrap;
       gap: .6rem;
   }
   .chip {
       background: var(--white);
       border: 1px solid var(--border-light);
       border-radius: 8px;
       padding: .4rem 1rem;
       font-size: .82rem;
       color: var(--text-dark);
       font-weight: 500;
       transition: border-color .2s, color .2s, box-shadow .2s;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
   }
   .chip:hover {
       border-color: var(--blue-accent);
       color: var(--blue-accent);
       box-shadow: 0 4px 12px rgba(45, 139, 201, 0.06);
   }
   
   /* ─── COST SECTION ─── */
   .cost-section {
       background: var(--bg-offwhite2);
   }
   .cost-inner {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 3rem;
       align-items: stretch;
       margin-top: 3rem;
   }
   .cost-factors-wrap {
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       border: 1px solid var(--border-light);
       border-radius: 20px;
       padding: 2.8rem 2.5rem;
       background: var(--white);
       transition: border-color 0.3s, box-shadow 0.3s;
       height: 100%;
       width: 100%;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
   }
   .cost-factors-wrap:hover {
       border-color: var(--blue-accent);
       box-shadow: 0 8px 30px rgba(11, 59, 94, 0.06);
   }
   .cost-factors-heading {
       font-weight: 700 !important;
       font-size: 1.1rem;
       color: var(--text-dark);
       margin-bottom: 1.2rem;
       display: flex;
       align-items: center;
       gap: 0.6rem;
       justify-content: center;
   }
   .cost-factors-heading span {
       font-size: 1.4rem;
   }
   .cost-factors-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 0.8rem 1.2rem;
       width: 100%;
       max-width: 560px;
   }
   .cost-factors-grid li {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.7rem 0.9rem;
       background: var(--bg-offwhite);
       border: 1px solid var(--border-light);
       border-radius: 10px;
       color: black;
       font-size: 0.84rem;
       transition: border-color 0.3s, transform 0.2s, background 0.2s;
       cursor: default;
       list-style: none;
   }
   .cost-factors-grid li:hover {
       border-color: var(--blue-accent);
       background: rgba(45, 139, 201, 0.04);
       transform: translateY(-2px);
   }
   .cost-factors-grid li .factor-icon {
       font-size: 0.95rem;
       flex-shrink: 0;
   }
   .cost-factors-grid li .factor-arrow {
       color: var(--blue-accent);
       font-weight: 700 !important;
       flex-shrink: 0;
       margin-right: 0.1rem;
   }
   
   .cost-cta-box {
       background: linear-gradient(145deg, var(--bg-blue), var(--bg-blue2));
       border: 1px solid rgba(255, 255, 255, 0.08);
       border-radius: 20px;
       padding: 2.8rem 2.5rem;
       text-align: center;
       transition: border-color 0.4s, box-shadow 0.4s;
       position: relative;
       overflow: hidden;
       display: flex;
       flex-direction: column;
       justify-content: center;
       height: 100%;
       width: 100%;
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
   }
   .cost-cta-box::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: radial-gradient(circle at 30% 40%, rgba(45, 139, 201, 0.08), transparent 60%);
       pointer-events: none;
   }
   .cost-cta-box:hover {
       border-color: var(--blue-accent2);
       box-shadow: 0 8px 40px rgba(11, 59, 94, 0.15);
   }
   .cta-icon {
       font-size: 3.2rem;
       margin-bottom: 0.8rem;
       display: block;
   }
   .cost-cta-box h3 {
       font-weight: 700 !important;
       font-size: 1.4rem;
       color: var(--white);
       margin-bottom: 0.8rem;
       position: relative;
   }
   .cost-cta-box p {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9rem;
       margin-bottom: 2rem;
       line-height: 1.7;
       position: relative;
   }
   .cost-cta-box .btn-primary {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       background: linear-gradient(135deg, var(--blue-accent), var(--blue-secondary));
       color: var(--white);
       padding: 0.9rem 2.2rem;
       border-radius: 10px;
       font-weight: 700 !important;
       font-size: 0.95rem;
       text-decoration: none;
       transition: transform 0.2s, box-shadow 0.2s;
       box-shadow: 0 0 30px rgba(45, 139, 201, 0.25);
       border: none;
       cursor: pointer;
       position: relative;
       z-index: 2;
   }
   .cost-cta-box .btn-primary:hover {
       transform: translateY(-2px);
       box-shadow: 0 0 45px rgba(45, 139, 201, 0.4);
   }
   .cta-note {
       font-size: 0.78rem;
       color: rgba(255, 255, 255, 0.4);
       margin-top: 1.2rem;
       position: relative;
       z-index: 2;
   }
   .cta-note span {
       color: var(--blue-accent2);
   }
   
   /* ─── FAQ TWO-COLUMN ─── */
   .faq-two-col {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 1.5rem;
       max-width: 1100px;
       margin: 3rem auto 0;
   }
   .faq-col {
       display: grid;
       gap: 1rem;
   }
   .faq-item {
       background: var(--white);
       border: 1px solid var(--border-light);
       border-radius: 14px;
       overflow: hidden;
       transition: border-color .3s, box-shadow .3s;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
   }
   .faq-item:hover {
       border-color: var(--border-light);
       box-shadow: 0 4px 16px rgba(11, 59, 94, 0.04);
   }
   .faq-q {
       width: 100%;
       text-align: left;
       background: none;
       border: none;
       cursor: pointer;
       padding: 1.2rem 1.6rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 1rem;
       font-size: .92rem;
       font-weight: 600;
       color: var(--text-dark);
       line-height: 1.4;
   }
   .faq-q::after {
       content: '+';
       color: var(--blue-accent);
       font-size: 1.3rem;
       font-weight: 300;
       flex-shrink: 0;
       transition: transform .3s;
   }
   .faq-item.open .faq-q::after {
       transform: rotate(45deg);
   }
   .faq-a {
       display: none;
       padding: 0 1.6rem 1.4rem;
       color: black;
       font-size: .875rem;
       line-height: 1.7;
   }
   .faq-item.open .faq-a {
       display: block;
   }
   
   /* ─── CTA BANNER ─── */
   .cta-banner {
       background: linear-gradient(135deg, var(--bg-blue), var(--bg-blue2));
       border-top: 1px solid rgba(255, 255, 255, 0.06);
       border-bottom: 1px solid rgba(255, 255, 255, 0.06);
       padding: 80px 5%;
       text-align: center;
       position: relative;
       overflow: hidden;
   }
   .cta-banner::before {
       content: '';
       position: absolute;
       inset: 0;
       background: radial-gradient(circle at 50% 50%, rgba(45, 139, 201, 0.08) 0%, transparent 70%);
   }
   .cta-banner h2 {
       margin-bottom: 1rem;
       position: relative;
       color: var(--white);
   }
   .cta-banner p {
       color: rgba(255, 255, 255, 0.7);
       max-width: 520px;
       margin: 0 auto 2.5rem;
       position: relative;
   }
   .cta-banner-btns {
       display: flex;
       gap: 1rem;
       justify-content: center;
       flex-wrap: wrap;
       position: relative;
   }
   
   /* ─── DIVIDER ─── */
   .section-divider {
       height: 1px;
       background: linear-gradient(90deg, transparent, var(--border-light), transparent);
       margin: 0 5%;
   }
   
   /* =========================================================
      TECHNOLOGY CAPABILITIES — FIXED NAV BUTTONS
      ========================================================= */
   .tech-capabilities-wrap {
       position: relative;
       margin-top: 2rem;
   }
   .tech-carousel-wrapper {
       display: block;
       position: relative;
   }
   .owl-carousel.owl-theme#techCarousel {
       display: flex;
       flex-direction: column;
   }
   .owl-carousel#techCarousel .owl-stage-outer {
       flex: 1;
       height: auto;
       min-height: 380px;
   }
   .owl-carousel#techCarousel .owl-stage {
       display: flex;
       align-items: stretch;
   }
   .owl-carousel#techCarousel .owl-item {
       display: flex;
       align-items: stretch;
       padding: 0 8px;
   }
   .owl-carousel#techCarousel .item {
       width: 100%;
       display: flex;
       height: auto;
   }
   
   /* Tech Nav — placed outside the carousel, centered below */
   .tech-nav {
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 1.5rem;
       margin-top: 2rem;
       position: relative;
       z-index: 10;
   }
   .tech-prev-btn,
   .tech-next-btn {
       width: 48px;
       height: 48px;
       border-radius: 50%;
       border: 2px solid rgba(255, 255, 255, 0.25);
       background: rgba(255, 255, 255, 0.08);
       color: #fff;
       font-size: 1.4rem;
       cursor: pointer;
       transition: all 0.25s ease;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 600;
       backdrop-filter: blur(6px);
       -webkit-backdrop-filter: blur(6px);
   }
   .tech-prev-btn:hover,
   .tech-next-btn:hover {
       background: rgba(255, 255, 255, 0.18);
       border-color: var(--blue-accent2);
       color: var(--blue-accent2);
       transform: scale(1.05);
   }
   
   .tech-card {
       background: rgba(20, 20, 28, 0.75);
       backdrop-filter: blur(18px);
       -webkit-backdrop-filter: blur(18px);
       border-radius: 28px;
       display: flex;
       flex-direction: column;
       width: 100%;
       overflow: hidden;
       border: 1px solid rgba(255, 255, 255, 0.12);
       box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.6);
       transition: transform 0.25s ease, border-color 0.2s;
       height: 100%;
       min-height: 360px;
   }
   .tech-card:hover {
       transform: translateY(-5px);
       border-color: rgba(255, 255, 255, 0.25);
   }
   .tech-card-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 18px 26px;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       background: rgba(0, 0, 0, 0.35);
       flex-shrink: 0;
   }
   .tech-card-header h3 {
       font-size: 1.6rem;
       font-weight: 700 !important;
       letter-spacing: -0.5px;
       color: #fff;
   }
   .tech-header-icon {
       width: 44px;
       height: 44px;
       background: rgba(255, 255, 255, 0.06);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       border: 1px solid rgba(255, 255, 255, 0.2);
       font-size: 1.3rem;
   }
   .tech-card-body {
       display: flex;
       flex: 1;
       min-height: 0;
   }
   .tech-card-left {
       flex: 1 1 48%;
       position: relative;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       display: flex;
       align-items: flex-end;
       padding: 28px 24px;
       isolation: isolate;
       min-height: 180px;
   }
   .tech-card-left::before {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.2) 100%);
       z-index: 1;
       border-radius: 0 0 0 28px;
   }
   .tech-card-left p {
       position: relative;
       z-index: 2;
       font-size: 1rem;
       font-weight: 500;
       color: #ffffff;
       text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
       max-width: 90%;
       line-height: 1.6;
   }
   .tech-ai .tech-card-left {
       background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070&auto=format&fit=crop');
   }
   .tech-iomt .tech-card-left {
       background-image: url('https://images.unsplash.com/photo-1579154204601-01588f351e67?q=80&w=2070&auto=format&fit=crop');
   }
   .tech-blockchain .tech-card-left {
       background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?q=80&w=2070&auto=format&fit=crop');
   }
   .tech-cloud .tech-card-left {
       background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2070&auto=format&fit=crop');
   }
   .tech-arvr .tech-card-left {
       background-image: url('https://images.unsplash.com/photo-1622979135225-d2ba269cf1ac?q=80&w=2070&auto=format&fit=crop');
   }
   .tech-card-right {
       flex: 1 1 52%;
       padding: 24px 26px;
       border-left: 1px solid rgba(255, 255, 255, 0.1);
       display: flex;
       flex-direction: column;
       justify-content: center;
       background: rgba(0, 0, 0, 0.25);
   }
   .tech-card-right h4 {
       font-size: 0.8rem;
       font-weight: 700 !important;
       text-transform: uppercase;
       letter-spacing: 2px;
       color: rgba(255, 255, 255, 0.7);
       margin-bottom: 16px;
   }
   /* ─── TECHNOLOGY STACK — CARD WRAPPER ─── */
.tech-stack-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 2.8rem 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tech-stack-card:hover {
    border-color: rgba(45, 139, 201, 0.4);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

/* Override tech-groups margin since it's now inside card */
.tech-stack-card .tech-groups {
    margin-top: 0;
}

/* Card inner header (optional label inside card) */
.tech-stack-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-stack-card-header .card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-accent2);
}

.tech-stack-card-header .card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-accent2);
    animation: pulse 2s infinite;
}

/* Divider between each tech row inside card */
.tech-stack-card .tech-row {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-stack-card .tech-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-stack-card {
        padding: 1.8rem 1.4rem;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .tech-stack-card {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }
}
   .tech-solution-list {
       list-style: none;
       display: flex;
       flex-direction: column;
       gap: 8px;
       padding: 0;
       margin: 0;
   }
   .tech-solution-list li {
       display: flex;
       align-items: center;
       gap: 12px;
       font-weight: 500;
       padding: 6px 0;
       border-bottom: 1px solid rgba(255, 255, 255, 0.07);
       color: rgba(255, 255, 255, 0.9);
       font-size: 0.9rem;
   }
   .tech-list-num {
       background: rgba(255, 255, 255, 0.1);
       border-radius: 10px;
       padding: 2px 10px;
       font-size: 0.7rem;
       font-weight: 600;
       flex-shrink: 0;
       color: rgba(255, 255, 255, 0.7);
   }
   .tech-ai .tech-card-header {
       border-bottom-color: var(--accent-ai);
   }
   .tech-ai .tech-card-right {
       border-left-color: rgba(59, 130, 246, 0.45);
   }
   .tech-iomt .tech-card-header {
       border-bottom-color: var(--accent-io);
   }
   .tech-iomt .tech-card-right {
       border-left-color: rgba(249, 115, 22, 0.45);
   }
   .tech-blockchain .tech-card-header {
       border-bottom-color: var(--accent-blockchain);
   }
   .tech-blockchain .tech-card-right {
       border-left-color: rgba(168, 85, 247, 0.45);
   }
   .tech-cloud .tech-card-header {
       border-bottom-color: var(--accent-cloud);
   }
   .tech-cloud .tech-card-right {
       border-left-color: rgba(234, 179, 8, 0.45);
   }
   .tech-arvr .tech-card-header {
       border-bottom-color: var(--accent-arvr);
   }
   .tech-arvr .tech-card-right {
       border-left-color: rgba(6, 182, 212, 0.45);
   }
   
   /* Tech mobile accordion */
   .tech-mobile-accordion {
       display: none;
       flex-direction: column;
       gap: 12px;
       margin-top: 12px;
   }
   .tech-accordion-item {
       background: rgba(20, 20, 28, 0.6);
       backdrop-filter: blur(10px);
       border-radius: 18px;
       border: 1px solid rgba(255, 255, 255, 0.08);
       overflow: hidden;
   }
   .tech-accordion-item.active .tech-accordion-body {
       display: block;
   }
   .tech-accordion-header {
       padding: 16px 20px;
       font-weight: 700 !important;
       display: flex;
       justify-content: space-between;
       align-items: center;
       cursor: pointer;
       color: #fff;
       font-size: 1.05rem;
       background: rgba(0, 0, 0, 0.25);
       transition: background 0.2s;
   }
   .tech-accordion-header:hover {
       background: rgba(255, 255, 255, 0.05);
   }
   .tech-accordion-header .arrow {
       transition: transform 0.3s;
       font-size: 1.2rem;
       color: rgba(255, 255, 255, 0.5);
   }
   .tech-accordion-item.active .tech-accordion-header .arrow {
       transform: rotate(180deg);
   }
   .tech-accordion-body {
       display: none;
       padding: 0 20px 22px;
       color: rgba(255, 255, 255, 0.85);
   }
   .tech-accordion-body .tech-solution-list li {
       color: rgba(255, 255, 255, 0.85);
   }
   .tech-mobile-img {
       width: 100%;
       height: 120px;
       object-fit: cover;
       border-radius: 14px;
       margin-bottom: 12px;
       margin-top: 14px;
   }
   
   /* =========================================================
      COMPLIANCE SECTION — FIXED, DOTS REMOVED
      ========================================================= */
   .compliance-section {
       background: var(--bg-blue2);
       color: var(--white);
       padding: 30px 5%;
   }
   .compliance-section .section-eyebrow {
       color: var(--blue-accent2);
   }
   .compliance-section h2 {
       color: var(--white);
   }
   .compliance-section .section-intro {
       color: rgba(255, 255, 255, 0.7);
   }
   
   .compliance-tabs {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 10px;
       margin-bottom: 32px;
       flex-shrink: 0;
       padding: 2px 0;
   }
   .compliance-tabs .tab-btn {
       border: none;
       background: rgba(255, 255, 255, 0.08);
       color: rgba(255, 255, 255, 0.6);
       padding: 10px 22px;
       border-radius: 50px;
       font-size: 14px;
       cursor: pointer;
       transition: 0.3s;
       font-weight: 500;
       letter-spacing: 0.3px;
       white-space: nowrap;
       flex-shrink: 0;
   }
   .compliance-tabs .tab-btn.active {
       background: var(--blue-accent);
       color: #fff;
   }
   .compliance-tabs .tab-btn:hover:not(.active) {
       background: rgba(255, 255, 255, 0.15);
       color: #fff;
   }
   
   .compliance-carousel-wrapper {
       position: relative;
       margin-top: 0.5rem;
   }
   .compliance-carousel-wrapper .owl-carousel .owl-stage-outer {
       padding: 8px 0;
   }
   .compliance-carousel-wrapper .owl-carousel .owl-item {
       display: flex;
       align-items: stretch;
       padding: 0 6px;
   }
   .compliance-carousel-wrapper .owl-carousel .item {
       width: 100%;
       display: flex;
       height: auto;
   }
   
   .compliance-card {
       background: rgba(255, 255, 255, 0.08);
       backdrop-filter: blur(4px);
       border: 1px solid rgba(255, 255, 255, 0.10);
       border-radius: 20px;
       padding: 28px 22px 30px;
       display: flex;
       flex-direction: column;
       align-items: center;
       text-align: center;
       width: 100%;
       transition: all 0.3s ease;
       min-height: 200px;
       justify-content: center;
       height: 100%;
   }
   .compliance-card:hover {
       background: rgba(255, 255, 255, 0.14);
       border-color: rgba(255, 255, 255, 0.25);
       transform: translateY(-3px);
   }
   .compliance-card h3 {
       font-size: 1.3rem;
       font-weight: 700 !important;
       color: #fff;
       letter-spacing: -0.3px;
       margin-bottom: 8px;
       margin-top: 6px;
   }
   .compliance-card p {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.9rem;
       line-height: 1.5;
       margin-top: 2px;
       max-width: 90%;
   }
   
   /* DOTS REMOVED — hide the dots container */
   .compliance-carousel-wrapper .owl-dots {
       display: none !important;
   }
   
   /* Cards (contact) */
   .cards {
       display: grid;
       grid-template-columns: repeat(2, minmax(0, 1fr));
       gap: clamp(1rem, 2vw, 1.25rem);
   }
   .cta_card {
       background: rgb(246 251 255);
       border-color: #fff;
       border-radius: 18px;
       padding: clamp(1rem, 2.4vw, 1.5rem);
       transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
       border: 1px solid rgba(14, 130, 253, 0.35);
   }
   .cta_card:hover {
       transform: translateY(-2px);
       border-color: rgba(14, 130, 253, 0.35);
       box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
   }
   .cta_badge {
       display: inline-block;
       font-size: 15px;
       letter-spacing: 0.3px;
       background: rgba(14, 130, 253, 0.15);
       color: #000;
       border: 1px solid rgba(14, 130, 253, 0.35);
       border-radius: 999px;
       padding: 0.35rem 0.7rem;
       margin-bottom: 0.6rem;
   }
   .badge--alt {
       background: rgba(11, 191, 166, 0.15);
       color: #000;
       border-color: rgba(11, 191, 166, 0.35);
   }
   .card__title {
       margin: 0.1rem 0 0.25rem;
       font-size: 1rem;
       font-weight: 600;
   }
   .card__subtitle {
       margin: 0 0 0.9rem;
       color: #000;
       font-size: 14px;
   }
   .card__body {
       display: flex;
       flex-direction: column;
       gap: 0.55rem;
       font-style: normal;
   }
   .card__body_head {
       display: flex;
       align-items: center;
       justify-content: space-between;
       flex-wrap: wrap;
       gap: 0.5rem;
   }
   .contact-line {
       display: flex;
       align-items: center;
       gap: 0.55rem;
       padding: 0.4rem 1rem;
       border: 1px solid rgba(8, 8, 8, 0.41);
       border-radius: 20px;
       text-decoration: none;
       color: #000;
       transition: background 0.2s ease, border-color 0.2s ease;
       word-break: break-word;
       font-size: 0.85rem;
   }
   .contact-line:hover {
       background: rgba(255, 255, 255, 0.06);
       border-color: rgba(14, 130, 253, 0.35);
   }
   .contact-line .icon {
       display: grid;
       place-items: center;
       width: 28px;
       height: 28px;
       border-radius: 8px;
       background: rgba(14, 130, 253, 0.18);
       color: #000;
       flex: 0 0 28px;
   }
   .contact-line .icon img {
       max-width: 24px;
       max-height: 24px;
       border-radius: 4px;
   }
   
   /* ─── WHATSAPP BUTTON ─── */
   .btn-whatsapp-pulse {
       z-index: 1000;
       background: #25d366;
       color: white;
       position: fixed;
       bottom: 15px;
       left: 20px;
       font-size: 40px;
       display: flex;
       justify-content: center;
       align-items: center;
       width: 0;
       height: 0;
       padding: 30px;
       text-decoration: none;
       border-radius: 50%;
       animation-name: pulse-wa;
       animation-duration: 1.5s;
       animation-timing-function: ease-out;
       animation-iteration-count: infinite;
   }
   .btn-whatsapp-pulse i {
       color: #fff;
       font-size: 30px;
   }
   @keyframes pulse-wa {
       0% {
           box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
       }
       80% {
           box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
       }
   }
   
   /* ============================================================
      EXPERTISE SECTION — CONTENT LEFT, IMAGE RIGHT
      ============================================================ */
   .expertise-inner {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 3.5rem;
       align-items: center;
   }
   .expertise-content {
       order: 1;
   }
   .expertise-visual {
       order: 2;
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
   }
   .expertise-visual img {
       width: 100%;
       height: auto;
       display: block;
       border-radius: 20px;
       transition: transform 0.4s ease;
   }
   .expertise-visual img:hover {
       transform: scale(1.02);
   }
   .expertise-content h2 {
       margin-bottom: 1rem;
   }
   .expertise-content p {
       line-height: 1.8;
       margin-bottom: 1rem;
       color: black;
   }
   .expertise-tags {
       display: flex;
       flex-wrap: wrap;
       gap: 0.6rem;
       margin: 1.2rem 0 1.5rem;
   }
   .exp-tag {
       display: inline-flex;
       align-items: center;
       gap: 0.4rem;
       padding: 0.4rem 1rem;
       background: rgba(45, 139, 201, 0.08);
       border: 1px solid rgba(45, 139, 201, 0.15);
       border-radius: 100px;
       font-size: 0.82rem;
       font-weight: 500;
       color: var(--text-dark);
   }
   
   /* ─── RESPONSIVE ─── */
   @media (max-width: 1024px) {
       .hero-grid {
           grid-template-columns: 1fr;
           gap: 2.5rem;
       }
       .hero-visual {
           order: -1;
       }
       .problem-grid {
           grid-template-columns: repeat(2, 1fr);
       }
       .process-steps {
           grid-template-columns: repeat(3, 1fr);
           gap: 1.5rem;
       }
       .process-steps::before {
           display: none;
       }
       .why-grid {
           grid-template-columns: 1fr;
       }
       .ai-answer-inner {
           grid-template-columns: 1fr;
       }
       .ai-visual {
           border-right: none;
           border-bottom: 1px solid var(--border-light);
           padding: 1.5rem;
       }
       .ai-visual img {
           max-height: 250px;
       }
       .tab-content.active {
           grid-template-columns: 1fr;
       }
       .services-carousel-track .service-card {
           flex: 0 0 calc(50% - 0.7rem);
       }
       .security-carousel-track .sec-card {
           flex: 0 0 calc(50% - 0.7rem);
       }
       .usecase-grid {
           grid-template-columns: repeat(2, 1fr);
       }
       .faq-two-col {
           grid-template-columns: 1fr;
           gap: 1rem;
       }
       .cost-inner {
           grid-template-columns: 1fr;
           gap: 2.5rem;
       }
       .cost-cta-box {
           padding: 2.2rem 1.8rem;
       }
       .cost-factors-wrap {
           padding: 2.2rem 1.8rem;
       }
       .cost-factors-grid {
           max-width: 100%;
       }
       .outcomes-grid {
           grid-template-columns: repeat(2, 1fr);
       }
       .tech-card-body {
           flex-direction: column;
       }
       .tech-card-left {
           flex: 1 1 auto;
           min-height: 140px;
           border-radius: 0 0 0 0;
       }
       .tech-card-left::before {
           border-radius: 0;
       }
       .tech-card-right {
           border-left: none;
           border-top: 1px solid rgba(255, 255, 255, 0.1);
           flex: 1 1 auto;
       }
       .tech-card {
           min-height: auto;
       }
       .compliance-tabs .tab-btn {
           padding: 8px 16px;
           font-size: 12px;
       }
       .expertise-inner {
           grid-template-columns: 1fr;
           gap: 2rem;
       }
       .expertise-content {
           order: 1;
       }
       .expertise-visual {
           order: 2;
       }
   }
   
   @media (max-width: 850px) {
       .tech-carousel-wrapper .owl-carousel {
           display: none !important;
       }
       .tech-nav {
           display: none !important;
       }
       .tech-mobile-accordion {
           display: flex !important;
       }
       .compliance-tabs {
           flex-wrap: wrap;
           gap: 6px;
           justify-content: center;
       }
       .compliance-tabs .tab-btn {
           padding: 7px 14px;
           font-size: 11px;
       }
       .compliance-card {
           padding: 20px 16px 22px;
           min-height: 180px;
       }
       .compliance-card h3 {
           font-size: 1rem;
       }
       .compliance-card p {
           font-size: 0.78rem;
       }
   }
   
   @media (max-width: 768px) {
       section {
           padding: 60px 4%;
       }
       h2 {
           font-size: clamp(1.8rem, 2.6rem, 3rem);
       }
       .stat-row {
           grid-template-columns: repeat(2, 1fr);
       }
       .problem-grid {
           grid-template-columns: 1fr;
       }
       .outcomes-grid {
           grid-template-columns: 1fr;
       }
       .process-steps {
           grid-template-columns: 1fr 1fr;
       }
       .features-3col {
           grid-template-columns: 1fr;
       }
       .tech-row {
           grid-template-columns: 1fr;
       }
       .tech-cat {
           text-align: left;
       }
       .trust-bar-inner {
           gap: 1.2rem;
           justify-content: center;
       }
       .services-carousel-track .service-card {
           flex: 0 0 calc(100% - 0rem);
       }
       .security-carousel-track .sec-card {
           flex: 0 0 calc(100% - 0rem);
       }
       .usecase-grid {
           grid-template-columns: 1fr;
       }
       .tab-visual {
           height: 160px;
       }
       .cost-factors-grid {
           grid-template-columns: 1fr 1fr;
           gap: 0.6rem 0.8rem;
       }
       .cost-factors-grid li {
           font-size: 0.78rem;
           padding: 0.6rem 0.8rem;
       }
       .cost-factors-wrap {
           padding: 1.8rem 1.2rem;
       }
       .cost-cta-box {
           padding: 1.8rem 1.2rem;
       }
       .cost-cta-box h3 {
           font-size: 1.2rem;
       }
       .cost-cta-box .btn-primary {
           width: 100%;
           justify-content: center;
           padding: 0.8rem 1.2rem;
           font-size: 0.88rem;
       }
       .cta-icon {
           font-size: 2.6rem;
       }
       .feature-list li {
           font-size: 0.75rem;
           padding: 0.25rem 0.7rem;
       }
       .feature-list {
           gap: 0.4rem 0.5rem;
       }
       .tech-card-header h3 {
           font-size: 1.3rem;
       }
       .tech-card-left p {
           font-size: 0.9rem;
       }
       .tech-card-right {
           padding: 18px 18px;
       }
       .tech-card-right h4 {
           font-size: 0.7rem;
       }
       .tech-solution-list li {
           font-size: 0.8rem;
           padding: 4px 0;
       }
       .tech-prev-btn,
       .tech-next-btn {
           width: 40px;
           height: 40px;
           font-size: 1.1rem;
       }
       .compliance-card {
           padding: 18px 14px 20px;
           min-height: 160px;
       }
       .compliance-card h3 {
           font-size: 0.95rem;
       }
       .compliance-card p {
           font-size: 0.72rem;
       }
       .compliance-tabs .tab-btn {
           padding: 6px 12px;
           font-size: 10px;
       }
       .compliance-tabs {
           gap: 4px;
           margin-bottom: 18px;
       }
       .expertise-inner {
           grid-template-columns: 1fr;
           gap: 1.8rem;
       }
       .expertise-content {
           order: 1;
       }
       .expertise-visual {
           order: 2;
       }
   }
   
   @media (max-width: 480px) {
       .hero-btns {
           flex-direction: column;
           width: 100%;
       }
       .hero-btns .btn-primary,
       .hero-btns .btn-outline {
           width: 100%;
           justify-content: center;
       }
       .mini-row {
           grid-template-columns: 1fr;
       }
       .floating-card {
           display: none;
       }
       .tab-btn {
           font-size: .75rem;
           padding: .4rem .8rem;
       }
       .tabs {
           gap: .3rem;
       }
       .cost-factors-grid {
           grid-template-columns: 1fr;
           gap: 0.5rem;
       }
       .cost-factors-grid li {
           font-size: 0.78rem;
           padding: 0.6rem 0.8rem;
       }
       .cost-factors-wrap {
           padding: 1.2rem 0.8rem;
       }
       .cost-cta-box {
           padding: 1.4rem 1rem;
       }
       .cost-cta-box h3 {
           font-size: 1rem;
       }
       .cost-cta-box p {
           font-size: 0.82rem;
       }
       .cta-icon {
           font-size: 2.2rem;
       }
       .cta-note {
           font-size: 0.7rem;
       }
       .cost-inner {
           gap: 1.8rem;
       }
       .uc-card {
           padding: 0.8rem 1rem;
       }
       .uc-card span {
           font-size: 0.78rem;
       }
       .feature-list li {
           font-size: 0.7rem;
           padding: 0.2rem 0.6rem;
       }
       .feature-list {
           gap: 0.3rem 0.4rem;
       }
       .outcomes-grid {
           grid-template-columns: 1fr;
       }
       .tech-card-header {
           padding: 14px 18px;
       }
       .tech-card-header h3 {
           font-size: 1.1rem;
       }
       .tech-header-icon {
           width: 36px;
           height: 36px;
           font-size: 1rem;
       }
       .tech-card-left {
           min-height: 110px;
           padding: 18px 16px;
       }
       .tech-card-left p {
           font-size: 0.8rem;
       }
       .tech-card-right {
           padding: 14px 16px;
       }
       .tech-solution-list li {
           font-size: 0.75rem;
           gap: 8px;
       }
       .tech-list-num {
           font-size: 0.6rem;
           padding: 1px 8px;
       }
       .tech-accordion-header {
           font-size: 0.9rem;
           padding: 14px 16px;
       }
       .tech-accordion-body {
           padding: 0 16px 18px;
       }
       .tech-mobile-img {
           height: 90px;
       }
       .tech-prev-btn,
       .tech-next-btn {
           width: 36px;
           height: 36px;
           font-size: 1rem;
       }
       .tech-nav {
           gap: 1rem;
           margin-top: 1.5rem;
       }
       .compliance-card {
           padding: 14px 10px 16px;
           min-height: 140px;
           border-radius: 16px;
       }
       .compliance-card h3 {
           font-size: 0.82rem;
       }
       .compliance-card p {
           font-size: 0.65rem;
       }
       .compliance-tabs .tab-btn {
           padding: 4px 8px;
           font-size: 8px;
           letter-spacing: 0;
       }
       .compliance-tabs {
           gap: 3px;
       }
       .cards {
           display: block;
       }
       .cta_card {
           margin-top: 1.5rem;
       }
       .cta_badge {
           text-align: center;
       }
       .card__body_head {
           display: grid;
       }
       .card__body_head a {
           margin-bottom: 10px;
       }
       .expertise-inner {
           grid-template-columns: 1fr;
           gap: 1.2rem;
       }
       .expertise-content {
           order: 1;
       }
       .expertise-visual {
           order: 2;
       }
       .expertise-tags {
           gap: 0.4rem;
       }
       .exp-tag {
           font-size: 0.72rem;
           padding: 0.3rem 0.7rem;
       }
   }
   
   /* ============================================================
      FIX: TEXT COLOR OVERRIDES
      ============================================================ */
   .ai-content h2,
   .ai-content h3,
   .ai-content p,
   .ai-content .section-eyebrow {
       color: var(--text-dark) !important;
   }
   .ai-content .btn-outline-dark {
       color: var(--text-dark) !important;
   }
   .cost-factors-grid li {
       color: black !important;
   }
   .cost-factors-grid li .factor-arrow {
       color: var(--blue-accent) !important;
   }
   .why-col[style*="background:rgba(255,255,255,0.06)"] .why-item span {
       color: rgba(255, 255, 255, 0.7) !important;
   }
   .why-col[style*="background:rgba(255,255,255,0.04)"] .why-item span {
       color: rgba(255, 255, 255, 0.6) !important;
   }
   .why-col[style*="background:rgba(255,255,255,0.06)"] .check-good {
       color: var(--blue-accent2) !important;
   }
   .why-col[style*="background:rgba(255,255,255,0.04)"] .check-bad {
       color: #E74C3C !important;
   }
   .section-blue .service-card h3 {
       color: var(--text-dark) !important;
   }
   .section-blue .service-card p {
       color: black !important;
   }
   .section-blue .sec-card h3 {
       color: var(--white) !important;
   }
   .section-blue .sec-card p {
       color: rgba(255, 255, 255, 0.6) !important;
   }
   .faq-item .faq-q {
       color: var(--text-dark) !important;
   }
   .faq-item .faq-a {
       color: black !important;
   }
   .outcome-card h3 {
       color: var(--text-dark) !important;
   }
   .outcome-card p {
       color: black !important;
   }
   .problem-card h3 {
       color: var(--text-dark) !important;
   }
   .problem-card p {
       color: black !important;
   }
   .feat-col-head h3 {
       color: var(--text-dark) !important;
   }
   .feat-item {
       color: black !important;
   }
   .uc-card span {
       color: var(--text-dark) !important;
   }
   .step h3 {
       color: var(--text-dark) !important;
   }
   .step p {
       color: black !important;
   }
   .cost-factors-heading {
       color: var(--text-dark) !important;
   }
   .tech-accordion-body p {
       color: rgba(255, 255, 255, 0.75) !important;
   }
   .tech-accordion-body .tech-solution-list li {
       color: rgba(255, 255, 255, 0.85) !important;
   }
   .compliance-card h3 {
       color: #fff !important;
   }
   .compliance-card p {
       color: rgba(255, 255, 255, 0.6) !important;
   }
   .compliance-tabs .tab-btn {
       color: rgba(255, 255, 255, 0.6) !important;
   }
   .compliance-tabs .tab-btn.active {
       color: #fff !important;
   }
   .compliance-tabs .tab-btn:hover:not(.active) {
       color: #fff !important;
   }