  
    :root {
      --primary-color: #059669;
      --primary-hover: #047857;
      --primary-light: rgba(5, 150, 105, 0.08);
      --bg-light: #F8FAFC;
      --text-dark: #111827;
      --text-muted: #6B7280;
      --border-color: rgba(0, 0, 0, 0.06);
      --glass-bg: rgba(255, 255, 255, 0.75);
      --glass-border: rgba(255, 255, 255, 0.4);
      --font-heading: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: #FFFFFF;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.02em;
    }

    /* Helper Utilities */
    .text-emerald { color: var(--primary-color); }
    .bg-emerald-light { background-color: var(--primary-light); }
    .rounded-24 { border-radius: 24px; }
    .rounded-20 { border-radius: 20px; }
    .transition-base { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

    /* Glassmorphism */
    .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
    }

    /* Grid & Glow Effects */
    .bg-grid-pattern {
      background-size: 40px 40px;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    }

    .glow-sphere {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(5, 150, 105, 0) 70%);
      filter: blur(60px);
      z-index: -1;
      pointer-events: none;
    }

    /* Header & Navigation */
    .navbar {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      transition: background 0.3s ease;
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.03em;
    }

    .nav-link {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-dark);
      padding: 0.5rem 1rem !important;
      transition: color 0.2s ease;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary-color) !important;
    }

    /* Buttons */
    .btn {
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      border-color: var(--primary-hover);
      transform: translateY(-1px);
    }


    .btn-secondary {
      background-color: var(--bg-light);
      border-color: var(--border-color);
      color: var(--text-dark);
    }

    .btn-secondary:hover {
      background-color: #F1F5F9;
      border-color: rgba(0,0,0,0.1);
      color: var(--text-dark);
      transform: translateY(-1px);
    }

    /* Hero Floating Mockups */
    .hero-mockup-wrapper {
      position: relative;
      height: 520px;
      width: 100%;
    }

    .mockup-phone {
      position: absolute;
      width: 240px;
      border-radius: 36px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      border: 6px solid #111827;
      background-color: #111827;
      overflow: hidden;
    }

    .mockup-phone img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 30px;
    }

    .mockup-phone-1 {
      left: 0;
      top: 60px;
      z-index: 2;
      animation: float-slow 7s ease-in-out infinite alternate;
    }

    .mockup-phone-2 {
      left: 170px;
      top: 0;
      z-index: 3;
      animation: float-mid 6s ease-in-out infinite alternate;
    }

    .mockup-phone-3 {
      left: 340px;
      top: 90px;
      z-index: 1;
      animation: float-fast 8s ease-in-out infinite alternate;
    }

    @keyframes float-slow {
      0% { transform: translateY(0px) rotate(-1deg); }
      100% { transform: translateY(-15px) rotate(1deg); }
    }

    @keyframes float-mid {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-22px); }
    }

    @keyframes float-fast {
      0% { transform: translateY(0px) rotate(1deg); }
      100% { transform: translateY(-12px) rotate(-1deg); }
    }

    /* Stat Cards */
    .stat-card {
      border: 1px solid var(--border-color);
      background: #FFFFFF;
      transition: transform 0.3s ease;
    }
    
    /* Product Cards */
    .product-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
      border-color: rgba(5, 150, 105, 0.2);
    }

    .product-img-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #F1F5F9;
    }

    .product-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-img-wrapper img {
      transform: scale(1.03);
    }

    .tech-tag {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.35rem 0.75rem;
      border-radius: 20px;
      background-color: var(--bg-light);
      color: var(--text-muted);
      border: 1px solid var(--border-color);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* Feature Cards */
    .feature-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.04);
      border-color: rgba(5, 150, 105, 0.15);
    }

    .feature-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background-color: var(--primary-light);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    /* Tech Stack Cards */
    .tech-stack-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 1.25rem;
      text-align: center;
      transition: all 0.2s ease;
    }

    .tech-stack-card:hover {
      border-color: var(--primary-color);
      box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.08);
    }

    .tech-logo-placeholder {
      font-size: 1.75rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    /* Laptop Mockup Wrapper */
    .laptop-mockup-container {
      position: relative;
      background: #111827;
      border-radius: 20px;
      padding: 1.5%;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
    }

    .laptop-screen {
      border-radius: 10px;
      overflow: hidden;
      background: #000;
      aspect-ratio: 16 / 10;
    }

    .laptop-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Mobile Screenshots Carousel Custom styling */
    .screenshot-slider-container {
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      display: flex;
      gap: 1.5rem;
      padding: 2rem 0;
    }

    .screenshot-slider-container::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    .slider-phone-card {
      flex: 0 0 auto;
      width: 250px;
      border-radius: 28px;
      border: 5px solid #111827;
      background: #111827;
      overflow: hidden;
      box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
    }

    /* Timeline Process */
    .timeline-wrapper {
      position: relative;
    }

    .timeline-line {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--border-color);
      z-index: 1;
      transform: translateY(-50%);
    }

    @media (max-width: 991.98px) {
      .timeline-line {
        display: none;
      }
    }

    .timeline-node {
      position: relative;
      z-index: 2;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.75rem;
      transition: all 0.3s ease;
    }

    .timeline-node:hover {
      border-color: var(--primary-color);
      transform: translateY(-3px);
    }

    .timeline-badge {
      width: 40px;
      height: 40px;
      background-color: var(--primary-color);
      color: #FFFFFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    /* Reviews */
    .review-card {
      border: 1px solid var(--border-color);
      border-radius: 20px;
      background: #FFFFFF;
      transition: all 0.3s ease;
    }

    .review-card:hover {
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
      border-color: rgba(5, 150, 105, 0.1);
    }

    /* Accordion FAQ Customization */
    .accordion-item {
      border: 1px solid var(--border-color) !important;
      border-radius: 16px !important;
      overflow: hidden;
      margin-bottom: 0.75rem;
      background: #FFFFFF;
    }

    .accordion-button {
      font-weight: 600;
      font-family: var(--font-heading);
      font-size: 1.05rem;
      padding: 1.25rem;
      color: var(--text-dark);
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--primary-light);
      color: var(--primary-color);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: var(--primary-color);
    }

    /* CTA Section */
    .cta-container {
      background: linear-gradient(135deg, #059669 0%, #047857 100%);
      border-radius: 32px;
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .hero-mockup-wrapper {
        height: 380px;
        max-width: 480px;
        margin: 2rem auto 0;
      }
      .mockup-phone {
        width: 170px;
      }
      .mockup-phone-1 { left: 0; top: 40px; }
      .mockup-phone-2 { left: 120px; top: 0; }
      .mockup-phone-3 { left: 240px; top: 60px; }
    }

    @media (max-width: 575.98px) {
      .hero-mockup-wrapper {
        height: 280px;
      }
      .mockup-phone {
        width: 130px;
      }
      .mockup-phone-1 { left: 0; top: 30px; }
      .mockup-phone-2 { left: 85px; top: 0; }
      .mockup-phone-3 { left: 170px; top: 45px; }
    }
  
  <!-- Hero Section Style Block -->
 
  :root {
    --primary-emerald: #059669;
    --primary-emerald-hover: #047857;
    --emerald-glow-1: rgba(5, 150, 105, 0.12);
    --emerald-glow-2: rgba(16, 185, 129, 0.08);
    --dark-slate: #111827;
    --muted-slate: #4B5563;
    --light-bg-slate: #F8FAFC;
    --border-light: rgba(226, 232, 240, 0.8);
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
  }

  /* Core Hero Styles */
  .hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #FFFFFF;
    background-image: 
      radial-gradient(circle at 80% 20%, var(--emerald-glow-1) 0%, transparent 45%),
      radial-gradient(circle at 20% 80%, var(--emerald-glow-2) 0%, transparent 45%),
      linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  /* Custom Glow Spheres */
  .glow-sphere-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(60px);
    top: 10%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow-slow 10s ease-in-out infinite alternate;
  }

  .glow-sphere-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(50px);
    bottom: 10%;
    left: 5%;
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow-slow 8s ease-in-out infinite alternate-reverse;
  }

  /* Typography & Text Highlights */
  .hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: var(--dark-slate);
    letter-spacing: -0.035em;
    line-height: 1.1;
  }

  .gradient-text-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--muted-slate);
    line-height: 1.6;
    font-weight: 400;
  }

  /* Premium Pill Badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #047857;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
  }

  .hero-badge:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    border-color: var(--primary-emerald);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
    color: var(--primary-emerald);
  }

  /* Call-To-Action Buttons */
  .btn-cta-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
    color: #FFFFFF;
  }

  .btn-cta-secondary {
    background: #FFFFFF;
    color: var(--dark-slate);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-image: linear-gradient(to bottom, #FFFFFF, #F8FAFC);
  }

  .btn-cta-secondary:hover {
    background-image: linear-gradient(to bottom, #F8FAFC, #F1F5F9);
    border-color: rgba(17, 24, 39, 0.25);
    transform: translateY(-2px);
    color: var(--dark-slate);
  }

  /* Micro-Trust Indicators */
  .trust-indicator-card {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 8px 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-slate);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .trust-indicator-card:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 150, 105, 0.25);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.06);
  }

  /* Counters and Stats */
  .hero-stat-card {
    background: #FFFFFF;
    border-right: 1px solid var(--border-light);
    padding: 10px 20px 10px 0;
  }

  .hero-stat-card:last-child {
    border-right: none;
  }

  .stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--dark-slate);
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .stat-lbl {
    font-size: 0.8rem;
    color: var(--muted-slate);
    font-weight: 500;
  }

  /* Composition Left / Right Column Layout */
  .hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
    z-index: 5;
  }

  /* Custom Laptop Mockup (Pure CSS & Styling) */
  .laptop-mockup {
    position: absolute;
    width: 82%;
    left: 8%;
    top: 15%;
    z-index: 10;
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.15));
    animation: float-device-laptop 6s ease-in-out infinite alternate;
  }

  .laptop-chassis {
    background: #1e293b;
    border-radius: 16px;
    padding: 10px;
    border: 3px solid #475569;
  }

  .laptop-screen-container {
    aspect-ratio: 16/10;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid #000000;
  }

  .laptop-screen-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .laptop-keyboard-deck {
    height: 10px;
    background: linear-gradient(to bottom, #64748b, #334155);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
    margin-top: -1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  /* Overlapping Phone Mockups */
  .phone-mockup {
    position: absolute;
    width: 170px;
    border-radius: 30px;
    background: #000000;
    padding: 6px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    overflow: hidden;
  }

  .phone-screen {
    aspect-ratio: 9/19.5;
    border-radius: 24px;
    overflow: hidden;
    background: #111827;
  }

  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Precise positions for overlapping composition */
  .phone-1 {
    left: -2%;
    top: 35%;
    animation: float-device-p1 7s ease-in-out infinite alternate;
  }

  .phone-2 {
    right: -2%;
    top: 10%;
    animation: float-device-p2 6.5s ease-in-out infinite alternate-reverse;
  }

  .phone-3 {
    right: 15%;
    bottom: -2%;
    z-index: 25;
    animation: float-device-p3 8s ease-in-out infinite alternate;
  }

  /* Glassmorphic Floating Badges */
  .floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 30;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .glass-card-1 {
    top: 5%;
    left: 20%;
    animation: float-badge 6s ease-in-out infinite alternate;
  }

  .glass-card-2 {
    bottom: 30%;
    right: -5%;
    animation: float-badge 7s ease-in-out infinite alternate-reverse;
  }

  .glass-card-3 {
    bottom: 45%;
    left: -8%;
    animation: float-badge 8s ease-in-out infinite alternate;
  }

  .badge-icon-wrap {
    width: 32px;
    height: 32px;
    background: var(--primary-emerald-hover);
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .badge-text-wrap h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-slate);
  }

  .badge-text-wrap span {
    font-size: 0.725rem;
    color: var(--muted-slate);
    font-weight: 500;
    display: block;
  }

  /* Tech Stack Mini Floating Badges */
  .mini-tech-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    z-index: 28;
    font-size: 1.25rem;
    color: var(--primary-emerald);
    animation: float-icon-anim 5s ease-in-out infinite alternate;
  }

  /* Positioning Floating tech badges */
  .tech-icon-flutter { top: 8%; left: -3%; animation-delay: 0.2s; color: #02569B; }
  .tech-icon-laravel { top: 25%; left: 45%; animation-delay: 0.8s; color: #FF2D20; }
  .tech-icon-firebase { bottom: 25%; left: 5%; animation-delay: 1.4s; color: #FFCA28; }
  .tech-icon-stripe { top: 48%; right: -5%; animation-delay: 0.5s; color: #635BFF; }
  .tech-icon-maps { bottom: 15%; right: 40%; animation-delay: 1.1s; color: #34A853; }

  /* Bottom Wave Divider */
  .bottom-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 40;
  }

  .bottom-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
  }

  .bottom-wave-divider .shape-fill {
    fill: #F8FAFC; /* Must match the next section background color */
  }

  /* Custom Animations Keyframes */
  @keyframes pulse-glow-slow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
  }

  @keyframes float-device-laptop {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(0.5deg); }
  }

  @keyframes float-device-p1 {
    0% { transform: translateY(0) rotate(-1.5deg); }
    100% { transform: translateY(-18px) rotate(0.5deg); }
  }

  @keyframes float-device-p2 {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(-14px) rotate(4deg); }
  }

  @keyframes float-device-p3 {
    0% { transform: translateY(0) rotate(-0.5deg); }
    100% { transform: translateY(-16px) rotate(1.5deg); }
  }

  @keyframes float-badge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  @keyframes float-icon-anim {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.05); }
  }

  /* CSS Fade-In-Up classes for Scroll / Load animations */
  .fade-in-up-delay-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
  }
  .fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.25s;
  }
  .fade-in-up-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
  }
  .fade-in-up-delay-4 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.55s;
  }

  @keyframes fadeInUpAnim {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1199.98px) {
    .hero-visual-wrapper {
      height: 500px;
    }
    .phone-mockup {
      width: 140px;
    }
    .laptop-mockup {
      width: 80%;
      left: 10%;
    }
    .floating-glass-card {
      padding: 8px 12px;
    }
  }

  @media (max-width: 991.98px) {
    .hero-section {
      padding-top: 120px;
      padding-bottom: 60px;
      text-align: center !important;
    }
    .hero-badge {
      justify-content: center;
    }
    .hero-subtitle {
      margin: 0 auto;
    }
    .hero-visual-wrapper {
      height: 440px;
      max-width: 540px;
      margin: 40px auto 0;
    }
    .phone-mockup {
      width: 120px;
    }
    .glass-card-3 {
      left: 0;
    }
    .hero-stat-card {
      border-right: none;
      border-bottom: 1px solid var(--border-light);
      padding: 15px 0;
    }
    .hero-stat-card:last-child {
      border-bottom: none;
    }
  }

  @media (max-width: 575.98px) {
    .hero-visual-wrapper {
      height: 340px;
    }
    .phone-mockup {
      width: 95px;
    }
    .floating-glass-card {
      display: none; /* Hide glass badges on mobile for layout breathing space */
    }
    .mini-tech-icon {
      width: 32px;
      height: 32px;
      font-size: 0.9rem;
    }
  }
  
  
  /* Premium Statistics Grid Styles */
