/* Font */
* {
    font-family: 'Inter', sans-serif;

}

/* Colors */
:root {
    --primary: #034381;
    --secondary: #0b4daf;
    --gray: #6c757d;
    --black: #2c3e50;
    --dark: #0D2545;
    --light: #ffffff;
    --info: #0f8ddc;
    --cyan: #00d4ff;
    --teal: #20c997;
}

/* Headings */
.main-title {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Sub-Headings */
.section-title {
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    /* Prevent text jumping during scramble animation - use tabular numbers */
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

@media (max-width: 576px) {

    /* Headings */
    .main-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    /* Sub-Headings */
    .section-title {
        color: var(--gray);
        font-size: 0.6rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        /* Prevent text jumping during scramble animation - use tabular numbers */
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
    }
}

.highlight-text {
    color: var(--black);
}

.highlight-text:hover {
    color: var(--secondary);
}

.highlight-text-white {
    color: rgb(193, 193, 193);
}

.highlight-text-white:hover {
    color: var(--light);
}


@media (max-width: 576px) {}


@media (min-width: 576px) {}


@media (min-width: 768px) {}


@media (min-width: 992px) {}


@media (min-width: 1200px) {

    /* Sub-Headings */
    .section-title {

        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        /* Prevent text jumping during scramble animation - use tabular numbers */
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
    }

    .main-title {
        font-size: 1.7rem;
        font-weight:700;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

}


@media (min-width: 1400px) {}



/* Override Bootstrap Primary Button Color */
#backToTop.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--secondary) !important;

}

#backToTop.btn-primary:hover {
    background-color: var(--secondary) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Hover Effect */
#backToTop:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

}