/* ==========================================================================
   Styles for index3.html - Avidclan Technologies
   Combined styles2 base + Modern Component Styles
   ========================================================================== */

/* modern stylesheet v2 - premium light theme (pure blue) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-hover: rgba(14, 83, 190, 0.35);
    
    --primary: #0e53be;
    --accent: #1d4ed8;
    --cyan: #0ea5e9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-soft: #f1f5f9;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 83, 190, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.glow-1 { top: -10%; left: -10%; }
.glow-2 { top: 30%; right: -10%; background: radial-gradient(circle, rgba(14, 83, 190, 0.05) 0%, rgba(248, 250, 252, 0) 70%); }
.glow-3 { bottom: 10%; left: 10%; }

/* Navigation */
.nav-v2 {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}
.nav-v2 .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--primary) !important;
}
.nav-v2 .navbar-brand span {
    color: var(--cyan);
}
.nav-v2 .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}
.nav-v2 .nav-link:hover, .nav-v2 .nav-link.active {
    color: var(--primary) !important;
}

/* Buttons */
.btn-modern {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 83, 190, 0.3);
    color: #fff;
}
.btn-modern-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-modern-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Typography & Eyebrows */
.eyebrow-modern {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 83, 190, 0.06);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(14, 83, 190, 0.12);
    margin-bottom: 1.5rem;
}
.title-gradient {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -1px;
}
.highlight-text {
    color: var(--primary);
}

/* Hero Section */
.hero-v2 {
    padding: 10rem 0 7rem;
    position: relative;
    z-index: 1;
}
.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}
.hero-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.hero-card-item:hover {
    border-color: var(--border-color-hover);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 83, 190, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.hero-card-item:nth-child(2) .hero-card-icon {
    background: rgba(14, 83, 190, 0.1);
    color: var(--primary);
}

/* Stats Section */
.v2-stats-section,
.stats-v2 {
    padding: 85px 0 95px;
    background: #f7f9fc;
    position: relative;
}
.stat-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.stat-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 35px rgba(14, 83, 190, 0.08);
}
.stat-num-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stat-lbl-v2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* General Section Styling */
.section-v2 {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

/* About Section Awards */
.grid-awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.award-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.award-box:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 83, 190, 0.08);
}
.award-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Recognitions Cards */
.recog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.recog-card:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 83, 190, 0.08);
}
.recog-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(14, 83, 190, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

/* Process Section */
.process-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.process-card-v2:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 83, 190, 0.08);
}
.process-num-v2 {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    position: absolute;
    top: 15px;
    right: 25px;
    user-select: none;
}
.process-icon-v2 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(14, 83, 190, 0.1);
    border: 1px solid rgba(14, 83, 190, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Services & Industries Cards */
.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.card-glass:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(14, 83, 190, 0.08);
}
.card-glass-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(14, 83, 190, 0.08);
    border: 1px solid rgba(14, 83, 190, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
.card-glass-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    transition: gap 0.2s ease;
}
.card-glass-link:hover {
    gap: 10px;
}

