

     @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
        
        * {
            font-family: 'Cairo', sans-serif;
        }
        
        body {
            margin: 0;
            padding: 0;
            background: #ffffff;
        }
        
        .navbar {
            background: #ffffff;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            background: linear-gradient(45deg, #8B7ED8, #B8A9FF);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .navbar-nav .nav-link {
            color: #6D738F !important;
            font-weight: 500;
            margin: 0 0.5rem;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(139, 126, 216, 0.1);
            color: #8B7ED8 !important;
        }
        
        .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);
        }
        
   
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .hero-section {
            background: linear-gradient(135deg, #E8E9FF 0%, #F0F1FF 100%);
            min-height: 60vh;
            padding-top: 120px;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 2rem;
            line-height: 1.3;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            color: #636e72;
            margin-bottom: 3rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .btn-donate {
            background-color: #897AE3;
            color: white;
            border: none;
            padding: 1rem 5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-donate2 {
  display: block;        
  width: 100%;           
  background-color: #897AE3;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;    
  text-decoration: none;
  transition: all 0.3s ease;
}
         .btn-message {
    background-color: #897AE3;
    color: white;
    border: none;
    padding: 1rem 30rem;
    border-radius: 12px;
    font-weight: 400;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;

    width: 100%;
}
        .btn-donate:hover {
            background-color: #7A6BC7;
            transform: translateY(-2px);
            color: white;
        }
        .btn-add2 {
            background-color: white;
            color: #897AE3;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-call {
            background-color: white;
            color: #897AE3;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-call:hover {
            background-color: #897AE3;
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
        }
        
        .partners-section {
            padding: 3rem 0;
            background: white;
            text-align: center;
        }
        
        .partners-title {
            color: #636e72;
            font-size: 1rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        
        .partners-logos {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }
        
        .partner-logo {
            opacity: 0.6;
            height: 40px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        .services-section {
            padding: 6rem 0;
            background: white;
            
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            color: #2d3436;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .section-subtitle {
            text-align: center;
            color: #636e72;
            font-size: 1.1rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px rgba(139, 126, 216, 0.1);
            margin-bottom: 2rem;
            height: 100%;
            text-align: center;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(139, 126, 216, 0.2);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #8B7ED8, #B8A9FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-card h4 {
            color: #2d3436;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .service-card p {
            color: #636e72;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .stats-section {
            padding: 5rem 0;
            margin: 4rem 0;
        }
        
        .stat-item {
            text-align: center;
            color: #2d3436;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #8B7ED8;
            counter-reset: number;
            animation: countUp 2s ease-out;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #636e72;
            font-weight: 500;
        }
        
        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
      
        .progress-bar-section {
            background: linear-gradient(135deg, #E8E9FF 0%, #F0F1FF 100%);
            padding: 6rem 0;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 126, 216, 0.2);
        }
        
        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .card-body {
            padding: 30px;
        }
        
        .product-title {
            color: #2d2d2d;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: right;
        }
        
        .product-description {
            color: #666;
            font-size: 17px;
            line-height: 1.6;
            text-align: right;
            margin-bottom: 25px;
        }

        .progress-container {
            margin-bottom: 25px;
         
            padding: 20px;
            border-radius: 15px;
        }
        
        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .progress-percentage {
            font-size: 16px;
            font-weight: 600;
            color: #8B7ED8;
            background: rgba(139, 126, 216, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
        }
        
        .progress-target {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        
        .progress-bar-custom {
            width: 100%;
            height: 12px;
            background-color: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8B7ED8 0%, #B8A9FF 100%);
            border-radius: 10px;
            transition: width 0.8s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        
        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            animation: shimmer 2s infinite;
        }
        


        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .progress-raised {
            font-size: 14px;
            color: #28a745;
            font-weight: 600;
        }
        
        .progress-remaining {
            font-size: 14px;
            color: #6c757d;
        }
        
        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 20px;
      
          
         
        }
        
        .price-info {
            text-align: center;
        }
        
        .price-main {
            color: #2d2d2d;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .price-sub {
            color: #666;
            font-size: 14px;
        }
        
        .quantity-info {
            text-align: center;
        }
        
        .quantity-number {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .quantity-label {
            color: #666;
            font-size: 14px;
        }
        
        .action-section {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .donate-btn {
            background: linear-gradient(135deg, #8B7ED8 0%, #B8A9FF 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            padding: 15px 0;
            flex: 1;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 126, 216, 0.3);
        }
        
        .donate-btn:hover {
            background: linear-gradient(135deg, #7a6ba5 0%, #9483b6 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 126, 216, 0.4);
            color: white;
        }
        
        .cart-icon-btn {
            width: 55px;
            height: 55px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
                        border-color: #8B7ED8;

        }
        
        .cart-icon-btn:hover {
            border-color: #8B7ED8;
            background: rgba(139, 126, 216, 0.1);
            transform: translateY(-2px);
        }
        
        .view-all-btn {
            background: linear-gradient(135deg, #8B7ED8 0%, #B8A9FF 100%);
            border: none;
            border-radius: 15px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 15px 40px;
            margin: 40px auto 0;
            display: block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 126, 216, 0.3);
        }
        
        .view-all-btn:hover {
            background: linear-gradient(135deg, #7a6ba5 0%, #9483b6 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 126, 216, 0.4);
            color: white;
        }
        

        .faq-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
        }
        
        .decorative-illustration {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            width: 300px;
            height: 400px;
            opacity: 0.1;
            z-index: 1;
        }
        
        .faq-container {
            position: relative;
            z-index: 2;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        
        .faq-checkbox {
            display: none;
        }
        
        .faq-header {
            padding: 24px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: none;
            width: 100%;
            text-align: right;
            user-select: none;
            border: none;
        }
        
        .faq-header:hover {
            background-color: #f8fafc;
        }
        
        .faq-question {
            color: #1e293b;
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            flex: 1;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            margin-left: 15px;
            transform: rotate(0deg);
        }
        
        .faq-checkbox:checked + .faq-header .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-checkbox:checked ~ .faq-content {
            max-height: 200px;
        }
        
        .faq-answer {
            padding: 0 30px 24px 30px;
            color: #64748b;
            font-size: 16px;
            line-height: 1.6;
        }
        
        #faq1:checked ~ .faq-content {
            max-height: 200px;
        }
        
        #faq1:checked + .faq-header .faq-icon {
            transform: rotate(180deg);
        }
        
    
        .contact-section {
            padding: 6rem 0;
        }
        
        .contact-form {
            background: #E5E2F7;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(139, 126, 216, 0.1);
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #8B7ED8;
            box-shadow: 0 0 0 0.2rem rgba(139, 126, 216, 0.25);
            transform: translateY(-2px);
        }
        
        .contact-info {
            padding: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 130px;
            height: 110px;
            background: #8B7ED8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-left: 1rem;
            font-size: 1.2rem;
                        padding: 13px;

        }
        
        .contact-item h6 {
            color: #2d3436;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: #636e72;
            margin: 0;
        }
        
  
        .cta-section {
            min-height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #E8E9FF 0%, #F0F1FF 100%);
            color: white;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .subtitle {
            font-family: 'Cairo', sans-serif;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .main-title {
            font-family: 'Cairo', sans-serif;
            color: white;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 40px;
        }
        
        .prosthetic-image {
            position: absolute;
            left: 50px;
            top: 50%;
            transform: translateY(-50%);
            max-width: 400px;
            height: auto;
            z-index: 1;
            opacity: 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%);
        }



   
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: white;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.5rem 0;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
                text-align: center;
            }
            
            .hero-content p {
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .contact-form {
                padding: 2rem;
            }
            
            .main-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .navbar {
                padding: 0.5rem 0;
            }
            
            .navbar-brand {
                font-size: 1rem;
                padding: 0.5rem 1rem;
            }
            
            .btn-login {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
            }
            
            .cart-icon {
                font-size: 20px;
                margin-left: 0.5rem;
            }
            
            .hero-section {
                padding-top: 100px;
                min-height: auto;
                padding-bottom: 3rem;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
                margin-bottom: 1.5rem;
                text-align: center;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn-donate,
            .btn-call {
                width: 100%;
                max-width: 280px;
                text-align: center;
                justify-content: center;
            }
            
            .partners-section {
                padding: 2rem 0;
            }
            
            .partners-title {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            
            .partners-logos {
                display: flex;
                justify-content: space-between;
            }
            
            .partner-logo {
                height: 30px;
            }
            
            .services-section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 3rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .service-card h4 {
                font-size: 1.2rem;
            }
            
            .service-card p {
                font-size: 0.95rem;
            }
            
            .stats-section {
                padding: 3rem 0;
                margin: 2rem 0;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .contact-section {
                padding: 4rem 0;
            }
            
            .contact-form {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .contact-form h4 {
                font-size: 1.3rem;
                text-align: center;
            }
            
            .contact-item {
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .contact-icon {
              width: 130px;
            height: 90px;
                font-size: 2.8rem;
            }
            
            .cta-section {
                padding: 3rem 0;
                
            }
            
            .main-title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .prosthetic-image {
                display: none;
            }
            
      
        }
        
        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .btn-donate,
            .btn-call {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            
            .service-card {
                padding: 1.5rem 1rem;
            }
            
            .contact-form {
                padding: 1rem;
            }
            
            .main-title {
                font-size: 1.5rem;
            }
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }