/*Global page*/
html,
body {
    height: 100%;
    margin: 0;
    background: transparent;
    scroll-behavior: smooth;
}

.page-gradient {
    min-height: 100vh;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 65%, #C8DEF4 100%) no-repeat;
    padding-top: 1px;
    margin-top: -1px;
}

main,
footer {
    background: transparent;
}

main {
    flex: 1;
}

/*Header*/
.navbar-nav {
    gap: clamp(0.5rem, 1vw, 1.25rem);
}

.header-container {
    max-width: 1500px;
    padding: 0 1em;
}

.navbar-nav .nav-link {
    position: relative;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #2E2E2E;
    text-decoration: none;
}

/* underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background-color: #7FA1B7;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.download-btn {
    background: #72A5B9;
    border-radius: 12px;
    font-family: 'Nunito Sans', Arial, sans-serif;

    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    color: #FFFFFF;
    padding: 16px 24px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background: #5f8ea0;
    transform: translateY(-2px);
}

.download-btn:active {
    background: #4e7685;
    transform: translateY(0);
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

/* Small slide-down effect */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*Footer*/
footer {
    background: transparent !important;
}

footer .nav-link {
    position: relative;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    color: #1C313D;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .nav-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

footer .nav-link:hover {
    color: #0d6efd;
}

footer .nav-link:hover::after {
    width: 100%;
}

footer a i {
    transition: color 0.3s ease, transform 0.2s ease;
}

footer a i:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

footer .all-rights-text {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;

    color: #000000;
}

/*Splide overwrite*/
.splide__pagination {
    gap: 5px;
    bottom: -1.3em !important;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    background-color: #fff;
    margin: 0 6px;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.splide__pagination__page:hover {
    opacity: 0.9;
    background-color: #eaf2ff;
}

.splide__pagination__page.is-active {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.5);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #72A5B9;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: #5f8ea0;
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}