.services {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically if container has height */
    flex-direction: column; /* stack children vertically */
    padding: 1rem;
    margin: 1%;
}

.services h1 {
    font-size: 3rem; /* instead of 380%, simpler and clearer */
    font-family: "Wicklow", Georgia, Garamond, Times, serif;
    text-align: left; /* centers text inside h1 */
}


.services h2 {
    font-size: 200%; /* instead of 380%, simpler and clearer */
    font-family: "Wicklow", Georgia, Garamond, Times, serif;
    text-align: left; /* centers text inside h1 */
}


.h1-medium{
     font-size: 300%;
        font-family: "Wicklow", Georgia, Garamond, Times, serif; /* Classic serif style */
    text-align: center; /* centers text inside h1 */

}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards side by side */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}



.card {
    background: #f8f9fa; /* light grey background like screenshot */
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-center{
    background: #f8f9fa; /* light grey background like screenshot */
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0d3b66; /* dark blue */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1); /* makes logo white if it's dark */
}

.full-image {
    width: 200px; /* set your desired width */
    height: 200px; /* set your desired height */
    display: block; /* makes it behave like a block */
    margin: 0 auto 20px auto; /* center horizontally and add bottom margin */
    object-fit: cover; /* ensures the image fills the box without stretching */
    border-radius: 10px; /* optional: rounded corners */
}

.full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps image proportions */
    filter: none; /* remove white filter */
    border-radius: inherit; /* match the container’s rounding */
}


.card h2 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.5;
}

.card button {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-blue {
    background: #0d3b66;
    color: #fff;
}

.btn-blue:hover {
    background: #12497d;
}

.btn-black {
    background: #000;
    color: #fff;
}

.btn-black:hover {
    background: #222;
}
.card:hover {
    transform: translateY(-10px); /* Lift card slightly */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Bigger shadow */
}


.button-div{
    justify-content: center;

}


.button-div-mg{
    margin: 7%;
    margin-left: 3%;

}