
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');
    
    * {
      font-family: 'Inter', sans-serif;
    }

    .hero-gradient {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.95) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1) rotate(0deg); }
      50% { transform: scale(1.1) rotate(5deg); }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .feature-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(59, 130, 246, 0.5);
      box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    }

    .glowing-text {
      text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    .icon-glow {
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
      transition: all 0.4s ease;
    }

    .feature-card:hover .icon-glow {
      box-shadow: 0 0 50px rgba(59, 130, 246, 0.9);
      transform: rotate(360deg);
    }

    .cta-btn {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .line-animation {
      position: relative;
      display: inline-block;
    }

    .line-animation::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      transition: width 0.4s ease;
    }

    .line-animation:hover::after {
      width: 100%;
    }

    .stat-number {
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @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);
      }
    }

    .animate-in-left {
      animation: slideInLeft 0.8s ease-out forwards;
    }

    .animate-in-right {
      animation: slideInRight 0.8s ease-out forwards;
    }
  
    .gradient-bg {
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    }

    .card-hover {
      transition: all 0.3s ease;
    }

    .card-hover:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .navbar-mobile {
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
    }

    .navbar-mobile.open {
      transform: translateX(0);
    }

    /* Hero Background Section */
    .hero-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
    }

    /* Fade overlay box */
    .fade-box {
      background: linear-gradient(to bottom,
          rgba(255, 255, 255, 0.98) 0%,
          rgba(255, 255, 255, 0.92) 50%,
          rgba(255, 255, 255, 0.85) 100%);
      backdrop-filter: blur(15px);
      animation: fadeInUp 0.8s ease-out;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Product Card Styles */
    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(30, 58, 138, 0.25);
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 300px;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .product-card:hover .product-image {
      transform: scale(1.1);
    }

    .product-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
      color: white;
      padding: 8px 18px;
      border-radius: 25px;
      font-size: 13px;
      font-weight: 700;
      z-index: 2;
      box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-content {
      position: relative;
      z-index: 2;
      padding: 28px;
    }

    .category-tag {
      display: inline-block;
      background: rgba(30, 58, 138, 0.08);
      color: #1e3a8a;
      padding: 6px 14px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-title {
      font-size: 22px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .product-description {
      color: #475569;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .product-features {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 22px;
      padding-top: 10px;
      border-top: 1px solid #e2e8f0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: #334155;
      font-weight: 600;
    }

    .feature-item i {
      color: #1e3a8a;
      font-size: 14px;
    }

    .product-action {
      display: flex;
      gap: 10px;
    }

    .btn-primary {
      flex: 1;
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
      color: white;
      padding: 14px 24px;
      border-radius: 14px;
      font-weight: 700;
      text-align: center;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 15px;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
    }

    .btn-secondary {
      background: white;
      color: #1e3a8a;
      padding: 14px;
      border-radius: 14px;
      border: 2px solid #e2e8f0;
      transition: all 0.3s ease;
      cursor: pointer;
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-secondary:hover {
      border-color: #1e3a8a;
      background: rgba(30, 58, 138, 0.05);
    }

    /* Section Title Animation */
    .section-title {
      animation: slideInDown 0.8s ease-out;
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .industry-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      transition: all 0.3s ease;
    }

    .industry-card:hover .industry-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
    }

    .industry-card {
      transition: all 0.3s ease;
    }

    .industry-card:hover {
      transform: translateY(-5px);
    }
  