:root {
    --gold: #D4AF37;
    --soft-gold: #f1d592;
    --black: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.95);
}
body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    z-index: 0;
}
body::before {
    content: ""; /* ضروري لظهور العنصر */
    position: absolute; /* وضعه بشكل مطلق بالنسبة للـ body */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* ضع مسار صورتك هنا */
    background-image: url('images/Asterbackground.PNG'); 
    
    background-repeat: no-repeat;
    background-position: center center;
    
    /* التحكم في الحجم: contain تحافظ على الأبعاد، auto للحجم الأصلي */
    background-size: contain; 

    /* أهم خاصية: الشفافية. 0.05 تعني 5% فقط، مما يجعلها باهتة جداً */
    opacity: 0.09; 
    
    /* يضمن أن الصورة تقع خلف كل محتوى الصفحة */
    z-index: -1; 
}
.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}
.gold-text{
    color: var(--gold);
}
/* Circle Logo */
.logo-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 5px;
    background: var(--black);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* Info Section (No Image) */
.info-section {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.company-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.company-description {
    color: #cccccc;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
}
ul.company-description{
    line-height: 1.2;
}
.end-text{
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
}
/* Social Links */
.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s transform, 0.3s box-shadow;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-social {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

.btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    background: var(--gold);
    color: var(--black);
}

/* Save Contact Button */
.btn-save {
    background: transparent;
    color: var(--gold);
    margin-top: 20px;
    border: none;
    gap: 5px;
    padding: 16px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.btn-save:active {
    transform: scale(0.98);
}

.btn-save:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    background:transparent;
    color: var(--gold);
}
/* Phone Numbers */
.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.phone-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 10px 0;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--gold);
}

.phone-link i {
    color: var(--gold);
    margin-right: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsive Text */
@media (max-width: 400px) {
    .company-name { font-size: 1.6rem; }
    .company-description { font-size: 0.9rem; }
}