.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    margin-left: 10px; /* ترحيل الشعار إلى اليمين */
}
.navbar-brand .brand-text {
    font-size: 0.8rem; /* تصغير حجم النص */
    line-height: 1.2; /* جعل النص على سطرين */
    text-align: center; /* توصيط النص */
}
.navbar-nav.ms-auto {
    margin-left: auto;
}
.btn-custom {
    font-size: 1rem; /* حجم النص */
    padding: 10px 20px; /* حجم الزر */
    border-radius: 5px; /* تدوير الزوايا */
}
.btn-login {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}
.btn-login:hover {
    background-color: #0056b3;
    border-color: #004085;
}
.btn-register {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}
.btn-register:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
section.pricing {
    background: #007bff;
    background: linear-gradient(to right, #0062E6, #33AEFF);
}

.pricing .card {
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 50px; /* زيادة المسافة بين البطاقات */
}

.pricing hr {
    margin: 1.5rem 0;
}

.pricing .card-title {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: .1rem;
    font-weight: bold;
}

.pricing .card-price {
    font-size: 3rem;
    margin: 0;
}

.pricing .card-price .period {
    font-size: 0.8rem;
}

.pricing ul li {
    margin-bottom: 1rem;
}

.pricing .text-muted {
    opacity: 0.7;
}

.pricing .btn {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: .1rem;
    font-weight: bold;
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.2s;
}
/* Hover Effects on Card */
@media (min-width: 992px) {
    .pricing .card:hover {
        margin-top: -.25rem;
        margin-bottom: .25rem;
        box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    }
    .pricing .card:hover .btn {
        opacity: 1;
    }
}

/* تنسيق صورة العميل */
.client-box img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.client-box {
    text-align: center;
    margin-bottom: 20px;
}
body {
    font-family: 'Cairo', sans-serif;
}
.pricing-plans-section {
    padding: 60px 0;
    background: #007bff;
    background: linear-gradient(to right, #0062E6, #33AEFF);
}
.pricing-plan-item {
    margin-bottom: 30px;
    padding: 20px;
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}
.pricing-plan-item h3 {
    margin-bottom: 15px;
}
.pricing-plan-item p {
    margin-bottom: 10px;
}
