/* Body */
/* Ensure No Extra Margins & Padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#Form2 {
    overflow: hidden !important; /* Prevents unwanted scrollbars */
}
/*NAVBAR*/
.navbar {
    border-bottom: #008ed6 3px solid;
    opacity: 0.8;
}

.navbar-brand {
    font-size: 18px;
    text-transform: uppercase;
}

.navbar .nav-link {
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 1rem !important;
    padding-right: 0.5rem !important;
}

.navbar .nav-item.active {
    border-left: #444 3px solid;
}

/* HOME CAROUSEL SECTION*/
.carousel-item {
    height: 450px;
}

.carousel-image-1 {
    background: url('../img/image1.jpg');
    background-size: cover;
}

.carousel-image-2 {
    background: url('../img/image2.jpg');
    background-size: cover;
}

.carousel-image-3 {
    background: url('../img/image3.jpg');
    background-size: cover;
}

.carousel-image-4 {
    background: url('../img/image3.jpg');
    background-size: cover;
}

/* HOME HEADING SECTION */
#home-heading {
    position: relative;
    min-height: 200px;
    background-color: #343a40;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
}

/* HOME ICON SECTION*/
#icon-boxes .card-body h3 {
    text-align: center;
}

#icon-boxes .card-body p {
    text-align: left;
}

/*CONTACT*/
#contact h4 {
    color: #444;
}

/* SIGNUP SECTION*/
/* Home Section - Full Screen & No Scrollbar */
#home-section {
    background: url(../../global/img/Untitled-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    height: 100vh; /* Full viewport height */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    #home-section .home-inner {
        padding-top: 150px;
        float: right;
        margin-right: -200px;
    }

    /* Dark Overlay - Covers Entire Section */
    #home-section .dark-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Full height */
        /* background: rgba(0, 0, 0, 0.7);*/
    }

/* Fix for Mobile Devices */
@media (max-width: 768px) {
    #home-section {
        background-attachment: scroll; /* Prevents mobile background issues */
    }
}


#home-section .fas {
    color: #010c5e;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

#home-section h1, h4 {
    color: #fff;
}


/* FOOTER */
#main-footer {
    background: #f8f9fa;
    color: #5C6494;
}


/* Loader styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

    .loader-content h4 {
        font-size: .8rem;
        color: #555;
        margin-top: 30px;
        font-family: Arial, sans-serif;
        white-space: nowrap;
    }

    /* Logo styles */
    .loader-content .logo img {
        width: 350px; /* Adjust logo size */
        height: auto;
    }

/* Dots animation for "Loading..." text */
@keyframes dots {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }

    100% {
        content: '.';
    }
}

#loadingDots::after {
    content: '.';
    animation: dots 1.5s steps(3, end) infinite; /* Animate the dots */
}

/* Disable animation on the logo */
.logo img {
    animation: none; /* No rotation */
}
