@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zain:wght@200;300;400;700;800;900&display=swap');


* {
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
}
body {
    /* overflow-x: hidden; */
    /* display: flex; */
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    /* background-image: #121212; */
    /* background-color: transparent; */
    background-color: #8ed4d4;
    background-image: radial-gradient(#ffffff 1px, #e4e4e494 1px);
    /* background-image: radial-gradient(#000000 1px, #e5e5f7 1px); */
}


/* تخصيص الشريط */
::-webkit-scrollbar {
    width: 8px; /* عرض الشريط العمودي */
    height: 8px; /* عرض الشريط الأفقي */
}

  /* تخصيص المسار (الخلفية) */
::-webkit-scrollbar-track {
    background: #e0e0e071; /* لون الخلفية */
    border-radius: 10px; /* زوايا دائرية */
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1); /* ظل داخلي خفيف */
}

  /* تخصيص المقبض (المتحرك) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #f06595); /* لون متدرج للمقبض */
    border-radius: 10px; /* زوايا دائرية للمقبض */
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2); /* ظل داخلي لتمييز المقبض */
}

  /* تخصيص المقبض عند التحويم */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6b6b, #d6336c); /* لون متدرج داكن عند التحويم */
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* يمكن تعديل القيمة لجعل الحركة تظهر من الأسفل */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#scrollToTopBtn {
    width: 3.5rem;
    display: none; /* الإخفاء الافتراضي */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #5372f088;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.5rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    opacity: 0; /* يبدأ مخفيًا */
    transition: background-color 1s, opacity 1s; /* تأثير الانتقال */
}
#scrollToTopBtn.show {
    display: block;
    animation: fadeIn 1s forwards; /* تطبيق التأثير */
}



.test-1{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.test-1 img{
    width: 40%;
    margin: auto;
}


.media-icons{
    display: flex;
}
.media-icons a{
    height: 50px;
    width: 50px;
    /* background: rgba(255, 0, 0, 0.24); */
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.6s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    justify-content: center;
    align-items: center;
}
.media-icons .m-x{
    font-size: 2rem;
    background: #121212;
}
.media-icons .m-x:hover{
    color: #121212;
    background: #fff;
}
.media-icons .m-i{
    font-size: 2rem;
    background:  linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.media-icons .m-i:hover{
    color: #E1306C;
    background: #fff;
}
.media-icons .m-w{
    font-size: 2rem;
    background: #12bc7e;
}
.media-icons .m-w:hover{
    color: #12bc7e;
    background: #fff;
}
.media-icons .m-m{
    font-size: 2rem;
    background: #be2826;
}
.media-icons .m-m:hover{
    color: #be2826;
    background: #fff;
}
.media-icons .m-t{
    font-size: 2rem;
    background: #24A1DE;
}
.media-icons .m-t:hover{
    color: #24A1DE;
    background: #fff;
}
.media-icons .m-c{
    font-size: 2rem;
    background: #41ca70;
}
.media-icons .m-c:hover{
    color: #41ca70;
    background: #fff;
}





/* "inof-photo-text */
.inof-photo-text {
    /* background-color: rgb(252, 244, 234); */
    padding: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
}
.inof-photo-text .info-photo{
    width: 40%;
}
.inof-photo-text .info-photo img{
    width: 100%;
    border-radius: 6%;
    box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.5);
}
.inof-photo-text .info-text{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.inof-photo-text .info-text .info-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.inof-photo-text .info-text .info-title h2{
    color: #1D4680;
}
.inof-photo-text .info-text .info-title p{
    color: #132c50;
    font-family: "Zain", serif;
    font-weight: 750;
    font-size: large;
}

@media (max-width: 700px){
    .inof-photo-text {
        flex-direction: column;
        gap: 2rem;
    }
    .inof-photo-text .info-text {
        width: 93%;
    }
    .inof-photo-text .info-photo {
        width: 70%;
    }
}




/* icon-serf */
.icon-serf{
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.icon-serf .icon-1 img{
    width: 4rem;
}
.icon-serf .icon-1 p{
    text-align: center;
    color: #132c50;
}
.icon-serf .icon-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    transition: all 0.4s ease-in-out;
}
.icon-serf .icon-1:hover{
    transform: scale(1.1);
}
