/* تخصيص الأزرار من نوع btn-outline-primary لتغيير اللون إلى dark pink */
.btn-outline-primary {
    border-color: #D5006D;  /* Dark Pink */
    color: #D5006D;  /* Dark Pink */
}

/* تخصيص الأزرار عند التمرير عليها (Hover) */
.btn-outline-primary:hover {
    background-color: #D5006D;  /* Dark Pink */
    color: #fff;  /* أبيض */
    border-color: #D5006D;  /* نفس اللون عند التمرير */
}

/* تأثير عام على الأزرار */
.btn {
    transition: all 0.3s ease;
}

/* تحسين استجابة الصور في الصفحات */
img {
    max-width: 100%;
    height: auto;
}

/* جسم الصفحة */
body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
}

/* خصائص Hero Section */
.hero-section {
    background-color: #D5006D;  /* Dark Pink */
    padding: 80px 0; /* جعل المسافة حول النص أكثر */
}

/* التأثير على المربع المميز (feature-box) */
.feature-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* تأثير عند التمرير على المربع */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* تنسيق الأيقونات */
.icon-large {
    font-size: 40px;
    color: #D5006D;  /* Dark Pink */
}

/* تحسين التوافق على الشاشات الصغيرة */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .feature-box {
        margin-bottom: 20px;
    }

    .footer-icon {
        font-size: 20px;
        margin: 0 8px;
    }

    .hero-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .navbar-nav {
        font-size: 1rem;
    }

    .hero-section {
        padding: 20px 0;
    }

    .btn {
        width: 100%;
    }
}
