@font-face {
    font-family: Tafahna;
    src: url(../fonts/alfont_com_AlFont_com_Ahlan-World-.otf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Tafahna', cursive;
}

body {
    background: #ededed;
}

/* navbar */
.nav-bar {
    width: 100%;
    position: relative;
}

.nav-bar .nav-top {
    width: 100%;
    height: 48px;
    display: inline-block;
    border-top: 2px solid red;
    background-color: #fff;
}

.nav-bar .nav-top .color-nav-top {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav-bar .nav-top .color-nav-top a.login {
    text-decoration: none;
    color: beige;
    padding: 9px 25px;
    font-size: 18px;
    background-color: red;
    transition: .5s;
}

.nav-bar .nav-top .color-nav-top a.login:hover {
    color: yellow;
}

.nav-bar .nav-top .color-nav-top h2.president {
    font-size: 13px;
    padding: 13px 0;
    text-align: center;
    color: #686868;
}

.nav-bar .nav-top .color-nav-top .clock-time {
    display: flex;
}

.nav-bar .nav-top .color-nav-top .clock-time img.clock {
    width: 39px;
    height: 39px;
    margin: 3px 9px;
}

.nav-bar .nav-top .color-nav-top .clock-time p {
    font-size: 15px;
    line-height: 17px;
    margin: 5px 0;
}

.nav-bar .nav-top .color-nav-top .clock-time p span {
    display: block;
    font-size: 15px;
    color: #b3b3b3;
}

.nav-bar .nav-bottom {
    width: 100%;
    height: 61px;
    display: inline-block;
    background-color: #494949;
}

.nav-bar .nav-bottom .nav-color-bottom {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.nav-bar .nav-bottom .nav-color-bottom .logo {
    width: 178px;
    height: 52px;
    /* border-left: 2px solid #fff; */
    background: #fff;
}

.nav-bar .nav-bottom .nav-color-bottom .logo img.img-logo {
    width: 100%;
    height: 100%;
}

.nav-bar .nav-bottom .ul-links ul {
    display: flex;
    list-style: none;
    margin: 0 10px;
}

/* .nav-bar .nav-bottom .ul-links ul li a{
    padding: 16px 20px;
    font-size: 13px;
    transition: 0.8s;
} */

/* .nav-bar .nav-bottom .ul-links ul li:hover {
    background-color: red;
} */

.nav-bar .nav-bottom .ul-links ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 16px 20px;
    text-decoration: none;
    transition: 0.8s;
}

.nav-bar .nav-bottom .ul-links ul li .a:hover,
:focus {
    color: yellow;
    background-color: red;
}

.nav-bar .nav-bottom .connectus {
    text-decoration: none;
    color: #fff;
    padding: 9px 35px;
    font-size: 18px;
    transition: .5s;
    background-color: red;
}

.nav-bar .nav-bottom .connectus:hover {
    color: yellow;
}


/* menu navbar */
.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.background-menu {
    display: none;
}

/* end menu navbar */

/*** 
=============== slider
*/

.slider-img {
    position: relative;
    top: -8px;
}

.img-header-li {
    display: none;
}

.img-header {
    width: 100%;
    height: 420px;
}

.slider {
    width: 100%;
    margin-top: -378px;
}

.slider input {
    display: none;
}

.testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 331px;
    perspective: 1000px;
    overflow: hidden;
}

.testimonials .item {
    width: 450px;
    padding: 30px;
    border-radius: 5px;
    background-color: #ffffffe1;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.4s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.526);
    user-select: none;
    cursor: pointer;
}

.testimonials .item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #0000000b;
}

.testimonials .item p {
    color: black;
}

.testimonials .item h2 {
    font-size: 15px;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots label {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #312b42;
    margin: 7px;
    transition-duration: 0.2s;
}


#t-1:checked~.dots label[for="t-1"],
#t-2:checked~.dots label[for="t-2"],
#t-3:checked~.dots label[for="t-3"],
#t-4:checked~.dots label[for="t-4"],
#t-5:checked~.dots label[for="t-5"] {
    transform: scale(2);
    background-color: rgb(153, 209, 244)
}

#t-1:checked~.dots label[for="t-2"],
#t-2:checked~.dots label[for="t-1"],
#t-2:checked~.dots label[for="t-3"],
#t-3:checked~.dots label[for="t-2"],
#t-3:checked~.dots label[for="t-4"],
#t-4:checked~.dots label[for="t-3"],
#t-5:checked~.dots label[for="t-5"],
#t-4:checked~.dots label[for="t-4"] {
    transform: scale(1.5)
}

#t-1:checked~.testimonials label[for="t-3"],
#t-2:checked~.testimonials label[for="t-4"],
#t-3:checked~.testimonials label[for="t-5"],
#t-4:checked~.testimonials label[for="t-1"],
#t-5:checked~.testimonials label[for="t-2"] {
    transform: translate3d(600px, 0, -180px)rotateY(-25deg);
    z-index: 2
}

