

      @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
        
        * {
            font-family: 'Cairo', sans-serif;

        }
    
        .navbar-nav .nav-link {
  color: #6D738F !important;
}
        body {
            background: linear-gradient(135deg, #1a1d3a 0%, #2d3561 100%);
            color: white;
            margin: 0;
            width: 100%;
            padding: 0;
     
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
        }
        
        .navbar-nav .nav-link {
            color: #2d3436 !important;
            font-weight: 500;
            margin: 0 0.5rem;
             text-align: center;
        }
        
        .btn-cart {
            background: #6c5ce7;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        
        .hero-section {
            padding: 5rem 0;
        }
        
 .hero-section2 {
         padding: 0;
         margin: 0;
        }
        

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .btn-primary-custom {
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .play-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        
        .stats-section {
            backdrop-filter: blur(10px);
            border-radius: 20px;
         height: 100%;
            margin: 3rem 0;
        }
        .stats-section2 {
            backdrop-filter: blur(10px);
            border-radius: 20px;
         height: 100%;
         
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 500;
            color: #ffffff;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-light {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8e9ff 100%);
            color: #2d3436;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            text-align: center;
            margin-bottom: 3rem;
            line-height: 1.8;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .prosthetic-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .footer {
            background: #1a1d3a;
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer h5 {
            color: #a29bfe;
            margin-bottom: 1rem;
        }
        
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer a:hover {
            color: #a29bfe;
        }
        
        .social-icons a {
            display: inline-block;
            margin-left: 1rem;
            color: rgba(255,255,255,0.7);
            font-size: 1.2rem;
        }
        
        .geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
        }
 .btn-login {
            background-color: #8B7ED8;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background-color: #7A6BC7;
            transform: translateY(-2px);
        }
        
        .cart-icon {
            color: #1a1d3a;
            font-size: 24px;
            margin-left: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cart-icon:hover {
            color: #8B7ED8;
            transform: scale(1.1);
        }