h1,h2,h3,h4,h5,h6,i,a{
    color: #0630b3;
}

.about-img {
    width: 500px;
    height: 500px;
    margin: 0 50px;
}

.banner {
    height: 88vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.btn-outline-light{
    background-color: transparent !important;
    color: #fff !important;
}

.btn-outline-light:hover{
    background-color: #0630b3 !important;
}

.btn-light:hover{
    background-color: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
}
/* services */
.service-card {
    position: relative;
    background: #f8f8f8;
    color: #333;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.service-card::before {
    content: '';
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0630b3;
    background-color: #8BADF0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.service-card h5,
.service-card p {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card .read-more {
    opacity: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    transform: translateY(10px);
    transition: all 0.4s ease;
    font-size: 14px;
    text-decoration: none;
}

.service-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover i {
    color: #fff;
}


.about-banner {
    background: url('assets/banner2.jpg') center center / cover no-repeat;
    height: 300px;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay */
}

.about-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    opacity: 1;
}

.about-banner .container {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 28px;
    color: #0630b3;
    background-color: #8BADF0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
    transition: 0.3s;
    transform: translateY(-10px);
    background-color: #8BADF0;
    color: #fff;
}

.card:hover i{
    color: #fff;
    background-color: #0630b3;
}

.card:hover h1,
.card:hover h2,
.card:hover h3,
.card:hover h4,
.card:hover h5,
.card:hover h6,
.card:hover p,
.card:hover a,
.card:hover small,
.card:hover span {
    color: #fff !important;
}

.subscribe-box {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn{
    color: #fff;
    background-color: #0630b3;
}
@media (max-width: 768px) {
    .about-img {
        margin: 0;
    }

    .banner {
        height: 25vh;
        background-position: top;
    }
}