body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-attachment: fixed;
    height: 110vh;

}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1 {
    color: #f4c500;
    margin-bottom: 20px;
    font-size: 28px;
}
p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.contact-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.contact-info a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover {
    text-decoration: underline;
}
.divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}
.arabic-text {
    font-size: 20px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    p, .arabic-text {
        font-size: 16px;
    }
}

nav {
    left: -2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: #f4c500;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

a:hover {
    color: #f4c500;
}


.content {
    flex: 1; 
    padding: 20px;
    text-align: center;
}

.footer {
    background-color: #4d4d4d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-icons {
    margin-bottom: 10px;
}

.icon-link {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #f4c500; 
}

.copyright {
    font-size: 14px;
    margin: 0;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f4c500;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    background-color: #b99400;
}

#back-to-top i {
    margin-top: 2px;
}

.logo {
    cursor: pointer;
    width: 275px;
    height: 100px;
    position: relative;
    left: 2%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {



    #back-to-top {
        right: 60px;
    }

    body {
        height: 120vh;
    }

    .logo {
        width: 85px;
        height: 85px;
      }
  
      .menu {
        align-items: flex-start;
        position: absolute;
        left: 30%;
    }
  
    nav a {
      left: 700px;
      padding-left: 1px;
    }
}