/* Inline CTA Section */
.cta-banner-v2 {
    background: linear-gradient(135deg, #edf4fe 0%, #f7faff 45%, #e1eefe 100%);
    border: 1.5px solid rgba(14, 83, 190, 0.22);
    border-radius: 24px;
    padding: 38px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px -10px rgba(14, 83, 190, 0.12), 0 3px 10px rgba(14, 83, 190, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cta-banner-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -10px rgba(14, 83, 190, 0.18), 0 4px 14px rgba(14, 83, 190, 0.06);
    border-color: rgba(14, 83, 190, 0.35);
}
.cta-banner-v2::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(14, 83, 190, 0.12) 0%, transparent 70%);
    top: -60px;
    right: -40px;
    pointer-events: none;
}
.cta-banner-v2::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(14, 83, 190, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -30px;
    pointer-events: none;
}
.cta-banner-v2 h3 {
    color: #0b1f44;
    font-size: 26px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.cta-banner-v2 p {
    color: #475569 !important;
    font-size: 15px;
    line-height: 1.65;
    max-width: 680px;
}

/* Tech Tabs */
.tabs-v2-container {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 99px;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 3rem;
}
.tab-v2 {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 99px;
    transition: all 0.2s ease;
}
.tab-v2-active {
    background: var(--primary);
    color: #fff;
}
.tech-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.tech-item-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.tech-item-v2:hover {
    border-color: var(--border-color-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.tech-item-v2 i {
    font-size: 1.5rem;
}

/* Testimonials */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.testi-thumb {
    height: 200px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.15);
}
.testi-initials {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.testi-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}
.testi-play:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-v2 {
    background: #0b1329;
    color: #f1f5f9;
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 3rem;
}
.footer-v2 a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-v2 a:hover {
    color: #fff;
}
.social-links-v2 a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.2s ease;
}
.social-links-v2 a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.v2-bg-soft {
    background: #f1f5f9;
}


/* ==========================================================================
   Component & Section Custom Styles
   ========================================================================== */


  /* Premium Clickable Vertical Menu Tabs Styles */
  .service-tab-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    outline: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  }
  .service-tab-item:hover {
    background: linear-gradient(135deg, rgba(14, 83, 190, 0.01) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(14, 83, 190, 0.12);
    box-shadow: 0 8px 20px rgba(14, 83, 190, 0.04);
  }
  .service-tab-item.active {
    background: linear-gradient(135deg, rgba(14, 83, 190, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(14, 83, 190, 0.18);
    box-shadow: 0 12px 30px rgba(14, 83, 190, 0.07);
    transform: translateX(4px);
  }
  
  .tab-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .service-tab-item:hover .tab-icon-box {
    color: var(--primary);
    background: rgba(14, 83, 190, 0.06);
    border-color: rgba(14, 83, 190, 0.1);
  }
  .service-tab-item.active .tab-icon-box {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 83, 190, 0.25);
  }
  
  .tab-indicator {
    width: 4px;
    height: 0%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
  }
  .service-tab-item.active .tab-indicator {
    height: 50%;
  }
  
  .tab-title {
    font-weight: 700;
    font-size: 14.5px;
    color: #334155;
    margin-bottom: 2px;
    transition: color 0.2s ease;
  }
  .service-tab-item.active .tab-title {
    color: var(--primary);
  }
  .tab-subtitle {
    font-size: 11.5px;
    color: #64748b;
  }

  .tab-arrow-chevron {
    color: #cbd5e1;
    font-size: 13px;
    transition: all 0.3s ease;
    opacity: 0.5;
    transform: translateX(-4px);
  }
  .service-tab-item:hover .tab-arrow-chevron {
    color: var(--primary);
    opacity: 1;
    transform: translateX(0);
  }
  .service-tab-item.active .tab-arrow-chevron {
    color: var(--primary);
    opacity: 1;
    transform: translateX(2px);
  }

  .floating-illustration {
    animation: floatAnimation 5s ease-in-out infinite;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    
    transition: transform 0.5s ease;
  }
  @keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }

  /* ==========================================================================
     INTERACTIVE SERVICES CAROUSEL
     ========================================================================== */
  .services-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
  }

  .services-carousel-header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .services-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
  }

  .services-nav-btn:hover {
    background: #0e53be;
    border-color: #0e53be;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 83, 190, 0.25);
  }

  .services-nav-btn:active {
    transform: scale(0.95);
  }

  .services-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 15px 4px 25px 4px;
    position: relative;
  }

  .services-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    user-select: none;
  }

  .service-carousel-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 24px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .service-carousel-card:hover,
  .service-carousel-card.card-active {
    border-color: #0e53be;
    box-shadow: 0 20px 40px rgba(14, 83, 190, 0.12);
    transform: translateY(-6px);
  }

  /* Card Top Header: Badge & Icon */
  .service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .service-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(14, 83, 190, 0.07);
    color: #0e53be;
    border: 1px solid rgba(14, 83, 190, 0.12);
  }

  .service-card-icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0e53be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .service-carousel-card:hover .service-card-icon-pill {
    background: #0e53be;
    color: #ffffff;
    border-color: #0e53be;
    transform: rotate(6deg) scale(1.08);
  }

  /* Image Showcase Area */
  .service-card-img-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(14, 83, 190, 0.04) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all 0.3s ease;
  }

  .service-carousel-card:hover .service-card-img-wrap {
    background: radial-gradient(circle at center, rgba(14, 83, 190, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-color: rgba(14, 83, 190, 0.25);
    box-shadow: 0 10px 25px -8px rgba(14, 83, 190, 0.12);
  }

  .service-card-img {
    height: 140px;
    width: 140px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.05));
  }

  .service-carousel-card:hover .service-card-img {
    transform: scale(1.08) translateY(-2px);
  }

  /* Content */
  .service-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
  }

  .service-carousel-card:hover .service-card-title {
    color: #0e53be;
  }

  .service-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  /* Feature Bullet List */
  .service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
  }

  .service-feature-item i {
    color: #0e53be;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* Tech Stack Pills */
  .service-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 18px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
  }

  .service-tech-pill {
    font-size: 11px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .service-carousel-card:hover .service-tech-pill {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
  }

  /* Card Bottom Action */
  .service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #0e53be;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .service-card-btn:hover {
    background: #0e53be;
    border-color: #0e53be;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 83, 190, 0.2);
  }

  .service-card-btn i {
    transition: transform 0.25s ease;
  }

  .service-card-btn:hover i {
    transform: translateX(4px);
  }

  /* Carousel Dots */
  .services-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .services-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .services-dot.active {
    width: 26px;
    background: #0e53be;
  }

  .services-pill-badge,
  .industry-pill-badge {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
  }

  .industry-card-modern {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 32px 34px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  }

  .industry-card-modern:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(14, 83, 190, 0.3);
    box-shadow: 0 20px 40px -12px rgba(14, 83, 190, 0.12);
  }

  .industry-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8f1fd;
    color: #0e53be;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 24px;
    transition: all 0.35s ease;
  }

  .industry-card-modern:hover .industry-icon-box {
    background: #0e53be;
    color: #ffffff;
    transform: scale(1.08);
  }

  .industry-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .industry-card-modern:hover .industry-card-title {
    color: #0e53be;
  }

  .industry-card-desc {
    color: #64748b;
    line-height: 1.65;
    font-size: 14px;
    margin-bottom: 0;
  }

  .about-hero-img {
    
  }
  .about-hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(14,83,190,0.08) !important;
  }

  /* Lovable V2 Exact Hero Section & Ambient Background */
  .v2-hero {
    background: #fbfcff !important;
    padding: 100px 0 95px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .v2-hero-bg {
    pointer-events: none;
    background: radial-gradient(circle at 15% 20%, rgba(14, 83, 190, 0.10), rgba(0, 0, 0, 0) 40%),
                radial-gradient(circle at 90% 10%, rgba(8, 173, 138, 0.10), rgba(0, 0, 0, 0) 40%) !important;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .v2-hero .container {
    position: relative;
    z-index: 1;
  }

  /* Badge Pill */
  .v2-eyebrow,
  .hero-pill-badge {
    background: #e6efff;
    color: #0e53be;
    letter-spacing: .08em;
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 83, 190, 0.12);
  }
  .v2-dot,
  .hero-pill-dot {
    background: #08ad8a;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(8, 173, 138, 0.25);
    display: inline-block;
  }

  /* Typography - Matched with Original Page Font Weight, Size, and Colors */
  .v2-hero-title,
  .hero-headline {
    color: #142149;
    font-weight: 800;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
  }
  @media (min-width: 1200px) {
    .v2-hero-title,
    .hero-headline {
      font-size: 3.5rem; /* ~56px matching original display-3 */
    }
  }
  .v2-highlight,
  .hero-blue-text,
  .primary-color {
    color: #0e53be !important;
  }
  .v2-hero-sub,
  .hero-desc {
    font-size: 1.25rem !important; /* 20px matching original p.text.fs-5 */
    font-weight: 400 !important;
    color: #5e7290 !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin-bottom: 0 !important;
  }

  /* Buttons - Matched with Original Page Button Styling */
  .v2-btn {
    cursor: pointer;
    border: 1.5px solid transparent;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all .25s ease;
    display: inline-flex;
    text-decoration: none !important;
  }
  .v2-btn-primary,
  .hero-btn-primary {
    background: #0e53be !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(14, 83, 190, 0.25) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
  }
  .v2-btn-primary:hover,
  .hero-btn-primary:hover {
    background: #0a4199 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(14, 83, 190, 0.35) !important;
  }
  .v2-btn-ghost,
  .hero-btn-secondary {
    background: #ffffff !important;
    color: #142149 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }
  .v2-btn-ghost:hover,
  .hero-btn-secondary:hover {
    background: #f8fafc !important;
    border-color: #0e53be !important;
    color: #0e53be !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(14, 83, 190, 0.08) !important;
  }

  /* Trust Rating Element */
  .v2-trust {
    align-items: center;
    gap: 16px;
    display: flex;
    margin-top: 36px;
  }
  .v2-trust-avatars {
    display: flex;
    align-items: center;
  }
  .v2-avatar {
    border: 3px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  .v2-avatar:first-child {
    margin-left: 0;
  }

  /* Right Orbit Stage & Visual */
  .v2-hero-visual,
  .hero-orbit-wrapper {
    height: 460px;
    position: relative;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .v2-hero-blob,
  .hero-glow-sphere {
    background: linear-gradient(135deg, #0e53be, #08ad8a) !important;
    filter: blur(8px) !important;
    opacity: .18 !important;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    position: absolute;
    top: 40px;
    right: 20px;
    pointer-events: none;
  }

  .v2-hero-ring,
  .hero-orbit-ring {
    border: 2px dashed #0e53be !important;
    opacity: .2 !important;
    border-radius: 50%;
    width: 380px;
    height: 380px;
    animation: 40s linear infinite v2spin;
    position: absolute;
    top: 40px;
    right: 0;
    pointer-events: none;
  }

  @keyframes v2spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  /* Floating Cards */
  .v2-hero-card,
  .hero-floating-card {
    border: 1px solid #e5eaf2;
    background: #ffffff;
    border-radius: 16px;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    animation: 6s ease-in-out infinite v2float;
    display: flex;
    position: absolute;
    box-shadow: 0 20px 40px -20px rgba(15, 30, 70, 0.2);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
  }

  .v2-hero-card:hover,
  .hero-floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 45px -16px rgba(14, 83, 190, 0.25);
  }

  .v2-hero-card-1,
  .hero-card-top {
    top: 30px;
    left: 0;
    animation-delay: 0s;
  }

  .v2-hero-card-2,
  .hero-card-center {
    animation-delay: 1.5s;
    top: 200px;
    right: 40px;
  }

  .v2-hero-card-3,
  .hero-card-bottom {
    animation-delay: 3s;
    bottom: 20px;
    left: 40px;
  }

  @keyframes v2float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .v2-hero-icon,
  .hero-card-icon-box {
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    font-size: 18px;
    display: flex;
    flex-shrink: 0;
  }

  .v2-icon-primary,
  .hero-card-icon-box {
    background: #e6efff;
    color: #0e53be;
  }

  .v2-icon-accent,
  .hero-card-icon-accent {
    background: #e0f7f1 !important;
    color: #08ad8a !important;
  }

  .hero-card-title,
  .v2-hero-card .fw-bold {
    font-weight: 700;
    font-size: 15.5px;
    color: #0f172a;
    line-height: 1.2;
  }

  .hero-card-sub,
  .v2-hero-card .v2-muted {
    font-size: 13px;
    color: #64748b;
    margin-top: 3px;
    font-weight: 500;
  }

  @media (max-width: 991px) {
    .v2-hero {
      padding: 60px 0 80px !important;
    }
    .v2-hero-visual,
    .hero-orbit-wrapper {
      height: 400px;
      margin-top: 40px;
    }
  }

  @media (max-width: 576px) {
    .v2-hero-visual,
    .hero-orbit-wrapper {
      height: 360px;
      max-width: 330px;
      margin: 30px auto 0;
    }
    .v2-hero-blob,
    .hero-glow-sphere {
      width: 240px;
      height: 240px;
      top: 30px;
      right: 15px;
      filter: blur(12px) !important;
    }
    .v2-hero-ring,
    .hero-orbit-ring {
      width: 280px;
      height: 280px;
      top: 30px;
      right: 5px;
    }
    .v2-hero-card-1,
    .hero-card-top {
      top: 15px;
      left: 0;
      padding: 12px 16px;
    }
    .v2-hero-card-2,
    .hero-card-center {
      top: 160px;
      right: 10px;
      padding: 12px 16px;
    }
    .v2-hero-card-3,
    .hero-card-bottom {
      bottom: 15px;
      left: 10px;
      padding: 12px 16px;
    }
  }


  /* Industry Recognitions & Awards Carousel */
  .awards-pill-badge {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .awards-carousel-container {
    position: relative;
    padding: 0 45px;
    margin: 0 auto;
    max-width: 1320px;
  }
  .awards-slider-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
  }
  .awards-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .award-item {
    flex: 0 0 calc((100% - 100px) / 6);
    max-width: calc((100% - 100px) / 6);
    width: calc((100% - 100px) / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  @media (max-width: 1199px) {
    .award-item {
      flex: 0 0 calc((100% - 40px) / 3);
      max-width: calc((100% - 40px) / 3);
      width: calc((100% - 40px) / 3);
    }
  }
  @media (max-width: 768px) {
    .award-item {
      flex: 0 0 calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
      width: calc((100% - 20px) / 2);
    }
    .awards-carousel-container {
      padding: 0 35px;
    }
  }
  @media (max-width: 575px) {
    .awards-carousel-container {
      padding: 0 38px;
    }
    .awards-track {
      gap: 16px;
    }
    .award-item {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }
  }

  .award-card-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    height: 155px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .award-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14, 83, 190, 0.1);
    border-color: rgba(14, 83, 190, 0.2);
  }
  .award-card-img {
    max-height: 95px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  .award-card-box:hover .award-card-img {
    transform: scale(1.05);
  }
  .award-card-caption {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    line-height: 1.45;
    margin-top: 14px;
    padding: 0 4px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .awards-nav-btn {
    position: absolute;
    top: 77.5px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: #0e53be;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
  }
  .awards-nav-btn:hover {
    color: #083884;
    transform: translateY(-50%) scale(1.15);
  }
  .awards-prev {
    left: 4px;
  }
  .awards-next {
    right: 4px;
  }

  .awards-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }
  .awards-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .awards-dot.active {
    background: #0e53be;
    width: 10px;
    height: 10px;
  }


  /* Interactive Process Pipeline Styling */
  .process-pill-badge {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
  }
  .process-timeline-container {
    max-width: 860px;
    margin: 45px auto 40px;
    position: relative;
    padding: 16px 24px 10px;
    overflow: visible;
  }
  .process-progress-track {
    position: absolute;
    top: 40px;
    left: 48px;
    right: 48px;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
  }
  .process-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #0e53be;
    border-radius: 2px;
    will-change: width;
  }
  .process-nodes-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: visible;
  }
  .process-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 4px 6px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
  }
  .process-node-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
  }
  .process-node-item:hover .process-node-circle {
    border-color: #0e53be;
    color: #0e53be;
    transform: translateY(-2px);
  }
  .process-node-item.completed .process-node-circle {
    background: #f0f7ff;
    border-color: #0e53be;
    color: #0e53be;
    box-shadow: 0 2px 8px rgba(14, 83, 190, 0.1);
  }
  .process-node-item.active .process-node-circle {
    background: #0e53be;
    border-color: #0e53be;
    color: #ffffff;
    box-shadow: 0 0 0 6px rgba(14, 83, 190, 0.18), 0 8px 18px rgba(14, 83, 190, 0.35);
    transform: scale(1.08);
  }
  .process-node-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    transition: color 0.3s ease;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    display: block;
  }
  .process-node-item.completed .process-node-label {
    color: #0e53be;
  }
  .process-node-item.active .process-node-label {
    color: #0e53be;
    font-weight: 800;
  }

  /* Process Cards Grid (All 4 phases displayed) */
  #process-cards-grid {
    position: relative;
    z-index: 2;
  }
  .process-step-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px 26px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    user-select: none;
  }
  .process-step-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  }

  .process-card-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: #f1f5f9;
    letter-spacing: -1.5px;
    pointer-events: none;
    transition: all 0.35s ease;
  }
  .process-card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #0e53be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .process-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .process-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
  }
  .process-card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #94a3b8;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .process-card-status .status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.35s ease;
  }

  /* Active Highlighted State */
  .process-step-card.active-phase {
    border-color: #0e53be;
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(14, 83, 190, 0.13), 0 2px 8px rgba(14, 83, 190, 0.05);
    background: #ffffff;
  }

  .process-step-card.active-phase .process-card-num {
    color: rgba(14, 83, 190, 0.12);
    transform: scale(1.05);
  }
  .process-step-card.active-phase .process-card-icon-wrap {
    background: linear-gradient(135deg, #0e53be 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: #0e53be;
    box-shadow: 0 8px 18px rgba(14, 83, 190, 0.28);
    transform: scale(1.05);
  }
  .process-step-card.active-phase .process-card-title {
    color: #0e53be;
  }
  .process-step-card.active-phase .process-card-desc {
    color: #334155;
  }
  .process-step-card.active-phase .process-card-status {
    color: #0e53be;
    border-top-color: rgba(14, 83, 190, 0.15);
  }
  .process-step-card.active-phase .process-card-status .status-indicator {
    background: #0e53be;
    box-shadow: 0 0 0 4px rgba(14, 83, 190, 0.2);
    animation: pulse-indicator 2s infinite ease-in-out;
  }

  @keyframes pulse-indicator {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.3);
      opacity: 0.6;
    }
  }

  /* Legacy fallback support */
  .process-card-display {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 50px 65px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .process-watermark-num {
    font-size: 80px;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 0.9;
    letter-spacing: -2px;
    user-select: none;
  }
  .process-phase-icon {
    font-size: 32px;
    color: #0e53be;
    margin-top: 15px;
  }
  .process-phase-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
  .process-phase-desc {
    color: #64748b;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 0;
  }
  .process-highlight-pill {
    background: rgba(14, 83, 190, 0.06);
    color: #0e53be;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(14, 83, 190, 0.08);
  }


  /* Stats Section Styling - Matching Lovable v2 & Exact Design */
  .v2-stats-section,
  .stats-v2 {
    background: #f7f9fc !important;
    padding: 85px 0 95px !important;
    border-top: none !important;
    border-bottom: none !important;
    position: relative;
  }
  .stats-pill-badge,
  .v2-eyebrow {
    background: rgba(14, 83, 190, 0.08) !important;
    color: #0e53be !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 11.5px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    border: 1px solid rgba(14, 83, 190, 0.12) !important;
    margin-bottom: 1rem !important;
  }
  .stat-card-modern,
  .v2-stat {
    background: #ffffff !important;
    border: 1px solid #e5eaf2 !important;
    border-radius: 20px !important;
    padding: 36px 20px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .stat-card-modern:hover,
  .v2-stat:hover {
    border-color: #0e53be !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px -20px rgba(14, 83, 190, 0.25) !important;
  }
  .stat-num-display,
  .v2-stat-num {
    color: #0e53be !important;
    font-size: clamp(2.4rem, 3.8vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.5px !important;
  }
  .stat-lbl-display,
  .v2-stat-label {
    color: #64748b !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }


  /* About Us Section Styling */
  .about-pill-badge {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(14, 83, 190, 0.12);
  }
  .about-pill-dot {
    width: 8px;
    height: 8px;
    background: #0e53be;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(14, 83, 190, 0.2);
  }
  .about-main-title {
    font-size: clamp(2.2rem, 3.4vw, 2.7rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }
  .about-blue-text {
    color: #0e53be !important;
  }
  .about-body-text {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
  }
  .about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
  }
  .about-check-item i {
    color: #0e53be !important;
    font-size: 16px;
  }
  .about-btn-action {
    background: #0e53be;
    color: #ffffff !important;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(14, 83, 190, 0.25);
    transition: all 0.3s ease;
    border: none;
  }
  .about-btn-action:hover {
    background: #0b429c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 83, 190, 0.35);
    color: #ffffff !important;
  }

  /* About Us Right Side Visual - All Blue Modern Theme */
  .v2-about-visual {
    background: linear-gradient(135deg, #edf4fe 0%, #f4f8fe 50%, #e2eefe 100%);
    border-radius: 28px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 36px 30px;
    display: grid;
    border: 1px solid rgba(14, 83, 190, 0.12);
    box-shadow: 0 10px 30px -10px rgba(14, 83, 190, 0.08);
  }
  .v2-award {
    border: 1px solid #e5eaf2;
    background: #ffffff;
    border-radius: 18px;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    display: flex;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  }
  .v2-award:hover {
    transform: translateY(-3px);
    border-color: #0e53be;
    box-shadow: 0 12px 25px -10px rgba(14, 83, 190, 0.15);
  }
  .v2-award i {
    color: #0e53be;
    font-size: 26px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
  }
  .v2-award .fw-bold {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
  }
  .v2-award .v2-muted {
    font-size: 13.5px;
    color: #64748b;
    margin-top: 2px;
    line-height: 1.3;
  }


  /* Video Testimonials Section Styling */
  .testi-card-v2 {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }
  .testi-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(14, 83, 190, 0.12);
    border-color: rgba(14, 83, 190, 0.22);
  }
  .testi-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background-color: #000000;
  }
  .testi-video-player,
  .testi-video-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    background-color: #000000;
    display: block;
  }
  .testi-video-player:fullscreen,
  .testi-video-player:-webkit-full-screen,
  .testi-video-player:-moz-full-screen,
  .testi-video-player:-ms-fullscreen,
  video:fullscreen,
  video:-webkit-full-screen,
  video:-moz-full-screen,
  video:-ms-fullscreen {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #000000 !important;
  }

  .testi-content-box {
    padding: 20px 10px 6px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .testi-stars-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
  }
  .testi-stars-row i {
    color: #f59e0b;
    font-size: 14.5px;
  }
  .testi-points-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .testi-point-item {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }
  .testi-point-item i {
    color: #0e53be;
    font-size: 13.5px;
    margin-top: 3px;
    flex-shrink: 0;
  }
  .testi-author-box {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
  }
  .testi-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
  }
  .testi-author-role {
    font-size: 13px;
    color: #0e53be;
    font-weight: 600;
    display: block;
  }


  /* Technologies & Platforms Section Styling */
  .tech-pill-badge {
    background: rgba(14, 83, 190, 0.08);
    color: #0e53be;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
  }
  .tabs-v2-container {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 60px;
    padding: 6px;
    display: inline-flex;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tab-v2 {
    background: transparent;
    border: none;
    color: #475569 !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    outline: none;
  }
  .tab-v2:hover {
    color: #0e53be !important;
    background: rgba(14, 83, 190, 0.05);
  }
  .tab-v2.tab-v2-active,
  .tab-v2.tab-v2-active:hover,
  .tab-v2.tab-v2-active:focus,
  .tab-v2.active,
  .tab-v2.active:hover,
  .tab-v2.active:focus {
    background: #0e53be !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(14, 83, 190, 0.35);
  }
  .tech-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.25s ease;
  }
  @media (max-width: 992px) {
    .tech-grid-v2 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 576px) {
    .tech-grid-v2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .tech-item-v2 {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 22px;
    padding: 38px 20px 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    min-height: 165px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .tech-item-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(14, 83, 190, 0.08);
    border-color: rgba(14, 83, 190, 0.2);
  }
  .tech-item-v2 i {
    font-size: 46px;
    transition: transform 0.3s ease;
  }
  .tech-item-v2:hover i {
    transform: scale(1.1);
  }
  .tech-item-v2 span {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
  }


  /* About Us Visual Stage & Floating Badges */
  .about-visual-stage {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
  }
  .about-visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 83, 190, 0.15) 0%, rgba(14, 83, 190, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
  }
  .about-visual-orbit {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1.5px dashed rgba(14, 83, 190, 0.22);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }
  .about-img-container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  .about-main-3d-img {
    max-width: 92%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.12));
    transition: transform 0.4s ease;
  }
  .about-visual-stage:hover .about-main-3d-img {
    transform: scale(1.03);
  }

  /* Floating Badges */
  .about-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    z-index: 4;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .about-float-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 35px rgba(14, 83, 190, 0.14);
    border-color: rgba(14, 83, 190, 0.25);
  }
  .about-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .about-badge-val {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
  }
  .about-badge-lbl {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.2;
    margin-top: 2px;
  }

  .about-badge-top-left {
    top: 5%;
    left: -20px;
    animation: aboutFloat1 5s ease-in-out infinite;
  }
  .about-badge-top-right {
    top: 12%;
    right: -25px;
    animation: aboutFloat2 6s ease-in-out infinite;
  }
  .about-badge-bottom-right {
    bottom: 5%;
    right: -10px;
    animation: aboutFloat1 5.5s ease-in-out infinite reverse;
  }

  @keyframes aboutFloat1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  @keyframes aboutFloat2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
  }

  @media (max-width: 991px) {
    .about-badge-top-left {
      left: 10px;
      top: 0;
    }
    .about-badge-top-right {
      right: 10px;
      top: 0;
    }
    .about-badge-bottom-right {
      right: 10px;
      bottom: 0;
    }
    .about-visual-orbit {
      width: 320px;
      height: 320px;
    }
  }