.premium-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.premium-stat-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Subtle gradient top-accent active on hover */
.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-emerald), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-stat-card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  border-color: rgba(5, 150, 105, 0.15);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.04);
}

.premium-stat-card:hover::before {
  opacity: 1;
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
}

.stat-lbl {
  font-size: 0.725rem;
  color: var(--muted-slate);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stat-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.03);
  color: var(--muted-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.premium-stat-card:hover .stat-icon-badge {
  background: rgba(5, 150, 105, 0.08);
  color: var(--primary-emerald);
}

.text-warning-custom {
  color: #EAB308 !important;
}

/* Responsive grid layouts */
@media (max-width: 991.98px) {
  .premium-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .premium-stat-card {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .premium-stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
 

 
  :root {
    --brand-emerald: #059669;
    --brand-emerald-hover: #047857;
    --brand-emerald-light: rgba(5, 150, 105, 0.08);
    --brand-emerald-glow: rgba(5, 150, 105, 0.12);
    --dark-slate: #111827;
    --muted-slate: #6B7280;
    --border-soft: rgba(17, 24, 39, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
  }

  /* Main Hero Section Styling */
  .premium-hero {
    position: relative;
    min-height: 100vh;
    background-color: #FFFFFF;
    background-image: 
      radial-gradient(circle at 85% 15%, var(--brand-emerald-glow) 0%, transparent 40%),
      radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
      linear-gradient(to right, rgba(0, 0, 0, 0.012) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.012) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  /* Micro Grid Ambient Glow Spots */
  .ambient-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(80px);
    top: 5%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
  }

  .ambient-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(60px);
    bottom: 5%;
    left: 2%;
    z-index: 1;
    pointer-events: none;
  }

  /* Typographical Elements */
  .hero-pre-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #047857;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
  }

  .hero-pre-badge:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    border-color: var(--brand-emerald);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.08);
  }

  .hero-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--dark-slate);
    letter-spacing: -0.03em;
    line-height: 1.15;
  }

  .hero-accent-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-main-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--muted-slate);
    line-height: 1.6;
    font-weight: 400;
  }

  /* Triple CTA Button Architecture */
  .btn-hero-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.3);
  }

  .btn-hero-secondary {
    background: #FFFFFF;
    color: var(--dark-slate) !important;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-hero-secondary:hover {
    background: #F8FAFC;
    border-color: rgba(17, 24, 39, 0.2);
    transform: translateY(-2px);
  }

  .btn-hero-tertiary {
    background: transparent;
    color: var(--muted-slate) !important;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-hero-tertiary:hover {
    color: var(--dark-slate) !important;
    border-color: rgba(17, 24, 39, 0.05);
    background: rgba(17, 24, 39, 0.02);
  }

  /* Micro Trust indicators below CTA */
  .trust-micro-pill {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(17, 24, 39, 0.04);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-slate);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Inline Minimalist Tech Logos */
  .tech-logos-panel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.05);
  }

  .tech-logo-unit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted-slate);
    transition: all 0.3s ease;
  }

  .tech-logo-unit i {
    font-size: 1.1rem;
    color: var(--muted-slate);
    transition: color 0.3s ease;
  }

  .tech-logo-unit:hover {
    color: var(--dark-slate);
  }

  .tech-logo-unit:hover i.bi-phone { color: #02569B; }
  .tech-logo-unit:hover i.bi-terminal { color: #FF2D20; }
  .tech-logo-unit:hover i.bi-lightning { color: #FFCA28; }
  .tech-logo-unit:hover i.bi-credit-card { color: #635BFF; }
  .tech-logo-unit:hover i.bi-geo-alt { color: #34A853; }
  .tech-logo-unit:hover i.bi-bell { color: #FF6F00; }

  /* Redesigned Micro Statistics Cards */
  .stats-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .stats-micro-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .stats-micro-card:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 0.15);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.05);
  }

  .stats-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.03);
    color: var(--muted-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .stats-micro-card:hover .stats-icon-box {
    background: var(--brand-emerald-light);
    color: var(--brand-emerald);
  }

  .stats-num-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--dark-slate);
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .stats-num-lbl {
    font-size: 0.7rem;
    color: var(--muted-slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
  }

  /* Right Side Interactive Devices Stage */
  .interactive-device-stage {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  /* Laptop Frame Configuration */
  .mockup-chassis-laptop {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 15%;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(17, 24, 39, 0.15));
    animation: floating-laptop 6s ease-in-out infinite alternate;
  }

  .laptop-bezel-frame {
    background: #1e293b;
    border-radius: 16px 16px 0 0;
    padding: 8px 8px 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .laptop-display-screen {
    aspect-ratio: 16/10;
    background: #0f172a;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }

  .laptop-display-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .laptop-base-bar {
    height: 10px;
    background: linear-gradient(to bottom, #64748b, #334155);
    border-radius: 0 0 16px 16px;
    position: relative;
  }

  .laptop-indent-groove {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
  }

  /* Overlapping Phone Frame Configuration */
  .mockup-bezel-phone {
    position: absolute;
    border-radius: 28px;
    background: #000000;
    padding: 5px;
    filter: drop-shadow(0 25px 45px rgba(17, 24, 39, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    z-index: 12;
  }

  .phone-display-screen {
    position: relative;
    aspect-ratio: 9/19.5;
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
  }

  .phone-display-screen img {

    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .phone-island-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 9px;
    background: #000000;
    border-radius: 20px;
    z-index: 15;
  }

  /* Absolute Position Layers for Phones */
  .p-layer-left {
    width: 120px;
    left: -4%;
    bottom: 12%;
    animation: floating-phone-left 7s ease-in-out infinite alternate;
  }

  .p-layer-right {
    width: 120px;
    right: -4%;
    top: 10%;
    animation: floating-phone-right 6.5s ease-in-out infinite alternate-reverse;
  }

  .p-layer-center {
    width: 130px;
    right: 20%;
    bottom: -6%;
    z-index: 15;
    animation: floating-phone-center 8s ease-in-out infinite alternate;
    border-color: rgba(5, 150, 105, 0.25);
  }

  /* Refined Glassmorphic Floating Badges (4 Cards) */
  .floating-glassmorphic-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 25;
    pointer-events: none;
  }

  .glass-tag-1 {
    top: 4%;
    left: 15%;
    animation: float-tag-motion 5s ease-in-out infinite alternate;
  }

  .glass-tag-2 {
    top: 35%;
    right: -6%;
    animation: float-tag-motion 6s ease-in-out infinite alternate-reverse;
  }

  .glass-tag-3 {
    bottom: 25%;
    left: -8%;
    animation: float-tag-motion 5.5s ease-in-out infinite alternate;
  }

  .glass-tag-4 {
    bottom: -2%;
    right: 15%;
    animation: float-tag-motion 6.5s ease-in-out infinite alternate-reverse;
    z-index: 26;
  }

  .tag-icon-circle {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
  }

  .tag-details-wrap h6 {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-slate);
  }

  .tag-details-wrap span {
    font-size: 0.65rem;
    color: var(--muted-slate);
    font-weight: 500;
    display: block;
  }

  /* Precise CSS Animation Keyframes */
  @keyframes floating-laptop {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(0.2deg); }
  }

  @keyframes floating-phone-left {
    0% { transform: translateY(0) rotate(-4deg); }
    100% { transform: translateY(-16px) rotate(-2deg); }
  }

  @keyframes floating-phone-right {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(-12px) rotate(4deg); }
  }

  @keyframes floating-phone-center {
    0% { transform: translateY(0) rotate(-0.5deg); }
    100% { transform: translateY(-18px) rotate(0.5deg); }
  }

  @keyframes float-tag-motion {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }

  /* Curved Bottom Divider */
  .hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 40;
  }

  .hero-bottom-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
  }

  .hero-bottom-curve .curve-fill {
    fill: #F8FAFC;
  }

  /* Responsive Constraints */
  @media (max-width: 1199.98px) {
    .interactive-device-stage {
      height: 480px;
    }
    .mockup-bezel-phone {
      border-radius: 20px;
    }
    .phone-display-screen {
      border-radius: 16px;
    }
    .p-layer-left { width: 100px; }
    .p-layer-right { width: 100px; }
    .p-layer-center { width: 110px; }
    .stats-num-val { font-size: 1.15rem; }
  }

  @media (max-width: 991.98px) {
    .premium-hero {
      padding-top: 110px;
      padding-bottom: 60px;
    }
    .interactive-device-stage {
      height: 400px;
      max-width: 440px;
      margin: 40px auto 0;
    }
    .p-layer-left { width: 90px; }
    .p-layer-right { width: 90px; }
    .p-layer-center { width: 100px; }
    .floating-glassmorphic-tag {
      display: none; /* Maintains clear breathing space on smaller screens */
    }
    .stats-grid-wrapper {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  @media (max-width: 575.98px) {
    .interactive-device-stage {
      height: 320px;
      max-width: 340px;
    }
    .p-layer-left { width: 75px; }
    .p-layer-right { width: 75px; }
    .p-layer-center { width: 85px; }
    .phone-island-notch {
      width: 24px;
      height: 6px;
      top: 4px;
    }
    .stats-grid-wrapper {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }
 

 

/* =========================================
   Enhanced Technology Badges Panel
   ========================================= */
.tech-pill-container {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  margin-top: 1.5rem;
}

.tech-panel-label {
  font-size: 0.7rem;
  color: var(--muted-slate);
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(17, 24, 39, 0.04);
  padding: 4px 8px;
  border-radius: 6px;
}

.tech-pill-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 100px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--dark-slate);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

/* Hover Accent Configurations */
.tech-brand-pill i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.tech-brand-pill:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tech-brand-pill:hover i {
  transform: scale(1.15);
}

.pill-flutter:hover { border-color: #02569B; color: #02569B; }
.pill-laravel:hover { border-color: #FF2D20; color: #FF2D20; }
.pill-firebase:hover { border-color: #FFCA28; color: #E0B010; }
.pill-stripe:hover { border-color: #635BFF; color: #635BFF; }
.pill-maps:hover { border-color: #34A853; color: #34A853; }
.pill-onesignal:hover { border-color: #FF6F00; color: #FF6F00; }


/* =========================================
   Premium Dashboard Stat Cards
   ========================================= */
.premium-stat-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.stat-deck-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-card-inner {
  position: relative;
  padding: 16px;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Subtle Dynamic Ambient Backlight Glow */
.stat-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(25px);
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.bg-flutter-glow { background: radial-gradient(circle, rgba(2, 86, 155, 0.05) 0%, transparent 60%); }
.bg-laravel-glow { background: radial-gradient(circle, rgba(255, 45, 32, 0.04) 0%, transparent 60%); }
.bg-rating-glow { background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 60%); }
.bg-support-glow { background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 60%); }

.stat-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}


.stats-num-lbl {
  font-size: 0.7rem;
  color: var(--muted-slate);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-main-value {
  margin-top: auto;
}

.stats-num-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--dark-slate);
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Accent border bar below each card on hover */
.stat-bar-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

/* Hover States */
.stat-deck-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
}

.stat-deck-card:hover .stat-card-glow {
  opacity: 1;
}

.stat-deck-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
}

/* Colors for dynamic hover accents */
.stat-deck-card:hover:nth-child(1) .stat-bar-accent { background: #02569B; }
.stat-deck-card:hover:nth-child(1) .stat-icon-wrapper { background: rgba(2, 86, 155, 0.08); color: #02569B !important; }

.stat-deck-card:hover:nth-child(2) .stat-bar-accent { background: #FF2D20; }
.stat-deck-card:hover:nth-child(2) .stat-icon-wrapper { background: rgba(255, 45, 32, 0.08); color: #FF2D20 !important; }

.stat-deck-card:hover:nth-child(3) .stat-bar-accent { background: #EAB308; }
.stat-deck-card:hover:nth-child(3) .stat-icon-wrapper { background: rgba(234, 179, 8, 0.08); color: #EAB308 !important; }

.stat-deck-card:hover:nth-child(4) .stat-bar-accent { background: var(--brand-emerald); }
.stat-deck-card:hover:nth-child(4) .stat-icon-wrapper { background: rgba(5, 150, 105, 0.08); color: var(--brand-emerald) !important; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .premium-stat-board {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 575.98px) {
  .tech-pill-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .premium-stat-board {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


 


 


/* =========================================
   Tech Ecosystem Grid Styles
   ========================================= */
.tech-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-eco-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.tech-eco-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

/* Custom Soft Colors for Badges */
.bg-flutter-light { background: rgba(2, 86, 155, 0.07); color: #02569B; }
.bg-laravel-light { background: rgba(255, 45, 32, 0.07); color: #FF2D20; }
.bg-firebase-light { background: rgba(255, 202, 40, 0.1); color: #E0B010; }
.bg-stripe-light { background: rgba(99, 91, 255, 0.07); color: #635BFF; }
.bg-maps-light { background: rgba(52, 168, 83, 0.07); color: #34A853; }
.bg-onesignal-light { background: rgba(255, 111, 0, 0.07); color: #FF6F00; }
.bg-mysql-light { background: rgba(0, 117, 143, 0.07); color: #00758F; }
.bg-api-light { background: rgba(5, 150, 105, 0.07); color: var(--brand-emerald); }

/* Card Hovers */
.tech-eco-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 150, 105, 0.15);
  box-shadow: 0 15px 35px rgba(5, 150, 105, 0.04);
}

.tech-eco-card:hover .tech-eco-badge {
  transform: scale(1.1);
}

/* =========================================
   Responsive Grid Framework Adjustments
   ========================================= */
@media (max-width: 1199.98px) {
  .tech-ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .tech-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .tech-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tech-eco-card {
    padding: 20px;
  }
}

 

 
  /* Base Style Scope for Products Section */
  .premium-products-section {
    background-color: #FFFFFF;
    padding-top:20px;
    padding-bottom: 60px;
    font-family: 'Inter', sans-serif;
  }

  .section-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .section-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* Scoped Custom Accent Color Rules */
  .product-accent-emerald {
    --accent-base: #2bbcb6;
    --accent-hover: #2ec193;
    --accent-light: rgba(5, 150, 105, 0.06);
    --accent-glow: rgba(5, 150, 105, 0.15);
  }

  .product-accent-blue {
    --accent-base: #00855b;
    --accent-hover: #00855b;
    --accent-light: rgba(37, 99, 235, 0.06);
    --accent-glow: rgba(37, 99, 235, 0.15);
  }

  .product-accent-orange {
    --accent-base: #fec526;
    --accent-hover: #e9bc40;
    --accent-light: rgba(234, 88, 12, 0.06);
    --accent-glow: rgba(234, 88, 12, 0.15);
  }

  /* Premium Product Card Architecture */
  .product-showcase-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Image Container & Zooms */
  .card-media-wrapper {
    position: relative;
    
    background: #F8FAFC;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 24, 39, 0.04);
  }

  .card-media-wrapper img {
    width: 100%;
   
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Glass Overlay on Media hover */
  .card-media-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 2;
  }

  /* Dynamic Accented Tag Pill */
  .tag-capsule {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: #F1F5F9;
    border: 1px solid rgba(17, 24, 39, 0.04);
    border-radius: 100px;
    font-size: 0.725rem;
    font-weight: 600;
    color: #475569;margin-right: 3px;
    transition: all 0.3s ease;
  }

  .card-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #111827;
    letter-spacing: -0.02em;
  }

  /* Rating and version layout styles */
  .meta-metrics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(17, 24, 39, 0.08);
  }

  .metrics-badge-star {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .metrics-badge-star i {
    color: #EAB308;
  }

  .metrics-badge-ver {
    font-size: 0.725rem;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 2px 8px;
    border-radius: 6px;
  }

  /* Action Buttons Grid */
  .btn-accent-solid {
    background: var(--accent-base);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 11px 20px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .btn-accent-solid:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
  }

  .btn-accent-outline {
    background: #FFFFFF;
    color: #475569 !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .btn-accent-outline:hover {
    background: #F8FAFC;
    color: #111827 !important;
    border-color: rgba(17, 24, 39, 0.15);
  }

  /* Bottom Metadata Row */
  .card-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.725rem;
    color: #64748B;
    border-top: 1px solid rgba(17, 24, 39, 0.05);
    padding-top: 14px;
    margin-top: 16px;
  }

  .card-footer-meta span strong {
    color: #111827;
  }

  /* Core Card Hover Animations */
  .product-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px var(--accent-glow);
    border-color: rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.98);
  }

  .product-showcase-card:hover .card-media-wrapper img {
    transform: scale(1.04);
  }

  .product-showcase-card:hover .tag-capsule {
    background: var(--accent-light);
    color: var(--accent-base);
    border-color: rgba(17, 24, 39, 0.01);
  }

  /* Responsive Spacings */
  @media (max-width: 991.98px) {
    .premium-products-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }
 
   
  /* Base Style Scope for Why Choose Us Section */
  .premium-why-us-section {
    background-color: #F8FAFC;
    padding-top: 120px;
    padding-bottom: 120px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .why-us-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .why-us-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* 6-Card Premium Feature Grid */
  .feature-showcase-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Top Border Animation */
  .feature-showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #059669;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feature-showcase-card:hover::after {
    transform: scaleX(1);
  }

  /* Custom Icon Frame */
  .feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.06);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
  }

  .feature-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .feature-card-desc {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Hover Lift Interactivity */
  .feature-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.04);
    border-color: rgba(5, 150, 105, 0.12);
  }

  .feature-showcase-card:hover .feature-icon-wrapper {
    background: #059669;
    color: #FFFFFF;
    transform: rotate(5deg) scale(1.05);
  }

  /* Bottom Horizontal Statistics Highlight Panel */
  .stat-highlight-panel {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 24px;
    padding: 32px;
    margin-top: 64px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  }

  .stat-highlight-divider {
    border-right: 1px solid rgba(17, 24, 39, 0.06);
  }

  .highlight-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .highlight-lbl {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Bottom Trust Banner styling */
  .trust-banner-wrap {
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    margin-top: 64px;
    padding-top: 48px;
  }

  .trust-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    letter-spacing: -0.01em;
  }

  .trust-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .trust-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
  }

  .trust-pill-badge i {
    color: #059669;
    font-size: 0.95rem;
  }

  .trust-pill-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 150, 105, 0.15);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.04);
  }

  /* Responsive Grid Tweaks */
  @media (max-width: 991.98px) {
    .premium-why-us-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .stat-highlight-divider {
      border-right: none;
      border-bottom: 1px dashed rgba(17, 24, 39, 0.08);
      padding-bottom: 16px;
      margin-bottom: 16px;
    }
    .stat-highlight-divider:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
  }
 

 
  /* Base Style Scope for Technology Stack Section */
  .tech-stack-showcase {
    background-color: #FFFFFF;
    padding-top: 120px;
    padding-bottom:0px;
    font-family: 'Inter', sans-serif;
  }

  .tech-pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .tech-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* 8-Column Grid Cards */
  .premium-tech-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Interactive Icon Containers */
  .tech-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid rgba(17, 24, 39, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .tech-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

  .tech-card-desc {
    font-size: 0.825rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0;
  }

  /* Hover Card Transformations */
  .premium-tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 150, 105, 0.2);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.06);
  }

  .premium-tech-card:hover .tech-card-icon-wrap {
    transform: scale(1.1);
    background: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.02);
  }

  /* Specific Brand Colors inside Icons */
  .icon-color-flutter { color: #02569B; }
  .icon-color-laravel { color: #FF2D20; }
  .icon-color-mysql { color: #00758F; }
  .icon-color-firebase { color: #FFCA28; }
  .icon-color-api { color: #059669; }
  .icon-color-stripe { color: #635BFF; }
  .icon-color-maps { color: #34A853; }
  .icon-color-onesignal { color: #FF6F00; }

  /* Bottom Integrated Performance Banner */
  .tech-performance-banner {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
  }

  .banner-badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.04);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  }

  .banner-badge-capsule i {
    color: #059669;
    font-size: 0.9rem;
  }

  /* Spacing Adjustments for Responsive Viewports */
  @media (max-width: 991.98px) {
    .tech-stack-showcase {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .tech-performance-banner {
      padding: 30px;
      margin-top: 40px;
    }
  }
 

 
  /* Base Style Scope for App Screens Section */
  .premium-screens-section {
    background-color: #FFFFFF;
    padding-top: 140px;
    padding-bottom: 140px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Grid & Subtle Glow Accents */
  .screens-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(5, 150, 105, 0.015) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
  }

  .screens-blur-halo {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(60px);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }

  .screens-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .screens-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* =========================================
     Carousel/Slider Custom Architecture
     ========================================= */
  .apple-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    z-index: 5;
    cursor: grab;
  }

  .apple-slider-viewport:active {
    cursor: grabbing;
  }

  .apple-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .apple-slider-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Responsive sizes: 1 item on mobile, 3 on tablet, 5 on desktop */
  @media (min-width: 576px) {
    .apple-slider-item {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  @media (min-width: 992px) {
    .apple-slider-item {
      flex: 0 0 33.333%;
      max-width: 33.333%;
    }
  }
  @media (min-width: 1200px) {
    .apple-slider-item {
      flex: 0 0 20%;
      max-width: 20%;
    }
  }

  /* Realistic iPhone Hardware Frame */
  .apple-iphone-mockup {
    width: 100%;
    max-width: 230px;
    border-radius: 38px;
    background: #000000;
    padding: 5px;
    border: 3px solid #1e293b;
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.1);
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: phone-float-slow 6s ease-in-out infinite alternate;
  }

  /* Stagger animations for floating effect */
  .apple-slider-item:nth-child(even) .apple-iphone-mockup {
    animation-delay: 1.5s;
  }

  .apple-iphone-bezel {
    border-radius: 34px;
    overflow: hidden;
    background: #000000;
    position: relative;
  }

  .apple-iphone-screen {
    aspect-ratio: 9/19.5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
  }

  .apple-iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .apple-dynamic-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
  }

  /* Active/Centered slide scaling details */
  .apple-slider-item.slide-active .apple-iphone-mockup {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
  }

  /* Overlapping Perspective */
  .apple-slider-item.slide-active {
    z-index: 10;
  }

  /* Labels below phones */
  .slide-meta-wrap {
    margin-top: 24px;
    text-align: center;
    transition: opacity 0.4s ease;
    max-width: 200px;
    opacity: 0.5;
  }

  .apple-slider-item.slide-active .slide-meta-wrap {
    opacity: 1;
  }

  .slide-screen-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 4px;
  }

  .slide-screen-desc {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 0;
  }

  /* Controls & Dots */
  .slider-controls-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    z-index: 5;
    position: relative;
  }

  .slider-btn-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #111827;
    transition: all 0.3s ease;
  }

  .slider-btn-nav:hover {
    background: #F8FAFC;
    border-color: rgba(17, 24, 39, 0.15);
    color: #059669;
  }

  .slider-dots-container {
    display: flex;
    gap: 6px;
  }

  .slider-dot-node {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.1);
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }

  .slider-dot-node.active {
    background: #059669;
    width: 20px;
    border-radius: 100px;
  }

  /* =========================================
     Bottom Highlights Cards Layout
     ========================================= */
  .feature-highlights-deck {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    z-index: 5;
    position: relative;
  }

  .highlight-mini-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  }

  .highlight-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
  }

  .highlight-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 6px;
  }

  .highlight-desc {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 0;
  }

  /* Hover Card Transformations */
  .highlight-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(5, 150, 105, 0.15);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.04);
  }

  .highlight-mini-card:hover .highlight-icon-circle {
    transform: scale(1.1);
  }

  /* Animation Keyframes */
  @keyframes phone-float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  /* Responsive layouts for highlights */
  @media (max-width: 1199.98px) {
    .feature-highlights-deck {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 575.98px) {
    .premium-screens-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .feature-highlights-deck {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 50px;
    }
    .slider-controls-wrap {
      margin-top: 20px;
    }
  }
 
 
  /* Base Style Scope for Admin Dashboard Section */
  .premium-dashboard-showcase {
    background-color: #F8FAFC;
    background-image: radial-gradient(rgba(5, 150, 105, 0.03) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    padding-top: 10px;
    padding-bottom: 0px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Soft Background Blur Spheres */
  .dashboard-blur-sphere-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(60px);
    top: 10%;
    left: -10%;
    pointer-events: none;
    z-index: 1;
  }

  .dashboard-blur-sphere-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(80px);
    bottom: 5%;
    right: -10%;
    pointer-events: none;
    z-index: 1;
  }

  .dashboard-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .dashboard-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* Left Side Feature Block Grid */
  .feature-block-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
  }

  .feature-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(5, 150, 105, 0.15);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.03);
    transition: all 0.3s ease;
  }

  .feature-block-card:hover .feature-icon-badge {
    background: #059669;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(5, 150, 105, 0.2);
  }

  .feature-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 4px;
  }

  .feature-desc-text {
    font-size: 0.825rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0;
  }

  /* Explore Dashboard CTA */
  .btn-dashboard-explore {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-dashboard-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.3);
  }

  /* Right Side Visual Stage */
  .laptop-stage-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
  }

  /* Laptop Bezel and Chassis structure */
  .stage-laptop-device {
    filter: drop-shadow(0 35px 70px rgba(17, 24, 39, 0.18));
    animation: laptop-hover-float 6s ease-in-out infinite alternate;
  }

  .laptop-inner-bezel {
    background: #1e293b;
    border-radius: 20px 20px 0 0;
    padding: 10px 10px 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .laptop-display-screen {
    aspect-ratio: 16/10;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }

  .laptop-display-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .laptop-chassis-base {
    height: 14px;
    background: linear-gradient(to bottom, #64748b, #334155);
    border-radius: 0 0 20px 20px;
    position: relative;
  }

  .laptop-notch-groove {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0 0 6px 6px;
  }

  /* Glow Behind Laptop */
  .laptop-backlight-halo {
    position: absolute;
    width: 480px;
    height: 320px;
    top: 15%;
    left: 15%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
  }

  /* Glassmorphism Floating Widgets */
  .dashboard-glass-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    animation: widget-hover-float 5s ease-in-out infinite alternate;
  }

  .widget-revenue { top: 6%; left: 0%; animation-delay: 0.2s; }
  .widget-users { top: -4%; right: 5%; animation-delay: 0.8s; }
  .widget-rating { bottom: 10%; left: -6%; animation-delay: 1.4s; }
  .widget-orders { bottom: 5%; right: 2%; animation-delay: 0.5s; }

  .widget-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
  }

  .widget-details h6 {
    margin: 0;
    font-size: 0.775rem;
    font-weight: 700;
    color: #111827;
  }

  .widget-details span {
    font-size: 0.65rem;
    color: #64748B;
    font-weight: 500;
    display: block;
  }

  /* Bottom highlight row */
  .dashboard-highlight-bar {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 100px;
    padding: 14px 40px;
    margin-top: 80px;
  }

  .highlight-badge-pill {
    font-size: 0.825rem;
    font-weight: 600;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .highlight-badge-pill i {
    color: #059669;
    font-size: 1rem;
  }

  /* Animation Keyframes */
  @keyframes laptop-hover-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
  }

  @keyframes widget-hover-float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.02); }
  }

  /* Responsive Spacing Constraints */
  @media (max-width: 991.98px) {
    .premium-dashboard-showcase {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .laptop-stage-wrapper {
      max-width: 580px;
      margin: 0 auto 50px;
    }
    .dashboard-glass-widget {
      display: none; /* Keep layouts clean and highly responsive on mediumviewports */
    }
    .dashboard-highlight-bar {
      border-radius: 24px;
      padding: 24px;
      margin-top: 50px;
    }
  }

  @media (max-width: 575.98px) {
    .premium-dashboard-showcase {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .laptop-inner-bezel {
      border-radius: 12px 12px 0 0;
      padding: 6px 6px 10px 6px;
    }
    .laptop-chassis-base {
      height: 10px;
      border-radius: 0 0 12px 12px;
    }
  }
  
  .cta-container h2{ color:#fff}
  .logo img{width:100%;}
  .logo{    width: 19%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;}
	.logo-footer{ width:90%} 
	.logo-footer img{ width:60%}
 
 
  .agency-services-section {
    background-color: #F8FAFC;
    padding-top: 120px;
    padding-bottom: 120px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .service-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .service-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* Premium Service Cards */
  .service-deck-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 24px;
    padding: 36px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
  }

  .bg-setup-color { background: rgba(5, 150, 105, 0.08); color: #059669; }
  .bg-reskin-color { background: rgba(37, 99, 235, 0.08); color: #2563EB; }
  .bg-custom-color { background: rgba(234, 88, 12, 0.08); color: #EA580C; }

  .service-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: -0.012em;
  }

  .service-card-desc {
    font-size: 0.825rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .service-feature-list {
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
  }

  .service-feature-list li {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-feature-list li i {
    font-size: 0.95rem;
  }

  .btn-service-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Specific Card Hovers */
  .service-deck-card:hover {
    transform: translateY(-8px);
    border-color: rgba(17, 24, 39, 0.1);
    box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.06);
  }

  .service-deck-card:hover .service-icon-wrap {
    transform: scale(1.1);
  }

  .btn-setup-brand { background: #059669; color: #FFFFFF; border: none; }
  .btn-setup-brand:hover { background: #047857; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); }

  .btn-reskin-brand { background: #2563EB; color: #FFFFFF; border: none; }
  .btn-reskin-brand:hover { background: #1D4ED8; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }

  .btn-custom-brand { background: #EA580C; color: #FFFFFF; border: none; }
  .btn-custom-brand:hover { background: #C2410C; box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2); }

  @media (max-width: 991.98px) {
    .agency-services-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }
 


 
  /* Base Stage Area for abstract SaaS illustration */
  .ecosystem-stage {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  /* Central Ambient Glow Sphere */
  .center-halo-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.18) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow-slow 6s ease-in-out infinite alternate;
  }

  /* SVG Connected Network Path Background */
  .ecosystem-svg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  /* Animated glowing dash effect along connection paths */
  .connection-trace {
    stroke: rgba(5, 150, 105, 0.15);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4 6;
    fill: none;
    animation: flow-connections 30s linear infinite;
  }

  @keyframes flow-connections {
    to {
      stroke-dashoffset: -200;
    }
  }

  /* Core Platform Central Hub */
  .core-platform-hub {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(5, 150, 105, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 
      0 0 40px rgba(5, 150, 105, 0.15),
      inset 0 0 20px rgba(5, 150, 105, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: float-center-hub 6s ease-in-out infinite alternate;
  }

  .hub-logo-symbol {
    width: 54px;
    height: 54px;
  }

  /* Outer floating category glass cards (8 Nodes) */
  .category-glass-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float-node-generic 5s ease-in-out infinite alternate;
  }

  /* Hover card glow & raise transforms */
  .category-glass-node:hover {
    transform: translateY(-5px) scale(1.03) !important;
    background: #FFFFFF;
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.08);
  }

  .node-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }

  .node-title-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #111827;
  }

  /* 8 Categories Coordinates Layout (Percentage of Stage bounds) */
  .node-hotel { top: 6%; left: 15%; animation-delay: 0.2s; }
  .node-salon { top: 10%; right: 12%; animation-delay: 0.8s; }
  .node-clinic { top: 38%; left: 2%; animation-delay: 1.4s; }
  .node-spa { top: 44%; right: 2%; animation-delay: 0.5s; }
  .node-taxi { bottom: 8%; left: 10%; animation-delay: 1.1s; }
  .node-rental { bottom: 12%; right: 14%; animation-delay: 1.7s; }
  .node-education {top: 18%;
    left: 33%; transform: translateX(-50%); animation-delay: 2.1s; }
  .node-gym { bottom: 6%; left: 38%; transform: translateX(-50%); animation-delay: 2.6s; }

  /* Animated Platform Core Concept Label Card */
  .platform-concept-badge {
    position: absolute;
    bottom: 28%;
    left: 34%;
    transform: translateX(-50%);
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 16px;
    color: #FFFFFF;
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 22;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-node-generic 6s ease-in-out infinite alternate-reverse;
  }

  /* Fine-tuned Float Keyframes */
  @keyframes pulse-glow-slow {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.05); opacity: 0.9; }
  }

  @keyframes float-center-hub {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }

  @keyframes float-node-generic {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  /* Responsiveness Scaling logic */
  @media (max-width: 991.98px) {
    .ecosystem-stage {
      height: 480px;
      max-width: 520px;
      margin: 40px auto 0;
    }
    .core-platform-hub {
      width: 90px;
      height: 90px;
    }
    .hub-logo-symbol {
      width: 44px;
      height: 44px;
    }
    .category-glass-node {
      padding: 8px 12px;
    }
    .node-title-label {
      font-size: 0.725rem;
    }
  }

  @media (max-width: 575.98px) {
    .ecosystem-stage {
      height: 380px;
      max-width: 360px;
      transform: scale(0.9);
    }
    .category-glass-node {
      padding: 6px 10px;
    }
    .node-icon-box {
      width: 26px;
      height: 26px;
      font-size: 0.8rem;
    }
    .node-title-label {
      font-size: 0.65rem;
    }
    .platform-concept-badge {
      display: none; /* Breathability on micro devices */
    }
  }
  
  .core-platform-hub img{width: 62%;}
 




 
  /* Base Style Scope for Premium Dashboard Showcase */
  .premium-dashboard-showcase {
    background-color: #FFFFFF;
    background-image: radial-gradient(rgba(5, 150, 105, 0.015) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    padding-top: 140px;
    padding-bottom: 140px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Soft Background Halo Glow behind Laptop */
  .dashboard-ambient-halo {
    position: absolute;
    width: 500px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(5, 150, 105, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    top: 25%;
    right: 5%;
    animation: halo-pulse 8s ease-in-out infinite alternate;
  }

  .dashboard-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .dashboard-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* Left Side: Dynamic Feature List Cards */
  .feature-row-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .feature-card-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border-radius: 18px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
  }

  .feature-card-premium:hover {
    background: #F8FAFC;
    border-color: rgba(17, 24, 39, 0.04);
  }

  .feature-icon-badge-lux {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #F8FAFC;
    border: 1px solid rgba(17, 24, 39, 0.05);
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feature-card-premium:hover .feature-icon-badge-lux {
    background: #059669 !important;
    color: #FFFFFF !important;
    border-color: #059669 !important;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
    transform: scale(1.04);
  }

  .feature-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 4px;
  }

  .feature-desc-text {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0;
  }

  /* CTA Button & Micro Subtitle */
  .dashboard-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn-dashboard-premium {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-dashboard-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
  }

  .cta-micro-subtitle {
    font-size: 0.725rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-left: 4px;
  }

  /* MacBook Hardware Stage Wrapper */
  .laptop-stage-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
  }

  /* MacBook Device Frame (Ultra-Thin Bezel) */
  .stage-laptop-device {
    filter: drop-shadow(0 35px 70px rgba(17, 24, 39, 0.16));
    animation: macbook-float-slow 6s ease-in-out infinite alternate;
  }

  .laptop-inner-bezel {
    background: #0f172a;
    border-radius: 14px 14px 0 0;
    padding: 8px 8px 10px 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
  }

  .laptop-display-screen {
    aspect-ratio: 16/10;
    background: #090D16;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }

  .laptop-chassis-base {
    height: 8px;
    background: linear-gradient(to bottom, #94a3b8, #475569);
    border-radius: 0 0 14px 14px;
    position: relative;
    border-bottom: 2px solid #334155;
  }

  .laptop-notch-groove {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 4px 4px;
  }

  /* Glassmorphism Floating Cards (Perfect Spatial Offset) */
  .dashboard-glass-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    animation: widget-float 5s ease-in-out infinite alternate;
  }

  /* Pushed further out from laptop frame edges */
  .widget-revenue { top: -6%; left: -12%; animation-delay: 0.2s; }
  .widget-users { top: 2%; right: -10%; animation-delay: 0.8s; }
  .widget-rating { bottom: 12%; left: -14%; animation-delay: 1.4s; }
  .widget-orders { bottom: -6%; right: -8%; animation-delay: 0.5s; }

  .widget-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
  }

  .widget-details h6 {
    margin: 0;
    font-size: 0.775rem;
    font-weight: 700;
    color: #111827;
  }

  .widget-details span {
    font-size: 0.65rem;
    color: #64748B;
    font-weight: 500;
    display: block;
  }

  /* =========================================================================
     Real-Time High-Fidelity UI Layouts (NO GENERIC SCREENSHOT PLACEHOLDERS)
     ========================================================================= */
  .dash-viewport-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    background: #090D16;
    color: #94A3B8;
    font-size: 0.5rem;
  }

  .dash-bezel-sidebar {
    width: 18%;
    background: #05070E;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #10B981;
    font-weight: 700;
    font-size: 0.5rem;
    margin-bottom: 6px;
  }

  .sidebar-node {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 3px;
    color: #475569;
  }

  .sidebar-node.active {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
  }

  .dash-bezel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px;
    overflow: hidden;
  }

  .dash-bezel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 8px;
  }

  .bezel-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .bezel-avatar {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3B82F6;
  }

  /* High fidelity grid metrics inside dashboard viewport */
  .dash-bezel-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
  }

  .bezel-metric-card {
    background: #0D1321;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 4px;
  }

  .bezel-metric-val {
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 1px;
  }

  .dash-bezel-chart-area {
    background: #0D1321;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .svg-bezel-graph {
    width: 100%;
    height: 45px;
  }

  .dash-bezel-table {
    background: #0D1321;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 4px;
  }

  .bezel-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  }

  .bezel-table-row:last-child {
    border-bottom: none;
  }

  .bezel-status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 0.35rem;
  }

  /* Bottom Trust highlight bar */
  .dashboard-trust-row {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 100px;
    padding: 14px 40px;
    margin-top: 80px;
  }

  .trust-pill-node {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .trust-pill-node i {
    color: #059669;
    font-size: 1rem;
  }

  /* Standard Keyframes */
  @keyframes halo-pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.05); opacity: 0.9; }
  }

  @keyframes macbook-float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
  }

  @keyframes widget-float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.02); }
  }

  /* Responsive Constraints */
  @media (max-width: 991.98px) {
    .premium-dashboard-showcase {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .laptop-stage-wrapper {
      max-width: 580px;
      margin: 0 auto 50px;
    }
    .dashboard-glass-widget {
      display: none; /* Breathable setup on responsive layouts */
    }
    .dashboard-trust-row {
      border-radius: 24px;
      padding: 24px;
      margin-top: 50px;
    }
  }

  @media (max-width: 575.98px) {
    .premium-dashboard-showcase {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .laptop-inner-bezel {
      border-radius: 10px 10px 0 0;
      padding: 4px 4px 6px 4px;
    }
    .laptop-chassis-base {
      height: 6px;
      border-radius: 0 0 10px 10px;
    }
  }
 


 

  .premium-dashboard-showcase { padding:90px 0px 0px 0px;}
 

 
  .premium-screens-section {
    background-color: #FFFFFF;
    background-image: radial-gradient(rgba(17, 24, 39, 0.015) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .screens-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .screens-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
  }

  /* Simple Tab Navigation */
  .simple-tab-nav {
    display: inline-flex;
    background: #F1F5F9;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(17, 24, 39, 0.04);
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
  }

  .tab-link-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tab-link-btn.active {
    background: #FFFFFF;
    color: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
  }

  /* Grid Layout for Phones */
  .iphone-stage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 5;
  }

  /* Tab Panel Display States */
  .tab-screens-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .tab-screens-panel.active-panel {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .iphone-showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* iPhone Hardware Shell */
  .bezel-iphone-shell {
    width: 100%;
    max-width: 215px;
   
    animation: phone-float 6s ease-in-out infinite alternate;
  }

  /* Float delays for natural motion */
  .iphone-showcase-wrapper:nth-child(even) .bezel-iphone-shell { animation-delay: 1.5s; }
  .iphone-showcase-wrapper:nth-child(3) .bezel-iphone-shell { animation-delay: 0.8s; }
  .iphone-showcase-wrapper:nth-child(4) .bezel-iphone-shell { animation-delay: 2.2s; }

  .iphone-inner-bezel {
    border-radius: 32px;
    overflow: hidden;
    
  }

  .iphone-viewport {
    aspect-ratio: 9/19.5;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    
  }

  .iphone-viewport img {
    width: 100%;
    height: 100%;
 
    display: block;
  }

  .iphone-notch {
   
  }

  .iphone-showcase-wrapper:hover .bezel-iphone-shell {
    transform: scale(1.05) translateY(-5px);
   
   
  }

  .showcase-label-wrap {
    margin-top: 20px;
    text-align: center;
    max-width: 180px;
  }

  .showcase-screen-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 2px;
  }

  .showcase-screen-desc {
    font-size: 0.725rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 0;
  }

  @keyframes phone-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  @media (max-width: 1199.98px) {
    .iphone-stage-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 575.98px) {
    .premium-screens-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    .iphone-stage-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .simple-tab-nav {
      display: flex;
      flex-direction: column;
      border-radius: 20px;
      padding: 4px;
    }
    .tab-link-btn {
      width: 100%;
      justify-content: center;
    }
  }
 
