*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(248, 249, 251);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.links_container li:nth-of-type(3) a {
    color: white;
    border-bottom: 1px solid white;
}
.container{
    width:90%;
    /* margin: 0 auto; */
}
/* Services Header */

.services_header {
    width: 100%;
    height: 40vh;
    text-align: center;
    padding: 2rem 0;
    background-color: rgb(13, 110, 253);
    mask-border-slice: 1px solid black;
    position: relative;
}
.services_header::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgb(13, 110, 253);
}
.services_header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    padding: 1rem;
}
.services_header p {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

/* Services Section */
.services_section {
    width: 100%;
    padding: 3rem 0;
    background: none;
}
.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    margin: 0 auto;
}
.service_card {

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service_card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(13,110,253,0.12);
}
.service_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e3eafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgb(13, 110, 253);
    margin-bottom: 1.2rem;
}
.service_card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
}
.service_card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.service_card ul li {
    font-size: 1rem;
    color: #61799d;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2em;
}
.service_card ul li::before {
    content: '\2713';
    color: rgb(13, 110, 253);
    position: absolute;
    left: 0;
    font-size: 1em;
}
