:root {
    --bg-color: #f8f9fa;
    --text-color: #1e2329;
    --btn-bg: #ffffff;
    --btn-hover: #f1f1f1;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --primary-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 340px;
    max-width: 580px;
    text-align: center;
}

/* Profile Section */
.profile {
    margin-bottom: 32px;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #fff;
    box-shadow: var(--shadow);
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Links Section */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.link-item {
    background-color: var(--btn-bg);
    color: var(--text-color);
    text-decoration: none; /* Removes the underline */
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    display: flex;
    align-items: center; /* Vertically center the text and image */
    justify-content: center; /* Ensure the content is centered */
    position: relative;
    width: 350px; /* Fixed width for the button */
    gap: 10px; /* Optional: space between text and image */
}

.text {
    flex-grow: 1; /* Ensures the text takes up the remaining space */
    text-align: center; /* Center the text */
}

.link-item img.link-item-icon {
    width: 20px; /* Set the image width */
    height: 20px; /* Set the image height */
    object-fit: contain; /* Ensures the image maintains its aspect ratio */
    margin-left: auto; /* Pushes the image to the right edge */
}

.link-item:hover {
    background-color: var(--btn-hover);
    transform: scale(1.02);
    border-color: #ddd;
}

.link-item.hidden {
    display: none; /* Hide the link if it has the "hidden" class */
}









/* Social Icons (Optional) */
.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 580px;
        text-align: center;
    }
    .profile-img {
        width: 80px;
        height: 80px;
    }
    .link-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}
.hidden {
    display: none;
}

.button-container{
    padding-top: 6px;
}
.button-container a {
    padding: 0 8px;
    background-color: white; /* Button background color */
    color: #000000; /* Text color */
    border: 2px solid #CD924E; /* Yellow border */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.button-container a:hover {
    background-color: #CD924E; /* Change to yellow on hover */
    color: white; /* Text color turns white on hover */
}
.lang-button-flag{
    padding-top:  16px ;
    height: 30px;
}

.company-copyright a{
    color: #CD924E;
    text-decoration: none;
    font-weight: bold;
}