#t-1:checked~.testimonials label[for="t-2"],
#t-2:checked~.testimonials label[for="t-3"],
#t-3:checked~.testimonials label[for="t-4"],
#t-4:checked~.testimonials label[for="t-5"],
#t-5:checked~.testimonials label[for="t-1"] {
    transform: translate3d(300px, 0, -90px)rotateY(-15deg);
    z-index: 3
}

#t-2:checked~.testimonials label[for="t-1"],
#t-3:checked~.testimonials label[for="t-2"],
#t-4:checked~.testimonials label[for="t-3"],
#t-5:checked~.testimonials label[for="t-4"],
#t-1:checked~.testimonials label[for="t-5"] {
    transform: translate3d(-300px, 0, -90px)rotateY(15deg);
    z-index: 3
}

#t-3:checked~.testimonials label[for="t-1"],
#t-4:checked~.testimonials label[for="t-2"],
#t-5:checked~.testimonials label[for="t-3"],
#t-2:checked~.testimonials label[for="t-4"],
#t-1:checked~.testimonials label[for="t-5"] {
    transform: translate3d(-600px, 0, -180px)rotateY(25deg)
}

#t-1:checked~.testimonials label[for="t-1"],
#t-2:checked~.testimonials label[for="t-2"],
#t-3:checked~.testimonials label[for="t-3"],
#t-4:checked~.testimonials label[for="t-4"],
#t-5:checked~.testimonials label[for="t-4"],
#t-5:checked~.testimonials label[for="t-5"] {
    z-index: 5
}


/* introduction */

.introduction {
    width: 100%;
    margin-top: 20px;
    background-color: #ededed;
}

.introduction .width-80 {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.introduction .width-80 .intro-right {
    width: 60%;

    width: 90%;
    overflow: auto;
    margin-top: 59px;
    padding: 13px;

}

.introduction .width-80 .intro-right p.introduction-about {
    text-align: justify;
    font-size: 15px;
    color: #4e4e4e;
}

.introduction .width-80 .intro-left {
    width: 36%;
    height: 355px;
    margin-top: 59px;
    border-radius: 7px;
}

.introduction .width-80 .intro-left img.dr {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

/* Start latest news */

.latest-news {
    width: 100%;
    position: relative;
}

.latest-news .news-wi-al {
    width: 98%;
    margin: 0px auto;
    margin-top: 40px;
}

.latest-news .news-wi-al .news-bo {
    padding: 25px 0;
    width: 100%;
    height: 450px;
}

.latest-news .news-wi-al .news-bo .latest-img {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
}

.latest-news .news-wi-al .news-bo .latest-span-all {
    position: relative;
}

.latest-news .news-wi-al .news-bo .latest-span {
    width: 100%;
    height: 91px;
    margin-top: -99px;
    background-color: rgba(9, 39, 54, 0.8);
    opacity: 0.9;
}


.latest-news .news-wi-al .news-bo .latest-span .span-news {
    display: inline-block;
    opacity: 1;
    color: #fff;
    margin: 30px 70px 0px 0px;
    font-size: 37px;
}

/* start bloges */

.latest-blogs {
    width: 100%;
}

.latest-blogs .latest-blogs-wi {
    width: 80%;
    margin: 0 auto;
}

.latest-blogs .latest-blogs-wi .center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.latest-blogs .latest-blogs-wi .center p.c-c-v {
    font-size: 32px;
    position: relative;
    padding-bottom: 5px;
}

p.c-c-v::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}

p.c-c-v::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.latest-blogs .latest-blogs-wi .center span.latest-blogs-span {
    font-size: 32px;
    color: #106eea;
}

/* card blogs */
.card-warp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 343px;
    background: rgb(255, 255, 255);
    padding: 20px;
    margin: 15px 31px;
}

img.card-img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    transition: 0.5s;
}

img.card-img:hover {
    filter: drop-shadow(2px 4px 6px black);
    transform: translate(10px, 10px);
    cursor: cell;
}

.card::after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 50%;
    height: 10px;
    bottom: 15px;
    right: 0;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
    transform: rotate(5deg);
    transition: all 0.1s ease-in;
}

.card::before {
    z-index: -1;
    content: "";
    position: absolute;
    width: 50%;
    height: 10px;
    bottom: 15px;
    left: 0;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
    transform: rotate(-5deg);
    transition: all 0.1s ease-in;
}

.card:hover:before,
.card:hover:after {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.6);
}

.card:hover:before {
    transform: rotate(-8deg);
}

.card:hover:after {
    transform: rotate(8deg);
}

