@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 107px;
}


.msr-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e2124;
    z-index: 1001;
    height: 107px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.msr-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

@media screen and (max-width: 1470px) {
    .msr-header-container {
        width: 100%;
    }
}


.msr-logo-container {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.msr-logo-container img {
    transition: height 0.3s ease;
}


.msr-nav {
    display: flex;
    align-items: center;
}

.msr-nav-menu {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    transition: all 0.3s ease;
}

.msr-nav-item {
    margin: 0 5px;
}

.msr-nav-link {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.msr-nav-link:hover {
    color: #0169fe;
}

.msr-nav-link.active {
    color: #0169fe;
}


.msr-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 1002;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.msr-nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


@media (max-width: 1200px) {
    .msr-header.menu-open {
        height: 100vh;
        background-color: rgba(30, 33, 36, 0.98);
        backdrop-filter: blur(10px);
    }

    .msr-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .msr-nav-menu {
        display: none;
        position: fixed;
        top: 107px;
        left: 0;
        width: 100%;
        height: calc(100vh - 107px);
        background: transparent;
        flex-direction: column;
        padding: 32px 0;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

    .msr-nav-menu.show {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .msr-nav-item {
        margin: 8px 0;
        width: 90%;
        max-width: 400px;
        opacity: 0;
        transform: translateY(20px);
        animation: slideIn 0.5s ease forwards;
    }

    .msr-nav-menu.show .msr-nav-item {
        animation: slideIn 0.5s ease forwards;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .msr-nav-menu.show .msr-nav-item:nth-child(1) { animation-delay: 0.1s; }
    .msr-nav-menu.show .msr-nav-item:nth-child(2) { animation-delay: 0.2s; }
    .msr-nav-menu.show .msr-nav-item:nth-child(3) { animation-delay: 0.3s; }
    .msr-nav-menu.show .msr-nav-item:nth-child(4) { animation-delay: 0.4s; }
    .msr-nav-menu.show .msr-nav-item:nth-child(5) { animation-delay: 0.5s; }
    .msr-nav-menu.show .msr-nav-item:nth-child(6) { animation-delay: 0.6s; }

    .msr-nav-link {
        font-size: 18px;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .msr-nav-link:hover {
        background-color: rgba(45, 142, 253, 0.15);
        transform: translateY(-2px);
    }

    .msr-nav-link.active {
        background-color: #2d8efd;
        color: white;
    }

    .msr-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }

    .msr-nav-toggle i {
        transition: transform 0.3s ease;
    }

    .msr-nav-toggle.active i {
        transform: rotate(180deg);
    }
}

.header-gradient {
    margin-top: 107px;
    transition: margin-top 0.3s ease;
}

@media (max-width: 767px) {
    .header-gradient {
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .header-gradient {
        margin-top: 70px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 80px;
    }

    .msr-header {
        height: 80px;
    }

    .msr-nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
        padding: 24px 0;
    }

    .msr-logo-container img {
        height: 35px;
    }

    .msr-nav-link {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    .msr-header {
        height: 70px;
    }

    .msr-nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 20px 0;
    }

    .msr-logo-container img {
        height: 30px;
    }

    .container {
        padding: 0 16px;
    }

    .msr-nav-item {
        width: 85%;
    }

    .msr-nav-link {
        padding: 12px 16px;
    }
}

/*-------------------*/
.page-header {
    background-color: #212529;
    margin: 0 0 35px 0;
    padding: 30px 0;
    position: relative;
    text-align: left;
}

.page-header.page-header-modern.page-header-md {
    padding: 50px 0;
}

.page-header h1 {
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 38px;
    font-weight: bolder;
    font-family: "Poppins", Arial, sans-serif !important;
    letter-spacing: -.05em;
}

.page-header .sub-title {
    display: block;
    font-size: 1.2em;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
    color: #fff;
}


@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fadeIn {
    animation-name: fadeIn;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.appear-animation {
    opacity: 0;
}

.appear-animation-visible {
    opacity: 1;
}




.bg-transparent {
    background: transparent !important;
}

.m-0 {
    margin: 0 !important;
}

.p-static {
    position: static !important;
}

.align-self-center {
    align-self: center !important;
}

.text-center {
    text-align: center !important;
}