@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');


body::-webkit-scrollbar {
    width: 8px
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar-thumb {
    background-color: var(--lightHelper);
    background-image: linear-gradient(0deg, var(--lightHelper) 0%, var(--helperColor) 100%);
    border-radius: 5px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;

}

ul {
    list-style: none;
}
.footer {
    /* background: var(--helperColor); */
       background:
    linear-gradient(rgba(47, 49, 51, 0.7), rgba(44, 48, 53, 0.7)),
    url("../img/footer.jpg");
    color: #fff;
    padding: 40px;
}
.logo-and-intro{
    display: flex;
}
.logo-and-intro .footer-logo{
    text-align: right;
}
.upper-footer-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo img {
    width: 40%;
    margin-bottom: 15px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid var(--primaryColor);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ddd;
    font-size: 18px;

    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color:var(--primaryColor);
}

/* الفوتر السفلي */
.footer-bottom {
    /* background: var(--primaryColor); */
    text-align: center;
    padding: 15px;
    font-size: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color:var(--helperColor);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* موبايل */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .upper-footer-container {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .footer-logo img {
        margin: 0 auto 15px;
    }
    .logo-and-intro{
        display: flex;
        flex-direction: column;
    }
   
}
.contact-list li{
display:flex;
flex-direction: row-reverse;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.contact-icon{
width:32px;
height:32px;
background:#0b5ed7;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:14px;
flex-shrink:0;
}

.contact-list a{
color:#fff;
text-decoration:none;
text-align:left;
direction:ltr;
}