:root {
    --primary-color: #1a5276;
    --secondary-color: #2e86c1;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Cairo', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 70%)), url(../img/slider-01.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-section {
    padding: 80px 0;
}

.goals-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.services-section {
    padding: 80px 0;
}

.stats-section {
    background: linear-gradient(rgb(0 0 0 / 93%), rgb(0 0 0 / 63%)), url(https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.testimonials-section {
    padding: 80px 0;
}

.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-card {
    border-left: 4px solid var(--accent-color);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.hero-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.navbar-brand img {
    width: 90px;
}
.btn-action {
    background-color: #d5a938;
    color: #fff
}
.btn-action:hover {
    background-color: #c49621;
}
.hint-desc {
    font-size: 1.5rem;
}
.services-section .row {
    padding: 3rem 0;
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    margin-bottom: 20px;
}
.card-body-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.card-body-details p {
    font-size: 20px;
}
.footer ul {
    margin: 0;
    padding: 0;
}
.footer a {
    text-decoration: none;
    color: #fff
}
.footer ul li {
    margin-bottom: 15px;
}
.footer h5 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    img {
        width: 100%
    }
    .navbar-block {
        position: fixed;
        bottom: 10px;
        left: 10px;
        z-index: 999;
    }
    .navbar-brand img {
        width: 70px;
    }
}