body {
    /* background: linear-gradient(135deg, #0d3562, #144f8c); */
    /* color: #fff; */
    font-family: 'Inter', sans-serif;
}

.home-container {
    text-align: center;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 50px;
}

.logo {
    width: 80%;
    max-width: 150px;
    animation: fadeInDown 1s ease-in-out;
}

.header-title {
    position: absolute;
    top:35px;
    left: 32%;
    /* transform: translateX(-50%); */
    
    margin-bottom: 30px;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-in-out;
    font-size: 26px;
    font-weight: 400;
}

.bg-img-div{
    border-right: #bfbfbf7a 1px solid;
}




.button-grid {
    display: flex;
    justify-content: center;
    
    flex-wrap: wrap;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.button-card {
    width: 220px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(300deg, #59B7B7, #3a7777);
    /* background: #59B7B7; */
    color: #252525d2;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-weight: 100;
}

.button-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #59B7B7, #1e5c5c);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

.button-card:hover::before {
    opacity: 0.6;
}

.button-card a {
    z-index: 2;
    position: relative;
    text-decoration: none;
    color: #e4e4e4;
    font-size: 20px;
    font-weight: 300;
}
.button-card a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
    text-decoration: none;
    color: #e4e4e4;
    font-size: 20px;
    font-weight: 300;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

