:root {
    /* Backgrounds */
    --primary-background: #0d1421;
    /* Colors */
    --primary-text-color: #776e65;
}

/*
* ScrollBar Style Starts Here
*/
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 25px;
}

*::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #F5F5F5;
    border-radius: 25px;
}

*::-webkit-scrollbar-thumb {
    background-color: #374149;
    border-radius: 25px;
}

/* Smooth Scrolling for the entire page */
html {
    scroll-behavior: smooth;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

/*
*  ScrollBar Style Ends Here
*/

body {
    padding: 56px 10px 0;
    /* Adjust based on navbar height */
    background-color: var(--primary-background);
    color: #bdc1c6;
    text-align: justify;
    font-size: 18px;
    line-height: 2.1rem;
}

.navbar {
    transition: top 0.3s;
}

.navbar-logo {
    max-height: 36px;
    object-fit: contain;
}

.navbar-text {
    max-width: 700px;
    /* Limit width of navbar text to prevent overflow */
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    /* Center horizontally */
}

.scroll-indicator {
    height: 5px;
    background: linear-gradient(to right, blue, purple);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    transition: width 0.25s;
}

.gradient-bg {
    background: linear-gradient(to right, #222531, #222531);
}

/* Floating Title Conatiner */

.floating-title-container {
    border-left: 3px solid blue;
    /* Left border side as blue with 2px solid */
    padding: 20px 20px 0 20px;
    /* Add some padding for better visual */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #222531;
    /* Background color for better contrast */
    border-radius: 10px;
    /* Optional: rounded corners */
}

.rounded-title-img {
    border-radius: 15px;
    /* Rounded corners for the image */
    height: 50vh;
    /* Fixed height for the image */
    width: 100%;
    /* Ensure the image takes up the full width */
    object-fit: contain;
    /* Ensure the image covers the entire area */
}

/* Floating Button */

/* Floating Button Container */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #486dfb;
    color: white;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}

/* Arrow Animation */
.floating-button span {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Show the button when scrolled */
.floating-button.show {
    opacity: 1;
    visibility: visible;
}

.disclaimer {
    font-size: 12px;
    color: #AAAAAA;
    line-height: 1.4rem;
}

/* Media Queries - Greater Than this screen size */
@media (min-width: 768px) {

    .main-content {
        padding: 25px 10px 0;
        margin: 0 9%;
        /* Margin for medium screens */
    }
}

@media (min-width: 992px) {
    .main-content {
        padding: 25px 10px 0;
        margin: 0 9%;
        /* Margin for medium screens */
    }
}

@media (min-width: 1200px) {
    .main-content {
        padding: 25px 10px 0;
        margin: 0 18%;
        /* Margin for large screens */
    }
}

/* Media query for medium/smaller screens - Less than this screen size */
@media (max-width: 768px) {
    body {
        text-align: start;
    }

    .navbar-text {
        max-width: 300px;
        /* Limit width of navbar text for medium/smaller screens */
    }

    .navbar-brand {
        max-width: 120px;
        /* Adjust the maximum width of the logo for medium/smaller screens */
    }

    .rounded-title-img {
        height: 25vh;
        /* Fixed height for the image for Less/Small Screen Size */
    }
}