﻿.section-title {
    color: #142b6f;
}

.section-underline {
    width: 60px;
    height: 6px;
    background-color: #69B1D9; 
    position: relative;
}

    .section-underline::before,
    .section-underline::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40px;
        height: 3px;
        background-color: #ccc;
        transform: translateY(-50%);
    }

    .section-underline::before {
        left: -50px;
    }

    .section-underline::after {
        right: -50px;
    }



.navbar {
    background-color: #1a2465;
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    padding-left: 15px;
    padding-right: 15px;
}

/* لون زر الكولابس أبيض */
.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column !important;
        align-items: center;
    }
}





.service-box {
    background-color: #BDD0FB;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .service-box:hover {
        transform: translateY(-5px);
    }

.img-container {
    height: 100%;
    display: flex;
    align-items: center;
}

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.equal-height {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.row.align-items-stretch > [class*="col-"] {
    display: flex;
    flex-direction: column;
}


.iconColor {
    color: #4F52FF;
}