:root {
      --brand-primary:#1e40af;
      --brand-primary-light:#3b82f6;
      --brand-primary-dark:#1e3a8a;
      --brand-secondary:#0f172a;
      --brand-secondary-light:#1e293b;
      --brand-secondary-dark:#020617;
      --accent:#3b82f6;
      --dark:#0f172a;
      --muted:#64748b;
      --light:#f8fafc;
      --gradient-primary: linear-gradient(135deg,#1e40af,#3b82f6);
      --gradient-secondary: linear-gradient(135deg,#0f172a,#1e293b);
      --gradient-dark: linear-gradient(135deg,#0f172a 0%,#1e293b 50%,#0f172a 100%);
      --brand-primary1: #1e40af;
      --logo-orange: #FF750F;
    }

    * {
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body {
      font-family:'Poppins',sans-serif;
      color:#334155;
      line-height:1.5;
      overflow-x:hidden;
      font-weight:400;
      font-size:0.875rem;
    }
    
    * {
      font-family:'Poppins',sans-serif;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    p, li, span, a, div {
      font-size: 0.875rem;
    }
    
    .brand-color {
    color: #005f55 !important;
}

    /* Professional Navbar */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      padding: 10px 0;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      position: relative;
    }

    .navbar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .navbar.scrolled {
      position: fixed;
      top: 0;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 8px 0;
    }

    .navbar.scrolled::before {
      opacity: 1;
    }

    .navbar-accent {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brand-primary) 20%, 
        var(--brand-primary-light) 50%, 
        var(--brand-primary) 80%, 
        transparent 100%);
      opacity: 0.3;
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% { opacity: 0.3; transform: translateX(-100%); }
      50% { opacity: 0.6; transform: translateX(100%); }
    }

    .custom-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar-brand {
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .navbar-brand img {
      height: 50px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 2px 8px rgba(30, 64, 175, 0.15));
    }

    /* .navbar-brand:hover img {
      transform: scale(1.08) rotate(-3deg);
      filter: drop-shadow(0 4px 12px rgba(30, 64, 175, 0.25));
    } */

    .navbar-brand::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--brand-primary);
      transition: width 0.3s ease;
    }

    .navbar-brand:hover::after {
      width: 100%;
    }

    .nav-link {
      font-weight: 600;
      color: var(--dark) !important;
      margin: 0 4px;
      padding: 6px 12px !important;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      font-size: 0.8rem;
      letter-spacing: 0.01em;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.05));
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover {
      color: var(--brand-primary) !important;
      transform: translateY(-1px);
    }

    .nav-link:hover::before {
      opacity: 1;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      width: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 70%;
    }

    /* Professional Dropdown */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      padding: 8px 6px;
      min-width: 220px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
      animation: fadeInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      pointer-events: none;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: all;
    }

    .dropdown-item {
      color: var(--dark);
      padding: 8px 16px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      font-weight: 500;
      border-radius: 8px;
      margin: 3px 6px;
      display: flex;
      align-items: center;
      font-size: 0.8rem;
    }

    .dropdown-item i {
      font-size: 1.1rem;
      width: 20px;
      transition: transform 0.3s ease;
    }

    .dropdown-item:hover {
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.08));
      color: var(--brand-primary);
      transform: translateX(3px);
      padding-left: 20px;
    }

    .dropdown-item:hover i {
      transform: scale(1.15);
      color: var(--brand-primary);
    }

    .dropdown-item::before {
      display: none;
    }

    .dropdown-toggle::after {
      display: none;
    }

    .dropdown-toggle {
      position: relative;
      padding-right: 25px !important;
    }

    .dropdown-toggle::after {
      content: '\f107';
      font-family: 'Bootstrap Icons';
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .dropdown:hover .dropdown-toggle::after {
      transform: translateY(-50%) rotate(180deg);
      color: var(--brand-primary);
    }

    /* Professional Buttons */
    .btn-brand {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      color: white;
      border: none;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .btn-brand::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-brand i {
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .btn-brand span {
      position: relative;
      z-index: 1;
    }

    .btn-brand:hover {
      color: white;
      box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
      transform: translateY(-2px);
    }

    .btn-brand:hover::before {
      opacity: 1;
    }

    .btn-brand:hover i {
      transform: translateX(2px);
    }

    .btn-brand:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
    }

    .btn-outline-brand {
      background: transparent;
      color: var(--brand-primary);
      border: 2px solid var(--brand-primary);
      border-radius: 6px;
      padding: 10px 28px;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .btn-outline-brand:hover {
      background: var(--brand-primary);
      color: white;
      transform: translateY(-1px);
    }

    .btn-light {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--brand-primary);
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .btn-light:hover {
      background: var(--brand-primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
      border-color: var(--brand-primary);
    }

    .mobile-menu-btn {
      font-size: 1.5rem;
      padding: 10px 16px;
    }

        /* Professional Hero Section */
        .hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            display: none;
        }

        .hero-shape {
            display: none;
        }

        .hero-shape-2 {
            display: none;
        }

        /* Additional animated shapes */
        .floating-shape {
            display: none;
        }

        .particle {
            display: none;
        }

        .hero h1 {
            font-weight: 700;
            letter-spacing: -0.02em;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--light);
            line-height: 1.2;
        }

        .hero p {
            color: rgba(248, 250, 252, 0.8);
            max-width: 600px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .hero-image:hover img {
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
        }

        .btn-light {
            background: var(--brand-primary);
            color: var(--light);
            border: none;
            font-weight: 600;
            border-radius: 6px;
        }

        .btn-light:hover {
            background: var(--brand-primary-dark);
            color: var(--light);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .btn-outline-brand {
            color: white;
            border-color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            border-radius: 6px;
        }

        .btn-outline-brand:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
            color: white;
            transform: translateY(-1px);
        }

        /* Animation classes */
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.5; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        @keyframes drift {
            0% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(20px) translateY(-10px); }
            50% { transform: translateX(-10px) translateY(20px); }
            75% { transform: translateX(-20px) translateY(-5px); }
            100% { transform: translateX(0) translateY(0); }
        }

        @keyframes glow {
            0% { box-shadow: 0 0 5px rgba(239, 81, 38, 0.3); }
            50% { box-shadow: 0 0 20px rgba(239, 81, 38, 0.5); }
            100% { box-shadow: 0 0 5px rgba(239, 81, 38, 0.3); }
        }

        /* Compact Hero Design */
        .hero-compact {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        .hero-badge-compact {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(248, 250, 252, 0.9);
        }

        .hero-badge-compact i {
            color: #10b981;
            font-size: 0.85rem;
        }

        .hero-title-compact {
            font-weight: 700;
            letter-spacing: -0.02em;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--light);
            line-height: 1.2;
        }

        .hero-title-compact .text-gradient {
            background: linear-gradient(135deg, #60a5fa, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description-compact {
            color: rgba(248, 250, 252, 0.8);
            font-size: 1rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            max-width: 550px;
        }

        .hero-trust-compact {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 1rem;
        }

        .hero-trust-compact span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: rgba(248, 250, 252, 0.85);
        }

        .hero-trust-compact i {
            color: #10b981;
            font-size: 0.9rem;
        }

        .hero-cta-compact {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-hero-compact-primary {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            border: none;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            text-decoration: none;
        }

        .btn-hero-compact-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
            color: white;
        }

        .btn-hero-compact-primary i {
            transition: transform 0.3s ease;
        }

        .btn-hero-compact-primary:hover i {
            transform: translateX(3px);
        }

        .btn-hero-compact-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-decoration: none;
        }

        .btn-hero-compact-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.35);
            color: white;
            transform: translateY(-2px);
        }

        .hero-image-compact {
            position: relative;
            z-index: 1;
        }

        .hero-image-wrapper-compact {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .hero-image-wrapper-compact:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
        }

        .hero-image-wrapper-compact img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Full Width Image Hero with Animations */
        .hero-full-image {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0;
        }

        .hero-full-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.3) 50%, rgba(15, 23, 42, 0.4) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: zoomIn 20s ease-in-out infinite alternate;
        }

        @keyframes zoomIn {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
            z-index: 1;
        }

        .hero-full-image .container {
            position: relative;
            z-index: 2;
            padding: 80px 20px;
        }

        /* Animated Badge */
        .hero-badge-animated {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            background: rgba(59, 130, 246, 0.2);
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            margin-bottom: 1.2rem;
            animation: fadeInDown 1s ease-out, float 3s ease-in-out infinite 1s;
        }

        .hero-badge-animated i {
            color: #3b82f6;
            font-size: 1.3rem;
        }

        .hero-badge-animated span {
            color: rgba(255, 255, 255, 1);
            font-size: 1.15rem;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        /* Animated Title */
        .hero-title-animated {
            font-weight: 800;
            letter-spacing: -0.03em;
            font-size: 5rem;
            margin-bottom: 1.2rem;
            color: var(--light);
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .hero-title-line-1 {
            display: block;
            animation: slideInLeft 1s ease-out;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .hero-title-line-2 {
            display: block;
            animation: slideInRight 1s ease-out 0.3s both;
            font-size: 2.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .text-gradient-animated {
            background: linear-gradient(135deg, #60a5fa, #93c5fd, #60a5fa);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s linear infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Animated Description */
        .hero-description-animated {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.5s both;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animated Trust Indicators */
        .hero-trust-animated {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 1.8rem;
        }

        .trust-item-animated {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            color: rgba(255, 255, 255, 1);
            font-size: 1.15rem;
            font-weight: 600;
            animation: fadeInScale 0.8s ease-out both;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        .trust-item-animated:nth-child(1) { animation-delay: 0.6s; }
        .trust-item-animated:nth-child(2) { animation-delay: 0.7s; }
        .trust-item-animated:nth-child(3) { animation-delay: 0.8s; }

        .trust-item-animated i {
            color: #10b981;
            font-size: 1.2rem;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Animated CTA Buttons */
        .hero-cta-animated {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .btn-hero-animated-primary {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            border: none;
            font-weight: 600;
            border-radius: 12px;
            padding: 12px 28px;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            text-decoration: none;
            animation: fadeInUp 1s ease-out 0.9s both;
            position: relative;
            overflow: hidden;
        }

        .btn-hero-animated-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-hero-animated-primary:hover::before {
            left: 100%;
        }

        .btn-hero-animated-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
            color: white;
        }

        .btn-hero-animated-primary i {
            transition: transform 0.3s ease;
        }

        .btn-hero-animated-primary:hover i {
            transform: translateX(5px);
        }

        .btn-hero-animated-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-weight: 600;
            border-radius: 12px;
            padding: 12px 28px;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            text-decoration: none;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .btn-hero-animated-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        /* Scroll Indicator */
        .hero-scroll-animated {
            margin-top: 1.5rem;
        }

        .scroll-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: rgba(248, 250, 252, 0.7);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1.1s both;
        }

        .scroll-link:hover {
            color: rgba(248, 250, 252, 0.9);
        }

        .scroll-link span {
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .scroll-arrow {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(248, 250, 252, 0.3);
            border-radius: 50%;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Floating Particles */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.3);
            animation: floatParticle 15s infinite ease-in-out;
        }

        .particle-1 {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle-2 {
            width: 12px;
            height: 12px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .particle-3 {
            width: 6px;
            height: 6px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        .particle-4 {
            width: 10px;
            height: 10px;
            top: 40%;
            left: 70%;
            animation-delay: 6s;
        }

        .particle-5 {
            width: 8px;
            height: 8px;
            top: 10%;
            left: 50%;
            animation-delay: 8s;
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translate(30px, -30px) scale(1.2);
                opacity: 0.5;
            }
            50% {
                transform: translate(-20px, 20px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translate(20px, 30px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* ============================================
           MODERN HERO ENHANCEMENTS
           ============================================ */

        /* Enhanced Hero Section */
        .hero-modern {
            position: relative;
            overflow: hidden;
        }

        /* Gradient Overlay Enhancement */
        .hero-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
            z-index: 1;
            animation: gradientPulse 8s ease-in-out infinite;
        }

        @keyframes gradientPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Grid Pattern Background */
        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            opacity: 0.5;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Modern Badge Enhancement */
        .hero-badge-modern {
            position: relative;
            overflow: hidden;
            background: rgba(59, 130, 246, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(59, 130, 246, 0.5);
        }

        .badge-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
            border-radius: 50%;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .badge-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Modern Title Enhancement */
        .hero-title-modern {
            position: relative;
        }

        .hero-title-modern .hero-title-line-1,
        .hero-title-modern .hero-title-line-2 {
            display: inline-block;
            position: relative;
        }

        .text-gradient-modern {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 25%, #8b5cf6 50%, #a78bfa 75%, #60a5fa 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftModern 4s linear infinite;
            position: relative;
            display: inline-block;
        }

        .text-gradient-modern::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #60a5fa, #8b5cf6, #60a5fa);
            background-size: 200% auto;
            border-radius: 2px;
            animation: gradientShiftModern 3s linear infinite;
            opacity: 0.6;
        }

        @keyframes gradientShiftModern {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* Modern Description */
        .hero-description-modern {
            position: relative;
            padding: 0 20px;
        }

        /* Modern Trust Items */
        .trust-item-modern {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .trust-item-modern:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(16, 185, 129, 0.5);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
        }

        .trust-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .trust-item-modern:hover .trust-icon-wrapper {
            transform: rotate(360deg) scale(1.2);
        }

        /* Modern CTA Buttons */
        .hero-cta-modern {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 2.5rem;
            margin-bottom: 3rem;
        }

        .btn-hero-modern-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            border-radius: 12px;
            border: none;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                        0 0 0 0 rgba(59, 130, 246, 0.5);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        .btn-hero-modern-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5),
                        0 0 0 8px rgba(59, 130, 246, 0.1);
        }

        .btn-hero-modern-primary:active {
            transform: translateY(-1px);
        }

        .btn-hero-modern-primary .btn-icon {
            transition: transform 0.3s ease;
        }

        .btn-hero-modern-primary:hover .btn-icon {
            transform: translateX(5px);
        }

        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 2.5s infinite;
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                            0 0 0 0 rgba(59, 130, 246, 0.5);
            }
            50% {
                box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                            0 0 0 4px rgba(59, 130, 246, 0.2);
            }
        }

        .btn-hero-modern-secondary {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-hero-modern-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-hero-modern-secondary .btn-icon {
            transition: transform 0.3s ease;
        }

        .btn-hero-modern-secondary:hover .btn-icon {
            transform: scale(1.2);
        }

        /* Scroll Indicator */
        .hero-scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-top: 3rem;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .hero-scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-mouse {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            position: relative;
            animation: mouseFloat 2s ease-in-out infinite;
        }

        @keyframes mouseFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        .scroll-wheel {
            width: 4px;
            height: 10px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: wheelScroll 2s ease-in-out infinite;
        }

        @keyframes wheelScroll {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            50% { opacity: 0.5; transform: translateX(-50%) translateY(15px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .scroll-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: textFade 2s ease-in-out infinite;
        }

        @keyframes textFade {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Enhanced Particles */
        .hero-particles-modern {
            z-index: 1;
        }

        .particle-modern {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0) 70%);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
            animation: particleFloatModern 20s infinite ease-in-out;
        }

        .particle-6 {
            width: 10px;
            height: 10px;
            top: 30%;
            left: 40%;
            animation-delay: 1s;
        }

        .particle-7 {
            width: 14px;
            height: 14px;
            top: 70%;
            left: 60%;
            animation-delay: 3s;
        }

        .particle-8 {
            width: 6px;
            height: 6px;
            top: 50%;
            left: 90%;
            animation-delay: 5s;
        }

        @keyframes particleFloatModern {
            0%, 100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
                opacity: 0.4;
            }
            25% {
                transform: translate(40px, -40px) scale(1.3) rotate(90deg);
                opacity: 0.7;
            }
            50% {
                transform: translate(-30px, 30px) scale(0.7) rotate(180deg);
                opacity: 0.5;
            }
            75% {
                transform: translate(30px, 40px) scale(1.2) rotate(270deg);
                opacity: 0.6;
            }
        }

        /* Animated Shapes */
        .hero-shapes-modern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            filter: blur(40px);
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation: shapeFloat1 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -200px;
            animation: shapeFloat2 20s ease-in-out infinite;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            top: 50%;
            right: 10%;
            animation: shapeFloat3 18s ease-in-out infinite;
        }

        @keyframes shapeFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 100px) scale(1.2); }
        }

        @keyframes shapeFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-80px, -80px) scale(1.1); }
        }

        @keyframes shapeFloat3 {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            50% { transform: translate(-50px, 50px) scale(1.15) rotate(180deg); }
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-compact {
                padding: 60px 0 50px;
            }

            .hero-title-compact {
                font-size: 2rem;
            }

            .hero-description-compact {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 992px) {
            .hero-full-image {
                min-height: 85vh;
            }

            .hero-full-image .container {
                padding: 60px 20px;
            }

            .hero-title-animated {
                font-size: 4rem;
            }

            .hero-description-animated {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }

            .hero-compact {
                padding: 50px 0 40px;
            }

            .hero-title-compact {
                font-size: 1.75rem;
                margin-bottom: 0.8rem;
            }

            .hero-description-compact {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .hero-trust-compact {
                gap: 12px;
                margin-bottom: 0.8rem;
            }

            .hero-trust-compact span {
                font-size: 0.8rem;
            }

            .hero-cta-compact {
                flex-direction: column;
            }

            /* Modern Hero Responsive Styles */
            .hero-title-modern {
                font-size: 3rem !important;
            }

            .hero-title-modern .hero-title-line-1,
            .hero-title-modern .hero-title-line-2 {
                font-size: 2.6rem;
            }

            .hero-description-modern {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .hero-badge-modern {
                padding: 6px 14px;
                font-size: 1rem;
            }

            .badge-icon-wrapper {
                width: 24px;
                height: 24px;
            }

            .hero-trust-modern {
                flex-direction: column;
                gap: 12px;
            }

            .trust-item-modern {
                padding: 10px 20px;
                font-size: 1rem;
            }

            .hero-cta-modern {
                flex-direction: column;
                gap: 15px;
                margin-top: 2rem;
            }

            .btn-hero-modern-primary,
            .btn-hero-modern-secondary {
                width: 100%;
                justify-content: center;
                padding: 14px 28px;
                font-size: 1.1rem;
            }

            .hero-scroll-indicator {
                margin-top: 2rem;
            }

            .scroll-mouse {
                width: 24px;
                height: 40px;
            }

            .scroll-text {
                font-size: 0.75rem;
            }

            .shape-1,
            .shape-2,
            .shape-3 {
                opacity: 0.5;
            }

            .hero-grid-pattern {
                background-size: 30px 30px;
            }

            .btn-hero-compact-primary,
            .btn-hero-compact-secondary {
                width: 100%;
                justify-content: center;
            }

            /* Full Image Hero Mobile */
            .hero-full-image {
                min-height: 80vh;
            }

            .hero-full-image .container {
                padding: 50px 20px;
            }

            .hero-title-animated {
                font-size: 3rem;
            }

            .hero-title-line-1
            .hero-title-line-2 {
                font-size: 2.6rem;
            }

            .hero-description-animated {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .hero-trust-animated {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 2rem;
            }

            .hero-cta-animated {
                flex-direction: column;
                gap: 12px;
            }

            .btn-hero-animated-primary,
            .btn-hero-animated-secondary {
                width: 100%;
                justify-content: center;
            }
        }
    /* Section Styles */
    section {
      padding: 50px 0;
      position: relative;
    }

    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--dark);
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: var(--brand-primary);
      bottom: -8px;
      left: 0;
      border-radius: 2px;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 0.9rem;
      font-weight: 400;
    }

    /* Professional Cards */
    .card {
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      overflow: hidden;
      background: white;
      height: 100%;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .card-icon {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      background: rgba(30, 64, 175, 0.1);
      color: var(--brand-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.75rem;
      transition: all 0.3s ease;
    }

    .card:hover .card-icon {
      background: var(--logo-orange);
      color: white;
    }

    .card-title {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .card-img-top {
      height: 220px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .card:hover .card-img-top {
      transform: scale(1.02);
    }

    /* Modern Services Section */
    .services-modern {
      padding: 50px 0;
      background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
      position: relative;
    }

    .section-label {
      display: inline-block;
      padding: 6px 16px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 50px;
      color: var(--brand-primary);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }

    .section-title-modern {
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      color: var(--dark);
      letter-spacing: -0.02em;
    }

    .section-subtitle-modern {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Modern Service Cards */
    .service-card-modern {
      position: relative;
      background: #ffffff;
      border-radius: 16px;
      padding: 1.5rem;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      text-align: center;
    }

    .service-card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border-color: rgba(59, 130, 246, 0.2);
    }

    .service-card-modern:hover::before {
      transform: scaleX(1);
    }

    .service-card-icon-wrapper {
      position: relative;
      display: inline-block;
      margin: 0 auto 1.5rem auto;
      text-align: center;
    }

    .service-card-icon {
      position: relative;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
      border-radius: 14px;
      color: var(--brand-primary);
      font-size: 1.6rem;
      z-index: 2;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card-icon-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
      border-radius: 14px;
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
    }

    .service-card-modern:hover .service-card-icon {
      background: linear-gradient(135deg, #3b82f6, #6366f1);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .service-card-modern:hover .service-card-icon-bg {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.3);
    }

    .service-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--dark);
      line-height: 1.3;
    }

    .service-card-description {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .service-card-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }

    .service-card-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.6rem;
      transition: all 0.3s ease;
    }

    .service-card-features li i {
      color: #10b981;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .service-card-modern:hover .service-card-features li {
      color: var(--dark);
      transform: translateX(5px);
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      color: var(--brand-primary);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .service-card-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--brand-primary);
      transition: width 0.3s ease;
    }

    .service-card-link:hover {
      color: var(--brand-primary-light);
    }

    .service-card-link:hover::after {
      width: 100%;
    }

    .service-card-link i {
      transition: transform 0.3s ease;
    }

    .service-card-link:hover i {
      transform: translateX(5px);
    }

    .service-card-hover-effect {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(99, 102, 241, 0.03));
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      border-radius: 20px;
    }

    .service-card-modern:hover .service-card-hover-effect {
      opacity: 1;
    }

    /* Responsive Service Cards */
    @media (max-width: 768px) {
      .section-title-modern {
        font-size: 2.2rem;
      }

      .section-subtitle-modern {
        font-size: 1rem;
      }

      .service-card-modern {
        padding: 2rem;
      }

      .service-card-title {
        font-size: 1.25rem;
      }

      .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
      }
    }

    /* Fancy Process Section */
    #process {
      padding: 50px 0;
      background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    #process::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .process-timeline {
      position: relative;
    }

    .process-card {
      background: white;
      border-radius: 12px;
      padding: 1.25rem;
      height: 100%;
      position: relative;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      overflow: visible;
    }

    .process-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .process-number-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      height: 80px;
      padding: 0 0.5rem;
    }

    .process-number {
      font-size: 4rem;
      font-weight: 900;
      color: rgba(30, 64, 175, 0.08);
      line-height: 1;
      z-index: 1;
      transition: all 0.4s ease;
    }

    .process-card:hover .process-number {
      color: rgba(30, 64, 175, 0.12);
      transform: scale(1.1);
    }

    .process-icon-wrapper {
      position: relative;
      z-index: 2;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .process-card:hover .process-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      background: var(--logo-orange);
      box-shadow: 0 12px 32px rgba(255, 117, 15, 0.4);
    }

    .process-icon-wrapper::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
      filter: blur(8px);
    }

    .process-card:hover .process-icon-wrapper::before {
      opacity: 0.5;
      background: var(--logo-orange);
    }

    .process-content {
      text-align: center;
    }

    .process-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
    }

    .process-card:hover .process-title {
      color: var(--brand-primary);
    }

    .process-description {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .process-features {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .process-feature-tag {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(30, 64, 175, 0.08);
      color: var(--brand-primary);
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .process-card:hover .process-feature-tag {
      background: rgba(30, 64, 175, 0.15);
      transform: translateY(-2px);
    }

    .process-connector {
      position: absolute;
      top: 50%;
      right: -20px;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, rgba(30, 64, 175, 0.3), rgba(30, 64, 175, 0.1));
      transform: translateY(-50%);
      z-index: 0;
      display: none;
    }

    .process-connector::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid rgba(30, 64, 175, 0.3);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }

    @media (min-width: 992px) {
      .process-connector {
        display: block;
      }

      .process-card:last-child .process-connector {
        display: none;
      }
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .process-card {
        margin-bottom: 2rem;
      }

      .process-number {
        font-size: 3.5rem;
      }

      .process-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }
    }

    /* Advanced Testimonials */
    .testimonials-section {
      background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
      position: relative;
      overflow: hidden;
      padding: 50px 0;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 10% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .testimonial-card-advanced {
      background: white;
      border-radius: 20px;
      padding: 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      height: 100%;
      position: relative;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .testimonial-card-advanced:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .testimonial-card-header {
      padding: 1.25rem 1.25rem 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
    }

    .testimonial-rating-advanced {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .testimonial-rating-advanced i {
      color: #fbbf24;
      font-size: 1.1rem;
      transition: transform 0.3s ease;
    }

    .testimonial-card-advanced:hover .testimonial-rating-advanced i {
      transform: scale(1.1);
    }

    .rating-text {
      font-weight: 700;
      color: var(--dark);
      font-size: 0.95rem;
      margin-left: 0.25rem;
    }

    .testimonial-quote-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-primary);
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .testimonial-card-advanced:hover .testimonial-quote-icon {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      color: white;
      transform: rotate(5deg) scale(1.1);
    }

    .testimonial-card-body {
      padding: 0 1.25rem 1rem;
      flex-grow: 1;
    }

    .testimonial-text-advanced {
      font-size: 0.85rem;
      line-height: 1.5;
      color: #475569;
      margin-bottom: 1rem;
      position: relative;
    }

    .testimonial-text-advanced::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: -5px;
      font-size: 4rem;
      color: rgba(30, 64, 175, 0.1);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .testimonial-metrics {
      display: flex;
      gap: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .metric-item {
      display: flex;
      flex-direction: column;
    }

    .metric-value {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--brand-primary);
      line-height: 1.2;
    }

    .metric-label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      margin-top: 0.25rem;
    }

    .testimonial-card-footer {
      padding: 1rem 1.25rem 1.25rem;
      background: linear-gradient(to bottom, transparent, rgba(30, 64, 175, 0.02));
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .testimonial-author-advanced {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .author-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(30, 64, 175, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card-advanced:hover .author-avatar {
      border-color: var(--brand-primary);
      transform: scale(1.05);
    }

    .verified-badge {
      position: absolute;
      bottom: -2px;
      right: -2px;
      width: 24px;
      height: 24px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .verified-badge i {
      color: #10b981;
      font-size: 0.875rem;
    }

    .author-details {
      flex-grow: 1;
    }

    .author-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 0.2rem 0;
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 0 0 0.4rem 0;
    }

    .company-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 4px 10px;
      background: rgba(30, 64, 175, 0.08);
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-primary);
    }

    .company-badge i {
      font-size: 0.875rem;
    }

    .testimonial-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-light));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .testimonial-card-advanced:hover .testimonial-card-accent {
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .testimonial-card-header,
      .testimonial-card-body,
      .testimonial-card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .testimonial-metrics {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* Testimonials Slider */
    .testimonials-slider-wrapper {
      position: relative;
      padding: 0 60px;
    }

    .testimonials-slider-container {
      overflow: hidden;
      position: relative;
    }

    .testimonials-slider-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .testimonial-slide {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      padding: 0 15px;
      box-sizing: border-box;
    }

    @media (min-width: 992px) {
      .testimonial-slide {
        min-width: calc(33.333% - 1.33rem);
        width: calc(33.333% - 1.33rem);
      }
      
      .testimonials-slider-track {
        gap: 2rem;
      }
    }

    .testimonial-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      border: 2px solid rgba(30, 64, 175, 0.1);
      color: var(--brand-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .testimonial-slider-nav:hover {
      background: var(--brand-primary);
      color: white;
      border-color: var(--brand-primary);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    }

    .testimonial-slider-nav:active {
      transform: translateY(-50%) scale(0.95);
    }

    .testimonial-slider-nav-prev {
      left: 0;
    }

    .testimonial-slider-nav-next {
      right: 0;
    }

    .testimonial-slider-nav:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .testimonials-slider-wrapper {
        padding: 0 50px;
      }

      .testimonial-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
      }

      .testimonial-slider-nav-prev {
        left: -10px;
      }

      .testimonial-slider-nav-next {
        right: -10px;
      }

      .testimonials-slider-track {
        gap: 1rem;
      }

      .testimonial-slide {
        padding: 0 10px;
      }
    }

    /* Professional Stats */
    #stats {
      background: var(--gradient-dark);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #stats::before {
      display: none;
    }

    .counter {
      font-size: 2rem;
      font-weight: 700;
      color: white;
    }

    /* Enhanced Footer */
    footer {
      background: var(--gradient-dark);
      color: white;
      position: relative;
      overflow: hidden;
      padding-top: 50px;
    }

    .footer-modern {
      position: relative;
    }

    .footer-background {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
      z-index: 0;
    }

    .footer-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
      opacity: 0.6;
    }

    .footer-accent-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brand-primary) 20%, 
        var(--brand-primary-light) 50%, 
        var(--brand-primary) 80%, 
        transparent 100%);
      z-index: 1;
    }

    footer .container {
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      position: relative;
    }

    .footer-brand img {
      transition: all 0.3s ease;
      filter: brightness(0) invert(1);
    }

    .footer-brand:hover img {
      transform: scale(1.05);
      filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    }

    .footer-description {
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.5;
      font-size: 0.8rem;
    }

    .footer-heading {
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-heading i {
      color: var(--brand-primary-light);
      font-size: 1.2rem;
    }

    .footer-heading-small {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-weight: 500;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      padding: 3px 0;
    }

    .footer-links a i {
      font-size: 0.7rem;
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--brand-primary-light);
      transform: translateX(6px);
    }

    .footer-links a:hover i {
      opacity: 1;
      transform: translateX(2px);
    }

    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.8rem;
      line-height: 1.5;
    }

    .footer-contact li i {
      color: var(--brand-primary-light);
      font-size: 1.2rem;
      margin-right: 12px;
      margin-top: 2px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .footer-contact li:hover i {
      color: var(--brand-primary);
      transform: scale(1.1);
    }

    .footer-contact li span {
      flex: 1;
    }

    .social-icons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 1.25rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .social-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .social-icon i {
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .social-icon:hover {
      color: white;
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 20px rgba(255, 117, 15, 0.4);
      border-color: var(--logo-orange);
    }

    .social-icon:hover::before {
      opacity: 1;
      background: var(--logo-orange);
    }

    .social-icon:hover i {
      transform: scale(1.15);
    }

    .footer-newsletter {
      margin-top: 2rem;
    }

    .newsletter-form {
      position: relative;
    }

    .newsletter-input {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: white;
      border-radius: 8px 0 0 8px;
      padding: 12px 16px;
      font-size: 0.9rem;
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-input:focus {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--brand-primary-light);
      color: white;
      box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.2);
    }

    .btn-newsletter {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      border: none;
      color: white;
      padding: 12px 20px;
      border-radius: 0 8px 8px 0;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .btn-newsletter:hover {
      background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
    }

    .footer-divider {
      height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
      margin: 2rem 0 1.5rem;
    }

    .footer-bottom {
      padding-top: 1rem;
    }

    .footer-legal-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .legal-link {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 4px 0;
    }

    .legal-link:hover {
      color: var(--brand-primary-light);
      transform: translateY(-1px);
    }

    .legal-separator {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.9rem;
    }

    footer a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    footer a:hover {
      color: var(--brand-primary-light);
    }

    /* Professional Modal */
    .modal-backdrop {
      background-color: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .modal-backdrop.show {
      opacity: 1;
    }

    .modal-demo {
      animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .modal.fade .modal-dialog {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal-compact {
      max-width: 600px;
    }

    .modal-content-enhanced {
      border-radius: 16px;
      border: none;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      background: white;
    }

    .modal-header-enhanced {
      background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
      border: none;
      padding: 1.25rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .modal-header-enhanced::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .modal-header-content {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      position: relative;
      z-index: 1;
    }

    .modal-icon-wrapper {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .modal-icon-wrapper i {
      animation: rocketFloat 3s ease-in-out infinite;
    }

    @keyframes rocketFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-5px) rotate(5deg); }
    }

    .modal-title-wrapper {
      flex: 1;
    }

    .modal-title {
      color: white;
      font-weight: 700;
      font-size: 1.35rem;
      margin: 0;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .modal-subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.85rem;
      margin: 0.25rem 0 0 0;
      font-weight: 400;
    }

    .btn-close-white {
      filter: brightness(0) invert(1);
      opacity: 0.9;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .btn-close-white:hover {
      opacity: 1;
      transform: rotate(90deg) scale(1.1);
    }

    .modal-body-enhanced {
      padding: 1.25rem;
      background: #fafbfc;
    }

    .form-group-enhanced {
      margin-bottom: 0.75rem;
    }

    .form-label-enhanced {
      display: flex;
      align-items: center;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.4rem;
      font-size: 0.8rem;
    }

    .form-label-enhanced i {
      color: var(--brand-primary);
      font-size: 0.95rem;
    }

    .input-wrapper,
    .textarea-wrapper,
    .select-wrapper {
      position: relative;
    }

    .input-icon,
    .textarea-icon,
    .select-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 0.95rem;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .textarea-icon {
      top: 14px;
      transform: none;
    }

    .form-control-enhanced,
    .form-select-enhanced {
      border-radius: 8px;
      border: 2px solid #e5e7eb;
      padding: 8px 36px 8px 10px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: white;
      font-size: 0.8rem;
      color: var(--dark);
      width: 100%;
    }

    .form-control-enhanced:focus,
    .form-select-enhanced:focus {
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
      outline: none;
      background: white;
    }

    .form-control-enhanced:focus + .input-icon,
    .form-control-enhanced:focus ~ .input-icon,
    .form-select-enhanced:focus ~ .select-icon {
      color: var(--brand-primary);
      transform: translateY(-50%) scale(1.05);
    }

    .form-control-enhanced::placeholder {
      color: #94a3b8;
      font-weight: 400;
      transition: opacity 0.3s ease;
    }

    .form-control-enhanced:focus::placeholder {
      opacity: 0.5;
    }

    /* Input animation on focus */
    .input-wrapper::after,
    .textarea-wrapper::after,
    .select-wrapper::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .input-wrapper:focus-within::after,
    .textarea-wrapper:focus-within::after,
    .select-wrapper:focus-within::after {
      width: 100%;
    }

    .form-select-enhanced {
      appearance: none;
      background-image: none;
      cursor: pointer;
      padding-right: 48px;
    }

    .select-wrapper .select-icon {
      pointer-events: none;
    }

    textarea.form-control-enhanced {
      resize: vertical;
      min-height: 90px;
      padding-top: 12px;
    }

    .captcha-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .captcha-display {
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
      border: 2px solid rgba(30, 64, 175, 0.2);
      border-radius: 10px;
      padding: 10px 16px;
      min-width: 100px;
      text-align: center;
    }

    .captcha-text {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--brand-primary);
      letter-spacing: 1.5px;
      font-family: 'Courier New', monospace;
    }

    .captcha-input-wrapper {
      flex: 1;
      min-width: 180px;
      position: relative;
    }

    .captcha-input {
      max-width: 100%;
    }

    .captcha-icon {
      color: var(--brand-primary);
    }

    .form-check-enhanced {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      padding: 0.75rem;
      background: rgba(30, 64, 175, 0.03);
      border-radius: 10px;
      border: 1px solid rgba(30, 64, 175, 0.1);
      transition: all 0.3s ease;
    }

    .form-check-enhanced:hover {
      background: rgba(30, 64, 175, 0.05);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .form-check-input-enhanced {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      border: 2px solid #cbd5e1;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .form-check-input-enhanced:checked {
      background-color: var(--brand-primary);
      border-color: var(--brand-primary);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    }

    .form-check-input-enhanced:focus {
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
    }

    .form-check-label-enhanced {
      color: var(--dark);
      font-size: 0.85rem;
      line-height: 1.5;
      cursor: pointer;
      margin: 0;
    }

    .link-enhanced {
      color: var(--brand-primary);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border-bottom: 1px solid transparent;
    }

    .link-enhanced:hover {
      color: var(--brand-primary-dark);
      border-bottom-color: var(--brand-primary-dark);
    }

    .btn-brand-enhanced {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      color: white;
      border: none;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
      position: relative;
      overflow: hidden;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-brand-enhanced::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-brand-enhanced i,
    .btn-brand-enhanced .btn-text,
    .btn-brand-enhanced .spinner-border {
      position: relative;
      z-index: 1;
    }

    .btn-brand-enhanced:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
    }

    .btn-brand-enhanced:hover::before {
      opacity: 1;
    }

    .btn-brand-enhanced:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .btn-brand-enhanced:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    /* Invalid state styling */
    .form-control-enhanced.is-invalid,
    .form-select-enhanced.is-invalid {
      border-color: #ef4444;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8h-.8'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 48px;
    }

    .form-control-enhanced.is-invalid:focus {
      border-color: #ef4444;
      box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    }

    .invalid-feedback {
      display: block;
      width: 100%;
      margin-top: 0.375rem;
      font-size: 0.8rem;
      color: #ef4444;
      font-weight: 500;
    }

    /* Success/Error Messages */
    #demoFormMessage .alert {
      border-radius: 10px;
      border: none;
      padding: 0.75rem 1rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.625rem;
      font-size: 0.875rem;
    }

    #demoFormMessage .alert-success {
      background: rgba(34, 197, 94, 0.1);
      color: #16a34a;
    }

    #demoFormMessage .alert-danger {
      background: rgba(239, 68, 68, 0.1);
      color: #dc2626;
    }

    #demoFormMessage .alert i {
      font-size: 1.1rem;
    }

    /* Responsive Modal */
    @media (max-width: 768px) {
      .modal-compact {
        max-width: 95%;
        margin: 1rem auto;
      }

      .modal-body-enhanced {
        padding: 1.25rem;
      }

      .modal-header-enhanced {
        padding: 1rem 1.25rem;
      }

      .modal-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }

      .modal-title {
        font-size: 1.2rem;
      }

      .modal-subtitle {
        font-size: 0.8rem;
      }

      .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
      }

      .captcha-display {
        width: 100%;
      }

      .captcha-input-wrapper {
        width: 100%;
      }

      .form-control-enhanced,
      .form-select-enhanced {
        padding: 10px 36px 10px 12px;
        font-size: 0.875rem;
      }

      .btn-brand-enhanced {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .form-group-enhanced {
        margin-bottom: 0.875rem;
      }
    }

    /* Animations */
    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.05); opacity: 1; }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .navbar {
        width: 100%;
        top: 0;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      }

      .navbar.scrolled {
        padding: 10px 0;
      }
      
      .navbar-brand img {
        height: 32px;
      }

      .custom-nav {
        padding: 0 15px;
      }

      .nav-link {
        padding: 8px 14px !important;
        font-size: 0.9rem;
      }

      .btn-brand {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .btn-brand i {
        font-size: 0.9rem;
      }

      .dropdown-menu {
        min-width: 200px;
        padding: 8px 4px;
      }

      .dropdown-item {
        padding: 10px 16px;
        font-size: 0.9rem;
      }
      
      .hero h1 {
        font-size: 1.75rem;
      }
      
      .hero .lead {
        font-size: 0.85rem;
      }
      
      section {
        padding: 40px 0;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .process-step::after {
        display: none;
      }

      /* Footer Mobile Styles */
      footer {
        padding-top: 40px;
      }

      .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
      }

      .footer-description {
        font-size: 0.9rem;
      }

      .footer-links a {
        font-size: 0.9rem;
      }

      .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
      }

      .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
      }

      .legal-separator {
        display: none;
      }

      .newsletter-form .input-group {
        flex-direction: column;
      }

      .newsletter-input {
        border-radius: 8px;
        margin-bottom: 0.5rem;
      }

      .btn-newsletter {
        border-radius: 8px;
        width: 100%;
      }
    }

    /* Additional decorative elements */
    .decorative-shape {
      display: none;
    }

    /* Professional Product Cards */
    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .product-card-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 220px;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .product-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-card-image {
      transform: scale(1.1);
    }

    .product-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(30, 64, 175, 0) 0%, rgba(30, 64, 175, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-card:hover .product-card-overlay {
      opacity: 1;
    }

    .product-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--brand-primary);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .product-card:hover .product-icon {
      background: var(--logo-orange);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .product-card-body {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .product-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .product-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: rgba(30, 64, 175, 0.1);
      color: var(--brand-primary);
    }

    .product-badge-popular {
      background: rgba(239, 68, 68, 0.1);
      color: #dc2626;
    }

    .product-badge-new {
      background: rgba(34, 197, 94, 0.1);
      color: #16a34a;
    }

    .product-badge-enterprise {
      background: rgba(139, 92, 246, 0.1);
      color: #7c3aed;
    }

    .product-card-description {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.5;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .product-features {
      margin-bottom: 1.5rem;
    }

    .product-feature-item {
      display: flex;
      align-items: center;
      padding: 0.5rem 0;
      color: var(--dark);
      font-size: 0.9rem;
      transition: transform 0.2s ease;
    }

    .product-feature-item:hover {
      transform: translateX(4px);
    }

    .product-feature-item i {
      color: var(--brand-primary);
      font-size: 1rem;
      margin-right: 0.75rem;
      flex-shrink: 0;
    }

    .product-feature-item span {
      color: #475569;
      font-weight: 500;
    }

    .letter-spacing-1 {
      letter-spacing: 2px;
    }

    /* Responsive adjustments for product cards */
    @media (max-width: 768px) {
      .product-card-body {
        padding: 1.5rem;
      }

      .product-card-title {
        font-size: 1.25rem;
      }

      .product-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }
    }

    /* Beautiful Blog Section */
    .blog-section {
      padding: 50px 0;
      background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .blog-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 15% 30%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .blog-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 48px rgba(30, 64, 175, 0.15);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .blog-card-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 260px;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .blog-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card:hover .blog-card-image {
      transform: scale(1.15);
    }

    .blog-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .blog-card:hover .blog-card-overlay {
      opacity: 1;
    }

    .blog-category-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 25px;
      font-size: 0.875rem;
      font-weight: 600;
      color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      z-index: 2;
    }

    .blog-category-badge i {
      font-size: 1rem;
    }

    .blog-category-design {
      background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    }

    .blog-category-marketing {
      background: linear-gradient(135deg, #f59e0b, #fbbf24);
    }

    .blog-category-development {
      background: linear-gradient(135deg, #3b82f6, #60a5fa);
    }

    .blog-card:hover .blog-category-badge {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .blog-read-time {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 6px 12px;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      color: white;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .blog-card:hover .blog-read-time {
      background: rgba(0, 0, 0, 0.8);
      transform: translateY(-4px);
    }

    .blog-card-content {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: var(--muted);
    }

    .blog-date,
    .blog-author {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .blog-date i,
    .blog-author i {
      font-size: 1rem;
      color: var(--brand-primary);
    }

    .blog-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
    }

    .blog-card-title a {
      color: var(--dark);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-card:hover .blog-card-title a {
      color: var(--brand-primary);
    }

    .blog-card-excerpt {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.5;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .blog-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--brand-primary);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .blog-read-more i {
      transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-read-more {
      color: var(--logo-orange);
    }

    .blog-card:hover .blog-read-more i {
      transform: translateX(4px);
    }

    .blog-stats {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .blog-stat-item {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      color: var(--muted);
      transition: color 0.3s ease;
    }

    .blog-stat-item i {
      font-size: 0.875rem;
    }

    .blog-card:hover .blog-stat-item {
      color: var(--logo-orange);
    }

    /* Responsive adjustments for blog cards */
    @media (max-width: 768px) {
      .blog-card-content {
        padding: 1.5rem;
      }

      .blog-card-title {
        font-size: 1.25rem;
      }

      .blog-card-image-wrapper {
        height: 220px;
      }

      .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .blog-stats {
        width: 100%;
        justify-content: flex-start;
      }
    }

    /* Modern Process Steps */
    .process-step-modern {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      position: relative;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      text-align: center;
    }

    .process-step-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .process-number-wrapper {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      width: 100%;
      height: 80px;
    }

    .process-number {
      position: relative;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--brand-primary);
      line-height: 1;
      z-index: 2;
      transition: all 0.4s ease;
    }

    .process-number-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
      border-radius: 50%;
      z-index: 1;
      transition: all 0.4s ease;
    }

    .process-step-modern:hover .process-number {
      transform: scale(1.1);
    }

    .process-step-modern:hover .process-number-bg {
      transform: translate(-50%, -50%) scale(1.2);
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.15), rgba(59, 130, 246, 0.15));
    }

    .process-icon {
      margin-top: 1rem;
      transition: transform 0.3s ease;
    }

    .process-step-modern:hover .process-icon {
      transform: scale(1.1);
    }

    /* Modern Portfolio Cards */
    .portfolio-card-modern {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .portfolio-card-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .portfolio-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 250px;
    }

    .portfolio-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .portfolio-card-modern:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-card-modern:hover .portfolio-image {
      transform: scale(1.1);
    }

    .portfolio-link {
      color: white;
      font-size: 3rem;
      transition: transform 0.3s ease;
    }

    .portfolio-link:hover {
      transform: scale(1.2) rotate(5deg);
      color: white;
    }

    .portfolio-content {
      padding: 1.5rem;
    }

    .portfolio-category {
      display: inline-block;
      padding: 4px 12px;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
      color: var(--brand-primary);
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.75rem;
    }

    .portfolio-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .portfolio-description {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .portfolio-cta {
      display: inline-flex;
      align-items: center;
      color: var(--brand-primary);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .portfolio-cta:hover {
      color: var(--brand-primary-light);
      transform: translateX(5px);
    }

    .portfolio-cta i {
      transition: transform 0.3s ease;
    }

    .portfolio-cta:hover i {
      transform: translateX(5px);
    }

    /* Modern Tool Cards */
    .tool-card-modern {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .tool-card-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
      border-color: rgba(30, 64, 175, 0.2);
    }

    .tool-icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-primary);
      font-size: 2.5rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .tool-card-modern:hover .tool-icon-wrapper {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .tool-name {
      color: var(--dark);
      font-size: 1.1rem;
    }

    .tool-description {
      color: var(--muted);
      font-size: 0.85rem;
    }

    /* Benefit Items Modern */
    .benefit-item-modern:hover .flex-shrink-0 > div {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)) !important;
      color: white !important;
      transform: scale(1.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .process-step-modern {
        padding: 1.5rem;
      }

      .process-number-wrapper {
        width: 60px;
        height: 60px;
      }

      .process-number {
        font-size: 2rem;
      }

      .process-number-bg {
        width: 60px;
        height: 60px;
      }

      .portfolio-image-wrapper {
        height: 200px;
      }

      .tool-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 2rem;
      }
    }