    /* ===========================
       CSS CUSTOM PROPERTIES
    =========================== */
    :root {
      --primary: #F8F9FA;
      --accent: #2563EB;
      --cyan: #4F46E5;
      --accent-light: #3B82F6;
      --cyan-light: #6366F1;
      --white: #0F172A; /* Text is now dark */
      --pure-white: #ffffff;
      --gray-100: #334155;
      --gray-200: #475569;
      --gray-400: #64748B;
      --gray-600: #CBD5E1;
      --glass-bg: #FFFFFF;
      --glass-border: rgba(0, 0, 0, 0.08);
      --card-bg: #FFFFFF;
      --shadow-glow: 0 20px 40px rgba(0, 0, 0, 0.06);
      --shadow-cyan: 0 20px 40px rgba(0, 0, 0, 0.06);
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Poppins', sans-serif;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius: 20px;
    }

    /* ===========================
       BASE & RESET
    =========================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-primary);
      background-color: var(--primary);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ===========================
       CUSTOM SCROLLBAR
    =========================== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--primary);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--accent), var(--cyan));
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent-light);
    }

    /* ===========================
       LOADING SCREEN
    =========================== */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--primary);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-logo {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
}

    .loader-bar {
      width: 200px;
      height: 3px;
      background: #ffffff;
      border-radius: 10px;
      overflow: hidden;
    }

    .loader-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      border-radius: 10px;
      animation: loadbar 2s ease forwards;
    }

    @keyframes loadbar {
      from {
        width: 0;
      }

      to {
        width: 100%;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* ===========================
       ANIMATED GRADIENT BLOBS
    =========================== */
    .blob-container {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.12;
      animation: blobFloat 10s ease-in-out infinite;
    }

    .blob-1 {
      width: 600px;
      height: 600px;
      background: var(--accent);
      top: -200px;
      left: -200px;
      animation-delay: 0s;
    }

    .blob-2 {
      width: 500px;
      height: 500px;
      background: var(--cyan);
      top: 50%;
      right: -150px;
      animation-delay: -4s;
    }

    .blob-3 {
      width: 400px;
      height: 400px;
      background: var(--accent-light);
      bottom: -100px;
      left: 40%;
      animation-delay: -7s;
    }

    @keyframes blobFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(30px, -30px) scale(1.05);
      }

      66% {
        transform: translate(-20px, 20px) scale(0.95);
      }
    }

    /* ===========================
       FLOATING PARTICLES
    =========================== */
    .particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
      }
    }

    /* ===========================
       NAVBAR
    =========================== */
    #mainNav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: var(--transition);
      background: transparent;
    }

    #mainNav.scrolled {
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      padding: 12px 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-brand {
      font-family: var(--font-heading);
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--accent);
}

    .navbar-brand span {
      -webkit-text-fill-color: transparent;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.75) !important;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 8px 16px !important;
      border-radius: 8px;
      transition: var(--transition);
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--white) !important;
    }

    .nav-link:hover::after {
      width: 60%;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
      color: var(--white) !important;
      padding: 10px 24px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
      transition: var(--transition) !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 35px rgba(124, 58, 237, 0.6) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .navbar-toggler {
      border: 1px solid var(--glass-border) !important;
      border-radius: 10px !important;
      padding: 8px 12px !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* ===========================
       SECTION BASE STYLES
    =========================== */
    section {
      position: relative;
      z-index: 1;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: var(--accent-light);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-badge i {
      font-size: 0.75rem;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .gradient-text {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}

    .section-subtitle {
      color: var(--gray-400);
      font-size: 1.05rem;
      max-width: 560px;
      line-height: 1.8;
    }

    /* ===========================
       BUTTONS
    =========================== */
    .btn-primary-glow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: var(--white);
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      box-shadow: 0 0 30px rgba(124, 58, 237, 0.5), 0 8px 32px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-primary-glow::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-light), var(--cyan));
      opacity: 0;
      transition: var(--transition);
    }

    .btn-primary-glow:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 50px rgba(124, 58, 237, 0.7), 0 16px 40px rgba(0, 0, 0, 0.4);
      color: var(--white);
    }

    .btn-primary-glow:hover::before {
      opacity: 1;
    }

    .btn-primary-glow span {
      position: relative;
      z-index: 1;
    }

    .btn-primary-glow i {
      position: relative;
      z-index: 1;
    }

    .btn-outline-glow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      padding: 15px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-outline-glow:hover {
      border-color: var(--cyan);
      color: var(--cyan);
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
      transform: translateY(-4px);
    }

    /* ===========================
       GLASS CARD
    =========================== */
    .glass-card {
      background: #ffffff;
      border: 1px solid var(--glass-border);
      border-radius: var(--border-radius);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: var(--transition);
    }

    .glass-card:hover {
      background: #ffffff;
      border-color: rgba(124, 58, 237, 0.4);
      box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
      transform: translateY(-6px);
    }

    /* ===========================
       HERO SECTION
    =========================== */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--cyan-light);
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-bottom: 28px;
      animation: fadeInDown 0.8s ease 0.2s both;
    }

    .hero-tag .dot {
      width: 8px;
      height: 8px;
      background: var(--cyan);
      border-radius: 50%;
      animation: blink 1.5s ease infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .hero-headline {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .hero-sub {
      color: var(--gray-400);
      font-size: 1.15rem;
      line-height: 1.9;
      max-width: 540px;
      margin-bottom: 40px;
      animation: fadeInUp 0.8s ease 0.6s both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease 0.8s both;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 60px;
      animation: fadeInUp 0.8s ease 1s both;
    }

    .hero-stat .num {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      background-clip: text;
    }

    .hero-stat .label {
      color: var(--gray-400);
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* HERO DASHBOARD */
    .hero-visual {
      position: relative;
      animation: fadeInRight 1s ease 0.5s both;
    }

    .dashboard-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      backdrop-filter: blur(20px);
      padding: 24px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    }

    .dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .dash-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray-400);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .dash-badge {
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #10b981;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .metric-row {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }

    .metric-box {
      flex: 1;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      padding: 16px;
      text-align: center;
    }

    .metric-box .m-val {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
      background-clip: text;
    }

    .metric-box .m-lbl {
      font-size: 0.72rem;
      color: var(--gray-400);
      margin-top: 4px;
    }

    .metric-box .m-chg {
      font-size: 0.72rem;
      color: #10b981;
      font-weight: 600;
    }

    /* Mini Bar Chart */
    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
      margin-bottom: 16px;
    }

    .bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: rgba(124, 58, 237, 0.3);
      transition: height 1.5s ease;
      position: relative;
    }

    .bar.active {
      background: linear-gradient(180deg, var(--accent), rgba(124, 58, 237, 0.3));
    }

    .bar.cyan {
      background: linear-gradient(180deg, var(--cyan), rgba(6, 182, 212, 0.3));
    }

    .chart-labels {
      display: flex;
      gap: 6px;
    }

    .chart-labels span {
      flex: 1;
      text-align: center;
      font-size: 0.65rem;
      color: var(--gray-400);
    }

    /* Floating mini cards */
    .float-card {
      position: absolute;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      backdrop-filter: blur(20px);
      padding: 14px 18px;
      animation: floatY 4s ease-in-out infinite;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .float-card-1 {
      top: -30px;
      left: -40px;
      animation-delay: 0s;
    }

    .float-card-2 {
      bottom: -20px;
      right: -30px;
      animation-delay: -2s;
    }

    .float-card-3 {
      top: 50%;
      right: -50px;
      animation-delay: -1s;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .float-card .fc-label {
      font-size: 0.7rem;
      color: var(--gray-400);
    }

    .float-card .fc-val {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--accent);
      background-clip: text;
    }

    .float-card .fc-icon {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    /* Progress bars in dashboard */
    .progress-item {
      margin-bottom: 14px;
    }

    .progress-item .prog-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--gray-400);
      margin-bottom: 6px;
    }

    .prog-bar-wrap {
      height: 6px;
      background: #ffffff;
      border-radius: 10px;
      overflow: hidden;
    }

    .prog-bar-fill {
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      transition: width 2s ease;
      width: 0%;
    }

    /* ===========================
       SERVICES SECTION
    =========================== */
    #services {
      padding: 100px 0;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 24px;
      padding: 36px 28px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
      opacity: 0;
      transition: var(--transition);
    }

    .service-card:hover {
      border-color: rgba(124, 58, 237, 0.5);
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
    }

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

    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .icon-purple {
      background: rgba(124, 58, 237, 0.15);
      color: var(--accent-light);
      border: 1px solid rgba(124, 58, 237, 0.3);
    }

    .icon-cyan {
      background: rgba(6, 182, 212, 0.15);
      color: var(--cyan-light);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }

    .icon-pink {
      background: rgba(236, 72, 153, 0.15);
      color: #f472b6;
      border: 1px solid rgba(236, 72, 153, 0.3);
    }

    .icon-green {
      background: rgba(16, 185, 129, 0.15);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .icon-orange {
      background: rgba(245, 158, 11, 0.15);
      color: #fbbf24;
      border: 1px solid rgba(245, 158, 11, 0.3);
    }

    .icon-blue {
      background: rgba(59, 130, 246, 0.15);
      color: #60a5fa;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .service-card h4 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      color: var(--gray-400);
      font-size: 0.9rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .service-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--accent-light);
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 20px;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateX(-10px);
      transition: var(--transition);
    }

    .service-card:hover .service-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* ===========================
       ABOUT SECTION
    =========================== */
    #about {
      padding: 100px 0;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-image-card {
      background: #ffffff;
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      overflow: hidden;
      position: relative;
    }

    .about-image-inner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 420px;
    }

    .about-globe {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(6, 182, 212, 0.3));
      border: 2px solid rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      animation: rotateGlobe 8s linear infinite;
      box-shadow: 0 0 60px rgba(124, 58, 237, 0.4), inset 0 0 40px rgba(6, 182, 212, 0.2);
    }

    @keyframes rotateGlobe {
      0% {
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.4), inset 0 0 40px rgba(6, 182, 212, 0.2);
      }

      50% {
        box-shadow: 0 0 80px rgba(6, 182, 212, 0.5), inset 0 0 40px rgba(124, 58, 237, 0.3);
      }

      100% {
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.4), inset 0 0 40px rgba(6, 182, 212, 0.2);
      }
    }

    .orbit {
      position: absolute;
      border-radius: 50%;
      border: 1px dashed rgba(255, 255, 255, 0.15);
      animation: orbit linear infinite;
    }

    .orbit-1 {
      width: 280px;
      height: 280px;
      animation-duration: 6s;
    }

    .orbit-2 {
      width: 350px;
      height: 350px;
      animation-duration: 10s;
      animation-direction: reverse;
    }

    @keyframes orbit {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .orbit-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--cyan);
      top: -5px;
      left: 50%;
      margin-left: -5px;
      box-shadow: 0 0 10px var(--cyan);
    }

    .orbit-dot-2 {
      background: var(--accent-light);
      box-shadow: 0 0 10px var(--accent-light);
    }

    .stat-badge-float {
      position: absolute;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 16px 20px;
      backdrop-filter: blur(20px);
      animation: floatY 4s ease-in-out infinite;
    }

    .stat-badge-float:nth-child(1) {
      top: 30px;
      right: -20px;
      animation-delay: 0s;
    }

    .stat-badge-float:nth-child(2) {
      bottom: 50px;
      left: -20px;
      animation-delay: -2s;
    }

    .stat-badge-float .sb-val {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
      background-clip: text;
    }

    .stat-badge-float .sb-lbl {
      font-size: 0.75rem;
      color: var(--gray-400);
    }

    /* Counter Section */
    .counters-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .counter-item {
      flex: 1;
      min-width: 120px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 24px 16px;
      text-align: center;
    }

    .counter-num {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      background-clip: text;
    }

    .counter-lbl {
      font-size: 0.8rem;
      color: var(--gray-400);
      margin-top: 4px;
    }

    /* ===========================
       PORTFOLIO SECTION
    =========================== */
    #portfolio {
      padding: 100px 0;
    }

    .portfolio-filter {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 48px;
    }

    .filter-btn {
      padding: 10px 24px;
      border-radius: 50px;
      border: 1px solid var(--glass-border);
      background: transparent;
      color: var(--gray-400);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-color: transparent;
      color: var(--white);
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    }

    .portfolio-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
      border-color: rgba(124, 58, 237, 0.4);
    }

    .portfolio-img {
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .portfolio-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      transition: transform 0.5s ease;
    }

    .portfolio-card:hover .portfolio-img-inner {
      transform: scale(1.1);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.9) 100%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }

    .portfolio-card:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-overlay-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .portfolio-card:hover .portfolio-overlay-btn {
      transform: translateY(0);
    }

    .portfolio-info {
      padding: 20px 24px;
    }

    .portfolio-info h5 {
      font-family: var(--font-heading);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .portfolio-info p {
      color: var(--gray-400);
      font-size: 0.85rem;
    }

    .portfolio-tag {
      display: inline-block;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: var(--accent-light);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.73rem;
      font-weight: 600;
      margin-top: 10px;
    }

    /* ===========================
       TESTIMONIALS
    =========================== */
    #testimonials {
      padding: 100px 0;
    }

    .testimonial-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 24px;
      padding: 36px;
      position: relative;
      transition: var(--transition);
    }

    .testimonial-card:hover {
      border-color: rgba(124, 58, 237, 0.4);
      box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
      transform: translateY(-4px);
    }

    .quote-icon {
      font-size: 2.5rem;
      color: var(--accent);
      background-clip: text;
      margin-bottom: 20px;
      display: block;
    }

    .testimonial-text {
      color: #334155;
      line-height: 1.8;
      font-size: 0.95rem;
      font-style: italic;
      margin-bottom: 28px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
      border: 2px solid rgba(0, 0, 0, 0.08);
    }

    .author-info .author-name {
      font-weight: 700;
      font-size: 0.95rem;
    }

    .author-info .author-role {
      font-size: 0.8rem;
      color: var(--gray-400);
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 18px;
    }

    .stars i {
      color: #fbbf24;
      font-size: 0.85rem;
    }

    /* Testimonial Slider Dots */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ffffff;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }

    .slider-dot.active {
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      width: 28px;
      border-radius: 5px;
    }

    /* ===========================
       WHY CHOOSE US
    =========================== */
    #why {
      padding: 100px 0;
    }

    .why-card {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      transition: var(--transition);
    }

    .why-card:hover {
      border-color: rgba(124, 58, 237, 0.4);
      background: rgba(124, 58, 237, 0.06);
      transform: translateX(6px);
    }

    .why-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .why-card h5 {
      font-family: var(--font-heading);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-card p {
      color: var(--gray-400);
      font-size: 0.88rem;
      line-height: 1.7;
    }

    .why-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-center-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 28px;
      padding: 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .why-center-icon {
      font-size: 4rem;
      color: var(--accent);
      background-clip: text;
      display: block;
      margin-bottom: 16px;
    }

    .why-center-card h3 {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.5rem;
    }

    .why-center-card p {
      color: var(--gray-400);
      font-size: 0.9rem;
      margin-top: 10px;
    }

    /* ===========================
       CONTACT SECTION
    =========================== */
    #contact {
      padding: 100px 0;
    }

    .contact-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 28px;
      padding: 48px;
    }

    .form-label {
      color: var(--gray-400);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .form-control,
    .form-select {
      background: #f8f9fa !important;
      border: 1px solid rgba(0, 0, 0, 0.08) !important;
      color: var(--white) !important;
      border-radius: 12px !important;
      padding: 14px 18px !important;
      font-size: 0.95rem !important;
      transition: var(--transition) !important;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(124, 58, 237, 0.6) !important;
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
      background: #f8f9fa !important;
      outline: none !important;
    }

    .form-control::placeholder {
      color: #94a3b8 !important;
    }

    textarea.form-control {
      min-height: 140px;
      resize: none;
    }

    .contact-info-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      padding: 28px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: var(--transition);
    }

    .contact-info-card:hover {
      border-color: rgba(124, 58, 237, 0.3);
      background: rgba(124, 58, 237, 0.05);
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-info-card h6 {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .contact-info-card p {
      color: var(--gray-400);
      font-size: 0.88rem;
      margin: 0;
    }

    /* Form Success State */
    .form-success {
      text-align: center;
      padding: 40px 20px;
      display: none;
    }

    .form-success.show {
      display: block;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.15);
      border: 2px solid rgba(16, 185, 129, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #34d399;
      margin: 0 auto 20px;
      animation: successPop 0.5s ease;
    }

    @keyframes successPop {
      0% {
        transform: scale(0);
      }

      70% {
        transform: scale(1.2);
      }

      100% {
        transform: scale(1);
      }
    }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      background: rgba(0, 0, 0, 0.3);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      padding: 70px 0 30px;
      position: relative;
      z-index: 1;
    }

    .footer-logo {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--accent);
}

    .footer-desc {
      color: var(--gray-400);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-400);
      font-size: 1rem;
      text-decoration: none;
      transition: var(--transition);
    }

    .social-btn:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-color: transparent;
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    }

    .footer-heading {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--gray-400);
      text-decoration: none;
      font-size: 0.88rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: flex-start;
      line-height: 1.5;
      position: relative;
    }

    /* Arrow only for plain nav links, not icon links */
    .footer-links a:not(.has-icon) {
      padding-left: 0;
    }

    .footer-links a:not(.has-icon)::before {
      content: '→';
      position: absolute;
      left: -15px;
      font-size: 0.75rem;
      opacity: 0;
      transition: var(--transition);
    }

    .footer-links a:not(.has-icon):hover {
      color: var(--accent-light);
      transform: translateX(15px);
    }

    .footer-links a:not(.has-icon):hover::before {
      opacity: 1;
    }

    .footer-links a.has-icon {
      gap: 10px;
    }

    .footer-links a.has-icon:hover {
      color: var(--accent-light);
    }

    .footer-links a .fa-fw {
      flex-shrink: 0;
      margin-top: 3px;
      font-size: 0.8rem;
    }

    .footer-divider {
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      margin: 40px 0 24px;
    }

    .footer-copyright {
      color: var(--gray-400);
      font-size: 0.85rem;
    }

    .footer-copyright span {
      color: var(--accent);
      background-clip: text;
      font-weight: 600;
    }

    /* ===========================
       SCROLL REVEAL ANIMATIONS
    =========================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    .delay-5 {
      transition-delay: 0.5s;
    }

    .delay-6 {
      transition-delay: 0.6s;
    }

    /* ===========================
       KEYFRAME HELPERS
    =========================== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ===========================
       BACK TO TOP
    =========================== */
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      border: none;
      color: var(--white);
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
      transition: var(--transition);
      opacity: 0;
      transform: translateY(20px);
      z-index: 999;
    }

    #backToTop.show {
      opacity: 1;
      transform: translateY(0);
    }

    #backToTop:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 35px rgba(124, 58, 237, 0.7);
    }

    /* ===========================
       MISC HELPERS
    =========================== */
    .text-gradient {
      color: var(--accent);
      background-clip: text;
    }

    .divider-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      border-radius: 3px;
      margin: 16px 0 28px;
    }

    .glow-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 10px var(--cyan);
      margin-right: 8px;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .hero-visual {
        margin-top: 60px;
      }

      .float-card-1,
      .float-card-2,
      .float-card-3 {
        display: none;
      }

      .about-image-wrap .stat-badge-float {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .hero-headline {
        font-size: 2.5rem;
        letter-spacing: -1px;
      }

      .hero-stats {
        gap: 24px;
      }

      .contact-card {
        padding: 28px 20px;
      }

      .testimonial-card {
        padding: 24px;
      }
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 13px;
      font-size: 0.88rem;
      color: #334155;
      line-height: 1.5;
    }
    .pricing-features li i {
      margin-top: 2px;
      flex-shrink: 0;
    }


