








 /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--modalbc-bg);
            backdrop-filter: blur(8px); 
            border: 3px solid rgba(76, 175, 80, 0.1);
            
            border-radius: var(--radius-md);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            
            }
      
       /* Find .modal-overlay and make sure it matches this */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px); /* This gives the Pharmacy site look */
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

        

        .modal-content {
            background: var(--modal-bg);
            border: 1px solid rgba(76, 175, 80, 0.1);
            border-radius: var(--radius-md);
            padding: 24px;
            max-width: 800px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .modal-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .modal-close {
            width: 25px;
            height: 25px;
            background: none;
            border: 1px solid rgba(76, 175, 80, 0.1);
            font-size: 1.51rem;
            cursor: pointer;
            color: var(--text-secondary);
            padding: 4px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--bg-tertiary);
            
            border: 1px solid rgba(76, 175, 80, 0.1);
            color: var(--text-primary);
        }

        .modal-body {
            margin-bottom: 16px;
        }

        .modal-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .modal-list {
            padding-left: 20px;
            margin-bottom: 16px;
            color: aquamarine;
        }

        .modal-list li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--text-secondary);
        }
.modal-list a {
  color: #0A84FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.modal-list a:hover {
  color: #66AFFF;
}
.modal-list a:hover {
  text-decoration: underline;
}

       
       /* Legal Accordion Styles */
        .legal-accordion {
            margin-top: 16px;
        }

        .accordion-item {
            margin-bottom: 8px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: var(--bg-secondary);
        }

        .accordion-header {
            width: 100%;
            padding: 16px;
            text-align: left;
            background: var(--bg-tertiary);
            border: 1px solid rgba(76, 175, 80, 0.1);
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .accordion-header::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 16px;
            background: var(--legal-bg);
            
        }


.accordion-content a {
  color: #0A84FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.accordion-content a:hover {
  color: #66AFFF;
}
.:hover {
  text-decoration: underline;
}

        .accordion-content.active {
            max-height: 300px;
            padding: 16px;
            overflow-y: auto;
        }

        .accordion-content p {
            margin-bottom: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-primary);
        }

        .accordion-content h4 {
            margin: 16px 0 8px;
            font-size: 1rem;
            color: var(--primary);
        }

        /* Animations */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }










/* ===== Careers Modal – Professional + Interactive ===== */
.careers-modal-content {
    max-width: 1000px;
    background: var(--modal-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 159, 255, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

/* Filter chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.chip {
    padding: 6px 16px;
    background: rgba(2,255,255,0.05);
    border: 1px solid rgba(94,159,255,0.2);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip.active,
.chip:hover {
    background: var(--highlight);
    color: white;
    border-color: var(--highlight);
}

/* Grid layout */
.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.careers-col-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(94,159,255,0.3);
    padding-bottom: 0.5rem;
}

/* Role cards with expandable details */
.role-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.role-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 2px solid rgba(2,225,55,0.08);
    overflow: hidden;
    transition: all 0.2s ease;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
    transition: background 0.2s;
}

.role-header:hover {
    background: rgba(94,159,255,0.1);
}

.role-icon {
    /* Change these values to make the icons bigger or smaller */
    width: 32px;  
    height: 32px; 
    
    color: var(--highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
}

.role-info {
    flex: 1;
}

.role-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.role-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.toggle-icon {
    color: var(--text-tertiary);
    transition: transform 0.3s;
}

.role-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

.role-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    background: rgba(0,0,0,0.1);
    padding: 0 1rem;
}

.role-card.expanded .role-details {
    max-height: 300px; /* adjust as needed */
    padding: 1rem;
}

.role-details p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.role-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--highlight);
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.role-apply:hover {
    background: var(--primary-dark);
}

/* Business card */
.business-card {
    background: rgba(55,5,255,0.03);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.business-card p {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.business-card i {
    width: 1.25rem;
    color: var(--secondary);
}

/* Quick connect buttons */
.quick-connect {
    margin-top: 2rem;
    text-align: center;
}

.quick-connect p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94,159,255,0.1);
    color: var(--highlight);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    margin: 0.5rem;
    font-weight: 500;
    border: 1px solid rgba(94,159,255,0.2);
    transition: all 0.2s;
}

.connect-btn:hover {
    background: var(--highlight);
    color: white;
    border-color: var(--highlight);
}

.careers-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-tertiary);
}

.careers-footer a {
    color: var(--highlight);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 700px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-connect {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .connect-btn {
        margin: 0.5rem 0;
        justify-content: center;
    }

    .filter-chips {
        justify-content: flex-start;
    }
}








