body{
    font-family: Arial, sans-serif;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:grey;
    color:white;
}

.hero img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.service-card{
    transition:all .3s ease;
    border:none;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 25px rgba(0,0,0,.15);
}

.section{
    padding:80px 0;
}

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.btn-custom{
    transition:.3s;
}

.btn-custom:hover{
    transform:scale(1.05);
}

footer{
    background:#111827;
    color:white;
    padding:30px 0;
}

.custom-alert-float{
    position: fixed;
    top: 90px;
    right: 20px;

    width: 400px;
    max-width: calc(100vw - 40px);

    background: #113d69;
    color: #ffffff;

    padding: 18px 20px;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;

    animation: slideIn .4s ease;
}

.alert-close{
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

@keyframes slideIn{
    from{
        opacity: 0;
        transform: translateX(40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@media(max-width:768px){

    .custom-alert-float{
        top: 75px;
        left: 15px;
        right: 15px;
        width: auto;
        font-size: 14px;
    }

}

.text-justify-custom {
    text-align: justify;
}