/* ============================================================ */
/*  MOBILE RESPONSIVENESS OVERRIDES                             */
/* ============================================================ */

/* Tablets & Small Desktop */
@media (max-width: 991px) {
  .hero-headline {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .bento-large, .bento-medium, .bento-half {
    grid-column: span 12;
  }
  .float-card {
    display: none !important;
  }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  section {
    padding: 60px 0 !important;
  }
  .navbar-collapse {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  /* Give the entire navbar a solid background when the menu is toggled open on mobile */
  #mainNav:has(.navbar-collapse.show) {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 1rem;
    padding: 0 10px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-stats {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .dashboard-card {
    padding: 20px;
    border-radius: 16px;
    max-width: 100%;
    margin-top: 20px;
    transform: none !important;
  }
  .metric-row {
    flex-direction: column;
    gap: 15px;
  }
  .pricing-card {
    padding: 24px;
    margin-bottom: 20px;
  }
  .pf-body-split {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-chart-wrap {
    margin-top: 15px;
  }
  .footer-col {
    margin-bottom: 30px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-glow, .btn-outline-glow {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Mobile Footer Centering */
@media (max-width: 991px) {
  footer, .footer-col, .footer-desc, .footer-heading, .footer-copyright {
    text-align: center !important;
  }
  .footer-logo {
    display: block !important;
    text-align: center !important;
  }
  .footer-social {
    justify-content: center !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-links li {
    text-align: center !important;
  }
  .footer-links a:not(.has-icon):hover {
    transform: none !important;
  }
  .footer-links a:not(.has-icon):hover::before {
    display: none !important;
  }
  footer .d-flex.justify-content-between {
    justify-content: center !important;
    flex-direction: column !important;
  }
  footer .mt-4 > div {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Disable AI Background Elements */
.blob-container, .particles, .hero-grid-overlay, .blob { display: none !important; }