.card__img {
    position: relative;
    background: rgba(9, 39, 54, 0.8);
    background: linear-gradient(315deg, #68ffc0, #007c0d);
    width: 100%;
    height: 175px;
}

.card__span {
    cursor: pointer;
    font-size: 11px;
    position: absolute;
    background-color: white;
    top: 10px;
    left: 10px;
    padding: 3px 7px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in;
    user-select: none;
}

.card__span:hover {
    transform: translateX(5px);
}

.card-int {
    padding: 20px 0 0 0;
}

.card-int__title {
    font-weight: bold;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.card-int__button {
    cursor: pointer;
    margin: 20px 0 0 0;
    padding: 7px 20px;
    width: 100%;
    background-color: rgb(216, 255, 234);
    border: none;
    color: black;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    transition: box-shadow 0.1s ease-in;
    user-select: none;
}

.card-int__button:active {
    box-shadow: 0px 0px 15px rgba(0, 119, 255, 0.5);
}

.card-int__button:hover::before {
    animation: effect_two 0.4s 1;
}

.card-int__button::before {
    content: 'شاهد المذيد';
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: #092736cc;
    background: linear-gradient(315deg, #68ffc0, #092736cc);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-99%);
    z-index: 1;
    animation: effect_one 10s infinite;
}

.card-int__button:hover::before {
    transform: translateX(0%);
}

.excerpt {
    font-size: 14px;
}

@keyframes effect_one {
    0% {
        transform: translateX(-99%);
    }

    25% {
        transform: translateX(-90%);
    }

    50% {
        transform: translateX(-80%);
    }

    75% {
        transform: translateX(-95%);
    }

    100% {
        transform: translateX(-99%);
    }
}

@keyframes effect_two {
    to {
        transform: translateX(-1%);
    }

    from {
        transform: translateX(-99%);
    }
}

/* tart Pricing */

.pricing-section {
    padding: 100px 20px;
    background: #ededed;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    color: #111827;
}

.section-header p {
    color: #6b7280;
    margin-top: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.pricing-card.show {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card h3 {
    font-size: 22px;
    color: #1f2937;
}

.price {
    font-size: 42px;
    font-weight: bold;
    margin: 20px 0 5px;
    color: #111827;
}

.price span {
    font-size: 16px;
    font-weight: normal;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

ul li {
    margin-bottom: 12px;
    color: #4b5563;
}

.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.btn-primary {
    background: #2563eb;
}

.whatsapp {
    background: #16a34a;
}

.trust-note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #374151;
}

/* End Pricing */

/* start page */
.privacy-center-section {
    padding: 100px 20px;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.privacy-wrapper {
    display: flex;
    justify-content: center;
}

.privacy-box {
    width: 85%;
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 55px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(0, 0, 0, 0.03);
}

.privacy-head {
    text-align: center;
    margin-bottom: 35px;
}

.privacy-head h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 12px;
}

.divider {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.privacy-body p {
    font-size: 16px;
    line-height: 2;
    color: #334155;
    margin-bottom: 18px;
}

.privacy-footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-box {
        width: 85%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .privacy-box {
        width: 100%;
        padding: 30px 25px;
    }

    .privacy-head h2 {
        font-size: 28px;
    }

    .privacy-body p {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* end page */

/* start Blog */
.articles-section {
    padding: 100px 20px;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.articles-header {
    text-align: center;
    margin-bottom: 50px;
}

.articles-header h2 {
    font-size: 32px;
    color: #0f172a;
}

.articles-header p {
    color: #64748b;
    margin-top: 10px;
}

/* Grid: 3 columns */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.article-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.article-card.featured {
    border: 2px solid #2563eb;
}

/* Image */
.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.article-body {
    padding: 18px 20px 22px;
}

.article-tag {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 14px;
    background: #e5e7eb;
    color: #374151;
}

.article-tag.primary {
    background: #2563eb;
    color: #fff;
}

.article-body h3 {
    font-size: 16px;
    margin: 12px 0 14px;
    color: #0f172a;
    line-height: 1.5;
}

.article-link {
    font-size: 13px;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}



.article-view-section {
    padding: 90px 20px;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.container_view {
    max-width: 1200px;
    margin: auto;
}

.article-view {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 55px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    background: #2563eb;
    color: #ffffff;
}

.article-header h1 {
    font-size: 34px;
    color: #0f172a;
    margin: 18px 0 12px;
    line-height: 1.4;
}

.article-meta {
    font-size: 14px;
    color: #64748b;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Image */
.article-hero {
    margin: 40px 0;
    border-radius: 18px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Content */
.article-content p {
    font-size: 16px;
    line-height: 2;
    color: #334155;
    margin-bottom: 22px;
}

.article-content h2 {
    font-size: 22px;
    color: #0f172a;
    margin: 35px 0 15px;
    border-right: 4px solid #2563eb;
    padding-right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-view {
        padding: 35px 25px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-content p {
        font-size: 15px;
        line-height: 1.9;
    }
}


/* end Blog */
/* start exams-directory */
.exams-directory-section {
    padding: 90px 20px;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.exams-directory-header {
    text-align: center;
    margin-bottom: 60px;
}

.exams-directory-header h2 {
    font-size: 34px;
    color: #0f172a;
}

.exams-directory-header p {
    margin-top: 10px;
    color: #64748b;
}

/* Grid */
.exams-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.exam-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 30px 32px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.exam-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
}

.exam-item h3 {
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.exam-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 22px;
}

/* Details Button */
.exam-details-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #2563eb;
    background: #eff6ff;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.exam-details-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .exams-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .exams-directory-grid {
        grid-template-columns: 1fr;
    }
}

/* end exams-directory */

/* start exam-details */
.exam-view-section {
    padding: 100px 20px;
    direction: rtl;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.exam-view-container {
    max-width: 900px;
    margin: auto;
}

.exam-view-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 55px 60px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Header */
.exam-view-header {
    text-align: center;
    margin-bottom: 45px;
}

.exam-view-category {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 20px;
    background: #2563eb;
    color: #ffffff;
}

.exam-view-title {
    font-size: 34px;
    color: #0f172a;
    margin: 20px 0 14px;
    line-height: 1.4;
}

.exam-view-intro {
    font-size: 16px;
    line-height: 2;
    color: #475569;
}

/* Hero */
.exam-view-hero {
    margin: 45px 0;
    border-radius: 18px;
    overflow: hidden;
}

.exam-view-hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Content */
.exam-view-heading {
    font-size: 22px;
    color: #0f172a;
    margin: 40px 0 15px;
    border-right: 4px solid #2563eb;
    padding-right: 12px;
}

.exam-view-text {
    font-size: 16px;
    line-height: 2;
    color: #334155;
    margin-bottom: 20px;
}

.exam-view-list {
    margin: 15px 0 25px;
    padding-right: 20px;
}

.exam-view-list li {
    font-size: 15px;
    color: #334155;
    line-height: 1.9;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .exam-view-card {
        padding: 35px 25px;
    }

    .exam-view-title {
        font-size: 28px;
    }

    .exam-view-text,
    .exam-view-list li {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* end exam-details */


.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 8px 6px;
    background: transparent; /* لا background كبير */
    z-index: 9999;
}

/* Icon */
.social-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;
    border-radius: 10px;

    text-decoration: none;
    transition: all .3s ease;
}

.social-icon:hover {
    transform: translateX(6px);
}

/* Platform colors */
.instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.facebook  { background: #1877f2; }
.twitter   { background: #000; }
.linkedin  { background: #0a66c2; }
.youtube   { background: #ff0000; }
.tiktok    { background: #000; }
.snapchat  { background: #fffc00; color: #000; }


/* footer */
.footer {
    width: 100%;
    background-color: #494949;
    margin-top: 40px;
}

.footer .footer-width {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
}

.footer .footer-width .footer-right {
    width: 40%;
    margin: 47px 0;
}

.footer .footer-width .footer-right label.su {
    display: block;
    color: #fff;
    font-size: 16px;
}

.footer .footer-width .footer-right input.email-footer {
    width: 60%;
    padding: 10px;
    border-radius: 7px;
    outline: none;
    border: none;
}

.footer .footer-width .footer-right input.submit-footer {
    width: 20%;
    padding: 10px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin: 20px 5px;
    transition: .5s;
}


.footer .footer-width .footer-right input.submit-footer:hover {
    background-color: red;
    color: yellow;
}

.social-footer i {
    color: #fff;
    margin: 10px;
    font-size: 27px;
}

.footer .footer-width .footer-left {
    width: 55%;
    display: block;
    margin: 47px 0;
    border-right: 2px solid #fff;
}

.footer .footer-width .footer-left .center-footer {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}

.footer .footer-width .footer-left .center-footer img.logo-footer {
    cursor: pointer;
    width: 200px;
    height: 84px;
}

.footer .footer-width .footer-left p.prag-footer {
    text-align: justify;
    padding: 5px 85px 5px 0;
    color: #fff;
}


.coby-right {
    display: flex;
    justify-content: space-between;
    background: #313131;
    border-top: 1px solid yellow;
}

.coby-right .right-c {
    display: flex;
    padding: 6px 10px;
    margin: 9px 0;
}

.coby-right .right-c p.right-co {
    color: #fff;
    padding: 5px;
}

.coby-right .right-c h1.h1 {
    font-size: 22px;
    color: #c39f2b;
}

.coby-right .left-c {
    display: flex;
    padding: 6px 10px;
    margin: 9px 0;
}

.coby-right .left-c p.left-co {
    color: #fff;
    padding: 5px;
}

a.omar-yassen {
    color: #c39f2c;
    text-decoration: none;
    font-size: 17px;
}