.fullscreen-banner {
    padding-top: 10px;
    max-height: 60vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.fullscreen-banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner-overlay {
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.heading{
    color: #1A2D45;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-weight: bold;
}
.section-title .line {
    width: 60px;
    height: 3px;
    background-color: #1A2D45;
    margin: 10px auto;
}
.card-icon {
    width: 50px;
    height: 50px;
    background-color: #1A2D45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}
.service-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1A2D45;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e9f7ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2D45;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .icon-circle {
    background-color: #1A2D45;
    color: white;
    transform: scale(1.1);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
}

.section-title .line {
    height: 3px;
    width: 60px;
    background-color: #198754;
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-title .line {
    height: 3px;
    width: 60px;
    background-color: #198754;
    margin: 10px auto 20px;
}

.bi {
    vertical-align: middle;
}
#readMoreBtn{
    background-color: #1A2D45;
    color: #ffffff;
}
#readMoreBtn:hover{
    color: #1A2D45;
    background-color: #ffffff;
    border: 1px solid #1A2D45;
}