:root {
    --primary-color: #2563eb; /* أزرق أساسي */
    --secondary-color: #0ea5e9; /* سماوي */
    --accent-color: #10b981; /* أخضر للنجاح */
    --dark-color: #0f172a; /* كحلي غامق للنصوص */
    --light-bg: #f8fafc; /* خلفية فاتحة جداً */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --border-radius: 1rem;
}

body {
   font-family: 'Cairo', system-ui, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-color);
    overflow-x: hidden;
}

/* --- التحريكات (Animations) --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Section --- */
.main-hero-panel {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.5;
    z-index: 0;
}

.hero-bg-shape {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 5px solid #fff;
}

    .hero-image-wrap:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-image-wrap img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.tag-line {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.main-title {
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn-medical-main {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px
}

.cta-content-box {
    /* تدرج داكن جداً */
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 2rem;
    position: relative;
    border: 1px solid #334155; /* إطار خفيف جداً */
}

/* --- Product cards (Home featured products) --- */
.product-card-simple {
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card-img-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

    .product-card-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-card-info {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .product-card-img-container {
        height: 200px;
    }
}