body {
    height: 3000px;
    overflow-x: hidden;
    background-color: #104183;
}

.bg-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.navbar {
    height: 70px;
    transition: all 0.5s;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.navbar-scrolled {
    background-color: #104183;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.container-gif {
    position: absolute;
    top: 47%;
    left: 78.5%;
    transform: translate(-50%, -50%);
    margin-bottom: 10px
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(16, 65, 131, 0.9);
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .container-gif dotlottie-player {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 576px) {
    .container-gif dotlottie-player {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 390px) {
    .container-gif dotlottie-player {
        width: 10px;
        height: 10px;
    }
}

.container {
    flex: 1;
}


footer {
    background-color:#36454F;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.footer-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

.card-title { font-size: 1.2em; }
.card-subtitle { font-size: 0.9em; color: gray; }
.service-section, .contact-section {
    margin-top: 50px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-title {
    font-size: 2em;
    font-weight: bold;
}
.service-description {
    margin-top: 20px;
}
.service-features {
    list-style-type: none;
    padding: 0;
}
.service-features li {
    margin: 10px 0;
}

.text-center , #header-text, #contact-text {
    color: white;
}

.text-center, #service-text {
    color: white;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #104183;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999; /* Ensure it's above other content */
}
