.team-section {
    text-align: center;
    padding: 20px 0;
}

.team-section .h6{
    color: #1e84b5;
}

.team-section h2 {
    color: #1e84b5;
    font-size: 36px;
    margin-bottom: 10px;
}

.team-section p {
    color: #5a5a5a;
    font-size: 16px;
    padding: 0 30px;
    margin-bottom: 20px;
}
.service-section{
    /* background-color: #eff8ff; */
    padding: 20px 0;
}
.service-section .card {
    width: 100%;
    height: 250px;
    padding: 20px;
    border-radius: 30px;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-section .card .card-body {
    padding: 10px 0;
}

.service-section .card h5 {
    color: #1e84b5;
    font-size: 25px;
}

.service-section .card p {
    color: #527282;
    font-size: 14px;
}

.service-section .card:hover {
    background-color: #0e384c; /* Dark background on hover */
    color: white; /* Text color on hover */
    transform: translateY(-50px); /* Move card up on hover */
}

.service-section .card:hover h5 {
    color: white; /* Text color on hover */
}

.service-section .card:hover p {
    color: white; /* Text color on hover */
}

.service-section .card .card-body a {
    color: #1e84b5; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.service-section .card:hover .card-body a {
    color: #ffffff; /* Link color on hover */
    text-decoration: none; /* Optional: underline links on hover */
}

.service-section .card img {
    width: 35px;
    height: 35px;
    filter: grayscale(100%) brightness(0) invert(0);
    transition: filter 0.3s ease; /* Smooth transition for filter changes */
}

.service-section .card:hover img {
    filter: brightness(100%) invert(1); /* Change to white on hover */
}


.service-section .card:hover {
    background-color: #0e384c; /* Dark background on hover */
    color: white; /* Text color on hover */
    transform: translateY(-10px); /* Move card up on hover */
}

.service-section .card .card-body a {
    color: #1e84b5; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.service-section .card .card-body a:hover {
    color: #ffffff; /* Link color on hover */
    text-decoration: none; /* Optional: underline links on hover */
}
