* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Arabic', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("ahmed-salim-alkanani.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.profile-info {
    margin-bottom: 40px;
    position: relative;
}

.flag-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

p {
    font-size: 1.4em;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.1em;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .icon-img {
        width: 35px;
        height: 35px;
    }

    .flag-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
        white-space: normal;
        line-height: 1.2;
    }

    p {
        font-size: 1em;
    }

    .social-icons {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        width: 55px;
        height: 55px;
    }

    .icon-img {
        width: 30px;
        height: 30px;
    }

    .flag-icon {
        width: 60px;
        height: 60px;
    }

    .profile-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 1.6em;
    }

    p {
        font-size: 0.9em;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .icon-img {
        width: 25px;
        height: 25px;
    }
}


