body {
    height: 100vh;
    margin:0;
}

.btn.btn-outline-primary {
    border-color: #7795f8;
}

.btn.btn-outline-primary:hover {
    background-color: #7795f8;
}

.fs-xs {
    font-size: 0.75em;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 9200 !important; */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-style {
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
}

.dropdown-style {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar .navbar-nav .nav-link {
    color: black;
}

.section-home {
    /* padding: 0; */
    position: relative;
    height: 90vh;
    min-height: 800px;
    display: flex;
    align-items: start;
    background-image: url(../images/home_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg-gradient-lightgrey1 {
    background: linear-gradient(180deg, #FFFFFF 15%, #E6E9F0 70%, #E6E9F0 94%);
}

.bg-gradient-lightgrey2 {
    background: linear-gradient(180deg, #E6E9F0 15%, #EEF1F5 70%, #EEF1F5 94%);
}

.bg-gradient-lightgrey3 {
    background: linear-gradient(180deg, #EEF1F5 15%, #FFFFFF 70%, #FFFFFF 94%);
}

.container-shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* z-index: 0; */
}

.container-shape span {
    position: absolute;
    border-radius: 50%;
}

.container-shape :nth-child(1) {
    height: 150px;
    width: 150px;
    left: -4%;
    top: 0%;
    background:rgba(255, 255, 255, 0.1);
}

.container-shape :nth-child(2) {
    height: 100px;
    width: 100px;
    left: 1%;
    top: 38%;
    background:rgba(255, 255, 255, 0.05);
}

.container-shape :nth-child(3) {
    height: 200px;
    width: 200px;
    left: 9%;
    top: 43%;
    background:rgba(255, 255, 255, 0.15);
}

.container-shape :nth-child(4) {
    height: 100px;
    width: 100px;
    left: 1%;
    bottom: 1%;
    background:rgba(255, 255, 255, 0.05);
}

.container-shape :nth-child(5) {
    height: 50px;
    width: 50px;
    right: 36%;
    bottom: 50%;
    background:rgba(255, 255, 255, 0.1);
}

.container-shape :nth-child(6) {
    height: 50px;
    width: 50px;
    right: 4%;
    top: 10%;
    background:rgba(255, 255, 255, 0.1);
}

.container-shape :nth-child(7) {
    height: 50px;
    width: 50px;
    right: 6%;
    top: 40%;
    background:rgba(255, 255, 255, 0.3);
}

.container-shape :nth-child(8) {
    height: 75px;
    width: 75px;
    right: 7%;
    top: 48%;
    background:rgba(255, 255, 255, 0.15);
}

.container-shape :nth-child(9) {
    height: 100px;
    width: 100px;
    right: 2%;
    bottom: 14%;
    background:rgba(255, 255, 255, 0.05);
}

.container-shape :nth-child(10) {
    height: 50px;
    width: 50px;
    right: 2%;
    bottom: 5%;
    background:rgba(255, 255, 255, 0.1);
}

.container-wave {
    position: absolute;
    width: 100%;
    bottom: 0;
    /* z-index: 1; */
}

.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    min-height: 16vh;
    margin-bottom: -35px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* Animation for the waves */
.moving-waves>use {
    animation: move-forever 40s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
  
.moving-waves>use:nth-child(1) {
animation-delay: -2s;
animation-duration: 11s;
}
  
.moving-waves>use:nth-child(2) {
animation-delay: -4s;
animation-duration: 13s;
}
  
.moving-waves>use:nth-child(3) {
animation-delay: -3s;
animation-duration: 15s;
}
  
.moving-waves>use:nth-child(4) {
animation-delay: -4s;
animation-duration: 20s;
}
  
.moving-waves>use:nth-child(5) {
animation-delay: -4s;
animation-duration: 25s;
}
  
.moving-waves>use:nth-child(6) {
animation-delay: -3s;
animation-duration: 30s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Card Styles */
.card {
    border: none;
    height: 100%;
    /* overflow: hidden; */
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-service {
    transition: transform 0.3s;
}

.card-service:hover {
    transform: translateY(-5px);
}

.icon-box-services {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s;
}

.card-service:hover .icon-box-services {
    background-color: #0d6efd;
    color: white;
}

.icon-box-contact {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d6efd;
    border-radius: 50%;
}

#alertContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

#alertContainer .alert {
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.25rem 1rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.alert-floating.hide {
    animation: slideOut 0.3s ease-out forwards;
}

.btn-loading {
    position: relative;
}

.btn-loading .spinner-border {
    vertical-align: middle;
}

@media (max-width: 768px) {
    #alertContainer {
        left: 10px;
        right: 10px;
        max-width: none;
        top: 20px;
    }
    
    #alertContainer .alert {
        min-width: auto;
        width: 100%;
    }
}

.v-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-footer {
    position: relative;
    background-color: #343a40;
}

span {
    word-break: break-all;
}

.container-triangle-left {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: 200px;
    /* z-index: 0; */
}

.container-triangle-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px;
    width: 200px;
    /* z-index: 0; */
}

.footer-info {
    position: relative;
    z-index: 1;
}

.footer-copyright {
    position: relative;
    z-index: 1;
}

 /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar-style {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        backdrop-filter: none;
    }
    .navbar .navbar-nav .nav-link {
        color: white;
    }
    .navbar .navbar-nav .nav-link:hover {
        border-radius: 5px;
        background-color: rgba(255,255,255,0.2);
        transform: translateY(-2px);
        transition: all 0.3s;
    }
}