
/* صفحة جهاز الماموجرااام */

        .container-main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .page_subtitle {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
            padding-bottom: 10px;
            margin-bottom: 25px;
            /* border-bottom: 3px solid var(--primary-color); */
            position: relative;
        }
        
  
        
        .margin-bottom-progressive {
            margin-bottom: 30px;
        }
        
        /* تصميم ألبوم الصور */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .grid-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 220px;
        }
        
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .image_block1 {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .image_container {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .image_block1:hover .image_container {
            transform: scale(1.05);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image_block1:hover .overlay {
            opacity: 1;
        }
        
        .overlay i {
            color: rgb(179, 174, 174);
            font-size: 2rem;
            /* background-color: var(--primary-color); */
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
    
        /* العمود الجانبي */
        .side-column {
            padding-right: 30px;
        }
        
        @media (max-width: 768px) {
            .side-column {
                padding-right: 0;
                margin-top: 40px;
            }
        }
        
        .side_image {
            width: 100%;
            border-radius: 2px;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
        }
        
        .side_image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* قائمة اقراء أيضاً" */
        #side_menu {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        #side_menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        #side_menu li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ddd;
        }
        
        #side_menu li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        #side_menu a {
            color: var(--dark-color);
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
            position: relative;
            padding-right: 30px;
        }
        
        #side_menu a:hover {
            background-color: white;
            color: green;
            transform: translateX(-5px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        }
        
        #side_menu a:before {
            content: '\f138';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
        }
        
  
        /* تفاصيل الصورة الرئيسية */
        .main-image-caption {
            background-color: var(--light-gray);
            padding: 15px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-top: -5px;
            font-size: 0.95rem;
            color: var(--dark-color);
            border-top: 3px solid var(--secondary-color);
        }




          /* تصميم قسم الفحوصات المتوفرة */
        .exams-section {
            margin-top: 30px;
        }
        
        .exam-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .exam-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-color);
        }
        
        .exam-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #065f03, #0a8c06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.8rem;
        }
        
        .exam-title {
            color: #008327;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .exam-card:hover .exam-title {
            color: #0a8c06;
        }
        
        .exam-link {
            text-decoration: none;
            display: block;
        }
        
        .exam-link:hover {
            text-decoration: none;
        }
        
        .exams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        @media (max-width: 768px) {
            .exams-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        
        #side_menu a:hover {
            color: #005a15;
        }
/* صفحة جهاز الماموجرااام */