/* General Body Styles */
body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand img {
    margin-left: 10px;
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #3DA5F4 !important;
}

/* Hero Carousel Styles */
#heroCarousel .carousel-item img {
    height: 60vh;
    object-fit: cover;
}

#heroCarousel .carousel-caption {
    bottom: 20%;
    background-color: rgba(44, 131, 230, 0.7);
    padding: 20px;
    border-radius: 10px;
}

/* Section Titles */
h2 {
    color: #002D62;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: #3DA5F4;
    border-radius: 2px;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card-title {
    color: #002D62;
    font-weight: 700;
}

.btn-primary {
    background-color: #002D62;
    border-color: #002D62;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #001f45;
    border-color: #001f45;
}

.btn-secondary {
    background-color: #3DA5F4;
    border-color: #3DA5F4;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #2a93e0;
    border-color: #2a93e0;
}


/* Footer Styles */
footer {
    padding-top: 20px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #3DA5F4 !important;
}

.social-icons a {
    font-size: 1.5rem;
}
