﻿*{
    font-family: 'Noto Kufi Arabic', sans-serif;
}

body {
    background-color: #eee;
    padding-top: 230px;
}

.custom-navbar {
    background-color: #1E5F74;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.custom-navbar .nav-link {
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 0.25rem;
}

.custom-navbar .nav-link:hover {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link.active {
    background-color: #FCDAB7;
    color: rgb(8, 8, 8) !important;
}

.custom-footer {
    background-color: #133B5C;
}

.content-paragraph {
    background-color: #f8f9fa;
    color: #212529;
    font-size: 1.25rem;
    line-height: 1.8;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    max-width: 900px;
    margin: 40px auto 60px auto;
    text-align: center;
    font-family: 'Noto Kufi Arabic', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-paragraph:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}