﻿body {
    font-family: 'Cairo', sans-serif;
    background-color: #ffffff;
}

:root {
    --gold-color: #ffc107;
    --dark-bg: #1a1a1a;
}

.bg-dark-custom {
    background-color: var(--dark-bg) !important;
}

.text-gold {
    color: var(--gold-color);
}

.btn-gold {
    background-color: var(--gold-color);
    color: #000;
    font-weight: bold;
}
/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 450px; /* يمكنك التحكم في الارتفاع من هنا */
    background-color: #050a0e; /* لون الخلفية الغامق */
    background-image: radial-gradient(circle at left, rgba(255, 193, 7, 0.2) 0%, transparent 40%), radial-gradient(circle at right, rgba(255, 193, 7, 0.2) 0%, transparent 40%),
    /* تأثير النقاط الذهبية */
    radial-gradient(#ffc107 1px, transparent 1px), radial-gradient(#ffc107 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    background-position: 0 0, 0 0, 0 0, 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    /* تحسين شكل النقاط ليظهر مثل الأقواس في الصورة */
    .hero-section::before, .hero-section::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border: 2px dotted #ffc107;
        border-radius: 50%;
        opacity: 0.3;
    }

    .hero-section::before {
        left: -250px;
    }

    .hero-section::after {
        right: -250px;
    }

.hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* زر التواصل */
.btn-outline-light {
    border: 2px solid #fff;
    transition: 0.3s;
}

    .btn-outline-light:hover {
        background-color: #ffc107;
        border-color: #ffc107;
        color: #000;
    }

/* أيقونة الواتساب الخضراء */
.whatsapp-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 100;
}
/* Section Title */
.section-title {
    color: #1a1a1a;
    position: relative;
    padding-bottom: 10px;
}

.title-line {
    width: 50px;
    height: 3px;
    background-color: #0d6efd; /* اللون الأزرق اللي في الصورة تحت العنوان */
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

.card-img-wrapper {
    position: relative;
    height: 180px;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* المثلث الأصفر المميز في الصورة */
.gold-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--gold-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.card-content h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.card-content p {
    line-height: 1.6;
}
/* Footer Styles */
.footer-section {
    background-color: #2c2c2c; /* لون الخلفية الداكن من الصورة */
    color: #b0b0b0;
    font-size: 0.9rem;
}

    .footer-section h5 {
        font-size: 1.1rem;
        position: relative;
    }

.text-info {
    color: #5bb2fc !important; /* لون الروابط الأزرق الفاتح */
}

/* Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

    .social-icon:hover {
        background-color: #5bb2fc;
        color: #fff;
    }

/* Newsletter Input */
.custom-newsletter input {
    background-color: #fff;
    border: none;
    border-radius: 0;
}

.custom-newsletter .btn-primary {
    background-color: #5bb2fc;
    border: none;
    border-radius: 0;
}

/* Bottom Copyright Bar */
.footer-bottom {
    background-color: #1a1a1a; /* لون أغمق للبار السفلي */
    border-top: 1px solid #3d3d3d;
}

.payment-methods img {
    height: 25px;
    filter: grayscale(0.2);
}
