 :root {
            --primary-blue: #1a3a52;
            --secondary: #2d7a99;
            --accent-cyan: #0ea5e9;
            --accent-indigo: #6366f1;
            --dark-bg: #f9fafb;
            --darker-bg: #f3f4f6;
            --card-bg: #ffffff;
            --text-dark: #0f172a;
            --text-light: #64748b;
            --border-light: #e2e8f0;
            --success-green: #10b981;
            --gold-accent: #f59e0b;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.33, 0.66, 0.66, 1);
            --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            color: var(--text-dark);
            background-color: var(--dark-bg);
            line-height: 1.6;
            letter-spacing: -0.3px;
        }

        /* ==================== HEADER ==================== */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            z-index: 1000;
            box-shadow: var(--shadow-xs);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
    max-height: 45px;
    max-width: 160px;
    object-fit: contain;
}


        .cta-header {
            background: #1F4FD8;
            color: white;
            padding: 0.65rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            text-decoration: none;
            border: none;
            font-size: 0.9rem;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
        }

        .cta-header:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.pexels.com/photos/3840447/pexels-photo-3840447.jpeg?_gl=1*mf5s9r*_ga*NDY5MjQ2MzQ4LjE3Njk5MTY2OTE.*_ga_8JE65Q40S6*czE3NzA1MzI0NzUkbzQkZzEkdDE3NzA1MzI4NjIkajMzJGwwJGgw') center/cover no-repeat;
            color: white;
            padding: 5rem 2rem 4rem;
            overflow: hidden;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 7s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(45, 122, 153, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 9s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }

        .hero {
  min-height: 90vh;              
  display: flex;
  align-items: center;           
  justify-content: center;      
  text-align: center;
  padding: 0 20px;              
}

.hero-content {
  max-width: 900px;            
  width: 100%;
}

        .hero-content h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            font-weight: 800;
            letter-spacing: -1.2px;
        }

        .hero-content > p:first-of-type {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            opacity: 0.92;
            font-weight: 500;
            font-style: italic;
        }

     .hero-micro {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 3.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

    justify-content: center;   
    text-align: center;       
}

        .hero-micro span {
            background: rgba(255, 255, 255, 0.15);
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .hero-buttons {
            /* display: flex;
            gap: 1rem; */
            margin-bottom: 2rem;
            /* flex-wrap: wrap; */
        }

        .btn {
            padding: 0.85rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: var(--primary-blue);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        .product-showcase {
            width: 100%;
            height: 380px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .product-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .product-icons {
            display: flex;
            gap: 2rem;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .product-showcase p {
            font-size: 1.1rem;
            opacity: 0.9;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .product-showcase {
                min-height: 250px;
            }

            .hero {
                padding: 2.5rem 1.5rem;
            }
        }

        /* ==================== TRUST STRIP ==================== */
        .trust-strip {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-card {
            padding: 2rem;
            text-align: center;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #fafbfc 100%);
            transition: var(--transition-fast);
            border: 1px solid var(--border-light);
            position: relative;
        }

        .trust-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent-cyan);
        }

        .trust-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            color: var(--accent-cyan);
        }

        .trust-card h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
            color: var(--text-dark);
        }

        .trust-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
            font-weight: 500;
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products-section {
            padding: 5rem 2rem;
            background: var(--dark-bg);
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-weight: 800;
            letter-spacing: -0.8px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-cyan);
        }

        .product-header-glove {
            background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('img/gloves1.png') center/cover no-repeat;
            color: white;
            
    min-height: 180px; 
    padding: 2rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
        }

        .product-header-syringe {
            background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('img/syringes.jpg') center/cover no-repeat;
            color: white;
            
    min-height: 180px;  
    padding: 2rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
        }

        .product-card h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-top: 2rem;
            margin-bottom: 1.5rem;
            padding: 0 2rem;
            font-weight: 700;
        }

        .product-specs {
            padding: 0 2rem;
            margin-bottom: 2rem;
        }

        .product-specs li {
            font-size: 0.92rem;
            color: var(--text-light);
            margin-bottom: 0.7rem;
            line-height: 1.7;
            list-style: none;
            position: relative;
            padding-left: 1.8rem;
            font-weight: 500;
        }

        .product-specs li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .product-cta {
            padding: 0 2rem 2rem;
            margin-top: auto;
        }

        .product-cta .btn-primary {
            width: 100%;
            text-align: center;
            color: white;
            background: var(--secondary);
        }

        /* ==================== WHY US SECTION ==================== */
        .why-us {
            padding: 5rem 2rem;
            background: var(--card-bg);
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .why-item {
            padding: 2.5rem;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #fafbfc 100%);
            border-radius: 14px;
            border: 1px solid var(--border-light);
            border-left: 4px solid #2bb9e1;
            transition: var(--transition);
        }

        .why-item:hover {
            border-left-color: var(--secondary);
            transform: translateX(4px);
            box-shadow: var(--shadow-md);
        }

        .why-item h4 {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .why-item p {
            font-size: 0.93rem;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 500;
        }

        /* ==================== PROCESS SECTION ==================== */
        .process-section {
            padding: 5rem 2rem;
            background: var(--dark-bg);
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-indigo) 0%, var(--accent-cyan) 50%, transparent 100%);
            z-index: 0;
            display: none;
        }

        @media (min-width: 769px) {
            .process-timeline::before {
                display: block;
            }
        }

        .process-step {
            position: relative;
            text-align: center;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-cyan) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-md);
        }

        .process-step h4 {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 0.7rem;
            font-weight: 700;
        }

        .process-step p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
            font-weight: 500;
        }

        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            padding: 5rem 2rem;
            background: var(--card-bg);
            max-width: 1000px;
            margin: 0 auto;
        }

        .accordion {
            margin-top: 3rem;
        }

        .accordion-item {
            margin-bottom: 1.2rem;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition-fast);
        }

        .accordion-item:hover {
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-sm);
        }

        .accordion-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #fafbfc 100%);
            padding: 1.75rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-fast);
            font-weight: 600;
            color: var(--text-dark);
        }

        .accordion-header:hover {
            background: #f5f6f7;
        }

        .accordion-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #626274;
            font-size: 1.2rem;
            transition: var(--transition-fast);
        }

        .accordion-item.active .accordion-toggle {
            transform: rotate(180deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--card-bg);
        }

        .accordion-item.active .accordion-body {
            max-height: 500px;
            padding: 1.75rem;
            border-top: 1px solid var(--border-light);
        }

        .accordion-body p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* ==================== FINAL CTA SECTION ==================== */
        .final-cta {
            padding: 5rem 2rem;
            background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('img/final-cta.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            font-weight: 800;
            letter-spacing: -0.8px;
            position: relative;
            z-index: 2;
        }

        .final-cta p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.92;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            font-weight: 500;
        }

        .final-cta .btn {
            display: inline-block;
            position: relative;
            z-index: 2;
        }



        /* ==================== FOOTER ==================== */
        footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary) 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            justify-content: center;   
            align-items: center;    
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            max-height: 65px;
            width: auto;
            height: auto;
            display: block;
}


        .footer-descriptor {
            font-size: 0.92rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            font-size: 0.92rem;
            margin-bottom: 2rem;
        }

        .footer-contact a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: var(--transition-fast);
            font-weight: 500;
        }

        .footer-contact a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(203, 213, 225, 0.2);
            padding-top: 2rem;
            font-size: 0.82rem;
            color: #94a3b8;
        }