/* ==========================================================================
   Consistent Section Titles & Font Weights (Index3)
   ========================================================================== */
.fw-extrabold {
  font-weight: 800 !important;
}
.section-title-modern {
  font-size: clamp(2.2rem, 3.5vw, 2.7rem);
  font-weight: 800 !important;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.highlight-blue {
  color: #0e53be !important;
}


/* Service Panel Solid Action Button */
.service-btn-action {
  background: #0e53be;
  color: #ffffff !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(14, 83, 190, 0.25);
  transition: all 0.3s ease;
  border: none;
}
.service-btn-action:hover {
  background: #0b429c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 83, 190, 0.35);
  color: #ffffff !important;
}




/* ==========================================================================
   Clean & Elegant Bottom CTA Banner (Index3)
   ========================================================================== */
.cta-banner-clean {
  background: #0e53be;
  border-radius: 32px;
  padding: 60px 65px;
  box-shadow: 0 20px 50px rgba(14, 83, 190, 0.25);
  position: relative;
  overflow: hidden;
}
.cta-ambient-circle-tr {
  position: absolute;
  top: -75px;
  right: -50px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-ambient-circle-bl {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-pill-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 20px;
}
.cta-title-large {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cta-title-large {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .cta-banner-clean {
    padding: 40px 24px;
  }
  .cta-title-large {
    font-size: 24px;
  }
}
.cta-desc-clean {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.68;
  max-width: 760px;
}
.cta-action-btn {
  background: #ffffff !important;
  color: #0e53be !important;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  white-space: nowrap;
}
.cta-action-btn:hover {
  background: #f8fafc !important;
  color: #083c8d !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* ==========================================================================
   Comprehensive Device Responsiveness (Index3)
   Mobile, Tablet, Laptop & Desktop Full-Spectrum Optimizations
   ========================================================================== */

/* Prevent any horizontal overflow on all screen sizes */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Ensure all primary sections prevent background spillover */
section,
.v2-section,
.section-v2,
.about-section-v2,
.stats-v2,
.v2-stats-section,
.v2-hero {
  overflow: hidden !important;
  position: relative !important;
  max-width: 100% !important;
}

/* Base Container Safety */
.container {
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* --------------------------------------------------------------------------
   1. Laptop & Large Tablet Breakpoint (max-width: 1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .v2-hero-title,
  .hero-headline {
    font-size: 2.8rem !important;
  }
  .about-visual-stage {
    max-width: 460px;
    min-height: 420px;
  }
  .about-visual-orbit {
    width: 380px;
    height: 380px;
  }
  .about-visual-glow {
    width: 320px;
    height: 320px;
  }
  .process-card-display {
    padding: 40px 45px;
  }
}

/* --------------------------------------------------------------------------
   2. Tablet Breakpoint (max-width: 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  /* General Section Padding */
  .v2-section,
  .section-v2,
  .about-section-v2,
  .stats-v2,
  .v2-stats-section,
  .v2-hero {
    padding: 70px 0 !important;
  }

  /* Gutter management to avoid negative margin overflow */
  .row.g-5 {
    --bs-gutter-x: 1.5rem !important;
    --bs-gutter-y: 1.5rem !important;
  }
  .row.g-4 {
    --bs-gutter-x: 1.25rem !important;
    --bs-gutter-y: 1.25rem !important;
  }

  /* Navigation Mobile Menu */
  .nav-v2 {
    padding: 1rem 0;
  }
  .nav-v2 .navbar-collapse {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 20px 24px;
    margin-top: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  }
  .nav-v2 .navbar-nav {
    margin-bottom: 16px;
  }
  .nav-v2 .nav-link {
    padding: 8px 0;
    font-size: 15.5px;
  }
  .nav-v2 .btn-modern {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Section Titles */
  .section-title-modern {
    font-size: 2.2rem !important;
  }

  /* Hero Section */
  .v2-hero-title,
  .hero-headline {
    font-size: 2.4rem !important;
    line-height: 1.25 !important;
  }
  .v2-hero-sub,
  .hero-desc {
    max-width: 100% !important;
  }
  .v2-hero-visual,
  .hero-orbit-wrapper {
    margin-top: 20px !important;
    height: 380px !important;
    max-width: 380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
    border-radius: 24px;
  }
  .v2-hero-blob,
  .hero-glow-sphere {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 260px !important;
    height: 260px !important;
    right: auto !important;
  }
  .v2-hero-ring,
  .hero-orbit-ring {
    left: calc(50% - 150px) !important;
    top: calc(50% - 150px) !important;
    width: 300px !important;
    height: 300px !important;
    right: auto !important;
  }

  /* About Us */
  .about-visual-stage {
    margin-top: 30px;
    max-width: 420px;
    min-height: 380px;
  }
  .about-badge-top-left {
    left: 0;
    top: 5px;
  }
  .about-badge-top-right {
    right: 0;
    top: 15px;
  }
  .about-badge-bottom-right {
    right: 0;
    bottom: 5px;
  }

  /* Core Services */
  .service-carousel-card {
    padding: 24px 20px !important;
  }

  /* Process Stepper Card */
  .process-card-display {
    padding: 35px 28px;
  }

  /* Awards Carousel Container */
  .awards-carousel-container {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .awards-slider-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
    min-width: 0 !important;
  }

  /* Bottom CTA */
  .cta-banner-clean {
    padding: 40px 32px;
    text-align: center;
  }
  .cta-desc-clean {
    margin: 12px auto 24px;
  }
  .cta-action-btn {
    width: 100%;
    justify-content: center;
  }

  /* Inline CTA Banner */
  .cta-banner-v2 {
    padding: 35px 28px !important;
    text-align: center;
  }
  .cta-banner-v2 a {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   3. Mobile Landscape & Small Tablet (max-width: 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* Section Padding */
  .v2-section,
  .section-v2,
  .about-section-v2,
  .stats-v2,
  .v2-stats-section {
    padding: 55px 0 !important;
  }
  .hero-v2,
  .v2-hero {
    padding: 105px 0 50px !important;
  }

  /* Gutters */
  .row.g-5 {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1.5rem !important;
  }
  .row.g-4 {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1.25rem !important;
  }

  .section-title-modern {
    font-size: 1.95rem !important;
  }

  .v2-hero-title,
  .hero-headline {
    font-size: 2.1rem !important;
    line-height: 1.22 !important;
  }

  /* Ambient background blobs: prevent pushing layout width */
  section [style*="position: absolute;"] {
    max-width: 70vw !important;
  }

  /* Stats / Numbers Cards */
  .stat-card-modern,
  .v2-stat {
    padding: 24px 14px;
    border-radius: 20px;
  }
  .stat-num-display,
  .v2-stat-num {
    font-size: 2.2rem;
  }
  .stat-lbl-display,
  .v2-stat-label {
    font-size: 13px;
  }

  /* Process Timeline */
  .process-timeline-container {
    padding: 14px 20px 8px !important;
    margin: 30px auto 25px !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .process-progress-track {
    left: 40px !important;
    right: 40px !important;
    top: 38px !important;
    height: 3px !important;
  }
  .process-node-circle {
    width: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
  .process-node-item.active .process-node-circle {
    box-shadow: 0 0 0 5px rgba(14, 83, 190, 0.2), 0 6px 14px rgba(14, 83, 190, 0.28) !important;
    transform: scale(1.07) !important;
  }
  .process-node-label {
    font-size: 12px !important;
    margin-top: 10px !important;
    line-height: 1.2 !important;
  }

  /* Core Services */
  .service-carousel-card {
    padding: 22px 18px !important;
    border-radius: 20px !important;
  }
  .service-card-img-wrap {
    height: 135px !important;
  }
  .service-card-img {
    height: 115px !important;
    width: 115px !important;
  }

  /* Technologies Grid */
  .tech-grid-v2 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }
  .tech-item-v2 {
    padding: 24px 14px 18px;
    min-height: 135px;
    border-radius: 18px;
  }
  .tech-item-v2 i {
    font-size: 36px;
  }
  .tech-item-v2 span {
    font-size: 14px;
  }

  /* Industries Cards */
  .industry-card-modern {
    padding: 30px 22px 26px;
    border-radius: 20px;
  }

  /* Awards Carousel */
  .awards-carousel-container {
    padding: 0 35px;
    max-width: 100%;
    overflow: hidden;
  }
  .awards-slider-wrapper {
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
  }
  .award-card-box {
    height: 135px;
    border-radius: 16px;
  }
  .award-card-img {
    max-height: 75px;
  }
  .awards-nav-btn {
    top: 67.5px;
  }

  /* Testimonials */
  .testi-card-v2 {
    border-radius: 20px;
    padding: 12px;
  }

  /* Bottom CTA Banner */
  .cta-banner-clean {
    padding: 36px 22px;
    border-radius: 24px;
  }
  .cta-ambient-circle-tr {
    right: -25px !important;
    top: -35px !important;
    width: 160px !important;
    height: 160px !important;
  }
  .cta-ambient-circle-bl {
    left: -25px !important;
    bottom: -35px !important;
    width: 140px !important;
    height: 140px !important;
  }
}

/* --------------------------------------------------------------------------
   4. Mobile Portrait Breakpoint (max-width: 575px)
   -------------------------------------------------------------------------- */
@media (max-width: 575px) {
  /* Section Spacing */
  .v2-section,
  .section-v2,
  .about-section-v2,
  .stats-v2,
  .v2-stats-section {
    padding: 45px 0 !important;
  }

  /* Gutters */
  .row.g-5,
  .row.g-4 {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 1rem !important;
  }

  /* Typography */
  .section-title-modern {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }
  .about-main-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  /* Numbers / Stats Cards */
  .stat-card-modern,
  .v2-stat {
    padding: 18px 8px !important;
    border-radius: 16px !important;
    min-height: 100px !important;
  }
  .stat-num-display,
  .v2-stat-num {
    font-size: 1.85rem !important;
    margin-bottom: 4px !important;
  }
  .stat-lbl-display,
  .v2-stat-label {
    font-size: 11.5px !important;
    line-height: 1.3 !important;
  }

  /* Hero Section (Accounts for ~75px fixed navbar so eyebrow badge is never cut off) */
  .hero-v2,
  .v2-hero {
    padding: 100px 0 35px !important;
  }
  .v2-eyebrow,
  .hero-pill-badge {
    font-size: 11px !important;
    padding: 5px 14px !important;
    gap: 6px !important;
    max-width: 100% !important;
    white-space: normal !important;
    margin-bottom: 16px !important;
    display: inline-flex !important;
    line-height: 1.3 !important;
  }
  .v2-hero-title,
  .hero-headline {
    font-size: 1.85rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.4px !important;
    word-break: break-word !important;
  }
  .v2-hero-sub,
  .hero-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  .v2-btn-primary,
  .hero-btn-primary,
  .v2-btn-ghost,
  .hero-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 14.5px !important;
  }

  .v2-hero-visual,
  .hero-orbit-wrapper {
    height: 310px !important;
    max-width: 300px !important;
    margin: 20px auto 0 !important;
    overflow: hidden !important;
    border-radius: 20px;
    position: relative;
  }
  .v2-hero-blob,
  .hero-glow-sphere {
    width: 190px !important;
    height: 190px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
  }
  .v2-hero-ring,
  .hero-orbit-ring {
    width: 240px !important;
    height: 240px !important;
    top: calc(50% - 120px) !important;
    left: calc(50% - 120px) !important;
    right: auto !important;
  }
  .v2-hero-card,
  .hero-floating-card {
    padding: 8px 12px !important;
    gap: 8px !important;
    border-radius: 12px !important;
  }
  .v2-hero-icon,
  .hero-card-icon-box {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }
  .hero-card-title {
    font-size: 12px !important;
  }
  .hero-card-sub {
    font-size: 10px !important;
  }
  .v2-hero-card-1,
  .hero-card-top {
    top: 10px !important;
    left: 4px !important;
  }
  .v2-hero-card-2,
  .hero-card-center {
    top: 120px !important;
    right: 4px !important;
    left: auto !important;
  }
  .v2-hero-card-3,
  .hero-card-bottom {
    bottom: 10px !important;
    left: 10px !important;
  }

  /* About Us Right Side Visual */
  .about-visual-stage {
    max-width: 310px !important;
    min-height: 300px !important;
    margin: 20px auto 0 !important;
    overflow: hidden !important;
  }
  .about-badge-top-left {
    left: 0 !important;
    top: 4px !important;
    padding: 8px 12px !important;
  }
  .about-badge-top-right {
    right: 0 !important;
    top: 14px !important;
    padding: 8px 12px !important;
  }
  .about-badge-bottom-right {
    right: 0 !important;
    bottom: 4px !important;
    padding: 8px 12px !important;
  }
  .about-badge-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }
  .about-badge-val {
    font-size: 13px !important;
  }
  .about-badge-lbl {
    font-size: 10px !important;
  }
  .v2-about-visual {
    grid-template-columns: 1fr !important;
    padding: 18px 14px !important;
    gap: 10px !important;
    border-radius: 18px !important;
    margin-top: 18px;
  }
  .v2-award {
    padding: 14px 12px !important;
    border-radius: 14px !important;
    gap: 10px !important;
  }
  .about-btn-action {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Process Stepper & Card Display */
  .process-timeline-container {
    margin: 20px auto 16px !important;
    padding: 14px 16px 8px !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  .process-progress-track {
    left: 34px !important;
    right: 34px !important;
    top: 34px !important;
    height: 2px !important;
  }
  .process-node-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
  }
  .process-node-item.active .process-node-circle {
    box-shadow: 0 0 0 4px rgba(14, 83, 190, 0.2), 0 4px 12px rgba(14, 83, 190, 0.25) !important;
    transform: scale(1.06) !important;
  }
  .process-node-label {
    font-size: 11px !important;
    margin-top: 11px !important;
    line-height: 1.2 !important;
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .process-card-display {
    padding: 20px 14px !important;
    border-radius: 18px !important;
  }
  .process-step-card {
    padding: 20px 16px 18px !important;
    border-radius: 16px !important;
  }
  .process-card-num {
    font-size: 32px !important;
    top: 12px !important;
    right: 14px !important;
  }
  .process-card-title {
    font-size: 16.5px !important;
  }
  .process-card-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Core Services Cards Grid */
  .service-carousel-card {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }
  .service-card-top {
    margin-bottom: 12px !important;
  }
  .service-category-badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
  }
  .service-card-icon-pill {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }
  .service-card-img-wrap {
    height: 120px !important;
    margin-bottom: 14px !important;
    border-radius: 16px !important;
  }
  .service-card-img {
    height: 100px !important;
    width: 100px !important;
  }
  .service-card-title {
    font-size: 17.5px !important;
    margin-bottom: 6px !important;
  }
  .service-card-desc {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }
  .service-feature-list {
    margin-bottom: 12px !important;
    gap: 6px !important;
  }
  .service-feature-item {
    font-size: 11.5px !important;
  }
  .service-tech-tags {
    margin-bottom: 14px !important;
    padding-top: 8px !important;
    gap: 4px !important;
  }
  .service-tech-pill {
    font-size: 10.5px !important;
    padding: 2px 7px !important;
  }
  .service-card-btn {
    padding: 9px 14px !important;
    font-size: 12.5px !important;
    border-radius: 10px !important;
  }

  /* Industries Cards */
  .industry-card-modern {
    padding: 22px 16px 20px !important;
    border-radius: 16px !important;
  }
  .industry-icon-box {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }
  .industry-card-title {
    font-size: 17px !important;
    margin-bottom: 6px !important;
  }
  .industry-card-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Technologies Grid & Nav Pills (2x2 Grid on Mobile) */
  .tabs-v2-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto 1.5rem !important;
    padding: 5px !important;
    border-radius: 16px !important;
    gap: 5px !important;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  }
  .tab-v2 {
    width: 100% !important;
    padding: 8px 6px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    text-align: center !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .tech-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .tech-item-v2 {
    padding: 16px 8px 14px !important;
    min-height: 110px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }
  .tech-item-v2 i {
    font-size: 26px !important;
  }
  .tech-item-v2 span {
    font-size: 12.5px !important;
  }

  /* Testimonials */
  .testi-card-v2 {
    border-radius: 18px !important;
    padding: 10px !important;
  }
  .testi-video-box {
    border-radius: 14px !important;
  }
  .testi-content-box {
    padding: 14px 6px 4px !important;
  }
  .testi-point-item {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }
  .testi-author-name {
    font-size: 14px !important;
  }
  .testi-author-role {
    font-size: 11.5px !important;
  }

  /* Bottom CTA Banner */
  .cta-banner-clean {
    padding: 28px 16px !important;
    border-radius: 20px !important;
  }
  .cta-title-large {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  .cta-desc-clean {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }
  .cta-action-btn {
    padding: 12px 20px !important;
    font-size: 13.5px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  /* Inline CTA Banner */
  .cta-banner-v2 {
    padding: 26px 18px !important;
    border-radius: 20px !important;
  }
  .cta-banner-v2 h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .cta-banner-v2 p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Footer */
  .footer-v2 {
    padding: 45px 0 20px !important;
  }
}

/* --------------------------------------------------------------------------
   5. Extra Small Devices (max-width: 380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero-v2,
  .v2-hero {
    padding: 95px 0 30px !important;
  }
  .v2-eyebrow,
  .hero-pill-badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
    letter-spacing: 0.5px !important;
  }
  .v2-hero-title,
  .hero-headline {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }
  .section-title-modern {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }
  .stat-num-display,
  .v2-stat-num {
    font-size: 1.7rem !important;
  }
  .v2-hero-visual,
  .hero-orbit-wrapper {
    max-width: 270px !important;
    height: 280px !important;
  }
  .v2-hero-blob,
  .hero-glow-sphere {
    width: 160px !important;
    height: 160px !important;
  }
  .v2-hero-ring,
  .hero-orbit-ring {
    width: 210px !important;
    height: 210px !important;
    top: calc(50% - 105px) !important;
    left: calc(50% - 105px) !important;
  }
  .v2-hero-card,
  .hero-floating-card {
    padding: 6px 10px !important;
    gap: 6px !important;
  }
  .hero-card-title {
    font-size: 11px !important;
  }
  .hero-card-sub {
    font-size: 9.5px !important;
  }
  .tabs-v2-container {
    max-width: 270px !important;
  }
  .tab-v2 {
    font-size: 11.5px !important;
    padding: 7px 4px !important;
  }
  .cta-title-large {
    font-size: 18.5px !important;
  }
  .process-timeline-container {
    padding: 10px 10px 6px !important;
    margin: 16px auto 14px !important;
    overflow: visible !important;
  }
  .process-progress-track {
    left: 28px !important;
    right: 28px !important;
    top: 28px !important;
    height: 2px !important;
  }
  .process-node-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 11.5px !important;
  }
  .process-node-item.active .process-node-circle {
    box-shadow: 0 0 0 3.5px rgba(14, 83, 190, 0.2), 0 3px 10px rgba(14, 83, 190, 0.25) !important;
    transform: scale(1.05) !important;
  }
  .process-node-label {
    font-size: 10px !important;
    margin-top: 10px !important;
    letter-spacing: -0.2px !important;
  }
}
