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

@font-face {
    font-family: "roboto_regular";
    src: url(../font/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: "roboto_medium";
    src: url(../font/Roboto/Roboto-Medium.ttf);
}

@font-face {
    font-family: "roboto_semibold";
    src: url(../font/Roboto/Roboto-SemiBold.ttf);
}

@font-face {
    font-family: "roboto_bold";
    src: url(../font/Roboto/Roboto-Bold.ttf);
}

@font-face {
    font-family: "playfair_regular";
    src: url(../font/Playfair_Display/PlayfairDisplay-Regular.ttf);
}

@font-face {
    font-family: "playfair_medium";
    src: url(../font/Playfair_Display/PlayfairDisplay-Medium.ttf);
}

@font-face {
    font-family: "playfair_semibold";
    src: url(../font/Playfair_Display/PlayfairDisplay-SemiBold.ttf);
}

@font-face {
    font-family: "playfair_bold";
    src: url(../font/Playfair_Display/PlayfairDisplay-Bold.ttf);
}

:root {
    --roboto_regular: "roboto_regular";
    --roboto_medium: "roboto_medium";
    --roboto_semibold: "roboto_semibold";
    --roboto_bold: "roboto_bold";
    --playfair_regular: "playfair_regular";
    --playfair_medium: "playfair_medium";
    --playfair_semibold: "playfair_semibold";
    --playfair_bold: "playfair_bold";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_56: 56px;
    --fs_58: 58px;
    --fs_60: 60px;
    --fs_70: 70px;

    --bg_color_1: #000000;
    --bg_color_2: #FFFFFF;
    --bg_color_3: #EEF0F4;
    --bg_color_4: #F8F8F8;
    --bg_color_5: #107ED8;
    --bg_color_6: #E7FBEB;

    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #797979;
    --text_color_4: #17191B;
    --text_color_5: #107ED8;
    --text_color_6: #C2C2C2;
    --text_color_7: #383838;
    --text_color_8: #E6E6E6;
    --text_color_9: #3B96DD;
    --text_color_10: #424242;
    --text_color_11: #E6F4F1;
    --text_color_12: #0E1924;
    --text_color_13: #319131;
    --text_color_14: #FFAE00;
    --text_color_15: #FF4400;

}

.toast,
div,
p,
span,
ul,
li {
    font-family: var(--roboto_regular);
}

.homepage_first_section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.homepage_first_section .hero_media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.homepage_first_section .hero_media img,
.homepage_first_section .hero_media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .hero_header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero_header.sticky {
    background-color: var(--bg_color_2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero_header .left_side_option {
    display: flex;
    gap: 25px;
}

.hero_header .left_side_option .menu_link {
    text-decoration: none;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
}

.hero_header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.right_side_option {
    display: flex;
    gap: 15px;
}

.right_side_option .login_btn {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
}

.right_side_option .login_btn:hover {
    color: var(--text_color_5);
}

.right_side_option .signup_btn {
    position: relative;
    padding: 10px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.right_side_option .signup_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -50%,
            var(--text_color_5) 0%,
            #0b1c2a 80%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.right_side_option .signup_btn:hover::before {
    opacity: 1;
}

.right_side_option .header_profile_dropdown {
    display: flex;
    align-items: center;
}

.right_side_option .header_profile_dropdown .header_profile_part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right_side_option .header_profile_dropdown .header_profile_part .profile_img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.right_side_option .header_profile_dropdown .header_profile_part .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right_side_option .header_profile_dropdown .header_profile_part span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_semibold);
}

.right_side_option .header_profile_dropdown .header_logout_part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .logout_img {
    width: 24px;
    height: 24px;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_semibold);
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu {
    margin-top: 12px !important;
    padding: 8px 0;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right_side_option .header_profile_dropdown .header_logout_part .logout_img {
    width: 24px;
    height: 24px;
}

.right_side_option .header_profile_dropdown .header_logout_part .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right_side_option .header_profile_dropdown .header_logout_part span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_semibold);
} */

.hero_header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 22px 40px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero_header.sticky {
    background-color: var(--bg_color_2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero_header .left_side_option {
    display: flex;
    gap: 25px;
}

.hero_header .left_side_option .menu_link,
.mobile_left_menu .menu_link {
    text-decoration: none;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
}

.hero_header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.right_side_option {
    display: flex;
    gap: 15px;
    align-items: center;
}

.right_side_option .login_btn,
.mobile_right_menu .login_btn {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: 1px solid var(--text_color_12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
        max-height: 44px;
}

.right_side_option .signup_btn,
.mobile_right_menu .signup_btn {
    position: relative;
    padding: 10px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-height: 44px;
}

.right_side_option .signup_btn::before,
.mobile_right_menu .signup_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -50%,
            var(--text_color_5) 0%,
            #0b1c2a 80%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.right_side_option .signup_btn:hover::before,
.mobile_right_menu .signup_btn:hover::before {
    opacity: 1;
}

/* desktop profile */
.right_side_option .header_profile_dropdown {
    display: flex;
    align-items: center;
}

.right_side_option .header_profile_dropdown .header_profile_part {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.right_side_option .header_profile_dropdown .header_profile_part .profile_img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.right_side_option .header_profile_dropdown .header_profile_part .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right_side_option .header_profile_dropdown .header_profile_part span {
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu {
    margin-top: 12px !important;
    padding: 8px 0;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .logout_img {
    width: 24px;
    height: 24px;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.right_side_option .header_profile_dropdown .profile_dropdown_menu span {
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.mobile_menu_toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 10001;
}

.mobile_menu_toggle svg {
    height: 40px;
    width: 40px;
    color: var(--text_color_5);
}

.mobile_menu_toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text_color_12);
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile_menu_wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile_menu_inner {
    margin-top: 14px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.mobile_left_menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 15px;
}

.mobile_right_menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile_right_menu .login_btn,
.mobile_right_menu .signup_btn {
    width: fit-content;
    text-align: center;
}

/* mobile auth box */
.mobile_profile_box {
    width: 100%;
}

.mobile_profile_user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile_profile_user .profile_img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.mobile_profile_user .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile_profile_user span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.mobile_profile_links {
    background-color: #F2F2F2;
    border-radius: 0;
    overflow: hidden;
}

.mobile_profile_link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    background: transparent;
    border: none;
}

.mobile_profile_link+.mobile_profile_link {
    border-top: 1px solid #ececec;
}

.mobile_profile_link .logout_img {
    width: 24px;
    height: 24px;
}

.mobile_profile_link .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mobile_profile_link span,
.logout_link_wrap span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.logout_link_wrap form,
.logout_link_wrap .dropdown-item,
.logout_link_wrap button,
.logout_link_wrap a {
    width: 100%;
}

.logout_link_wrap .dropdown-item,
.logout_link_wrap button,
.logout_link_wrap a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    text-align: left;
    text-decoration: none;
    color: var(--text_color_4);
}

.hero_header.menu_open .mobile_menu_wrap {
    max-height: 700px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero_header.menu_open .mobile_menu_toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hero_header.menu_open .mobile_menu_toggle span:nth-child(2) {
    opacity: 0;
}

.hero_header.menu_open .mobile_menu_toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1400px) {

    .hero_header .left_side_option {
        gap: 20px;
    }

    .right_side_option {
        gap: 12px;
    }
}

@media (max-width: 1200px) {

    .hero_header .left_side_option {
        gap: 16px;
    }

    .right_side_option {
        gap: 10px;
    }

    .right_side_option .header_profile_dropdown .header_profile_part {
        gap: 8px;
    }

    .right_side_option .header_profile_dropdown .header_profile_part span,
    .right_side_option .header_profile_dropdown .profile_dropdown_menu span {
        font-size: 16px;
    }

    .right_side_option .header_profile_dropdown .header_profile_part .profile_img {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}

@media (max-width: 992px) {
    .hero_header {
        padding: 15px 17px;
    }

    .hero_header .desktop_menu,
    .hero_header .desktop_auth {
        display: none;
    }

    .hero_header .logo {
        position: static;
        left: auto;
        transform: none;
    }

    .mobile_menu_toggle {
        display: flex;
    }

    .mobile_left_menu .menu_link,
    .mobile_right_menu .login_btn,
    .mobile_right_menu .signup_btn,
    .mobile_profile_user span,
    .mobile_profile_link span,
    .logout_link_wrap span {
        font-size: 16px;
    }

    .mobile_right_menu .login_btn,
    .mobile_right_menu .signup_btn {
        padding: 10px 14px;
    }

    .mobile_profile_box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    /* .mobile_profile_box {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
    } */

    .mobile_profile_user {
        width: 160px;
        min-width: 160px;
    }

    .mobile_profile_links {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero_header {
        padding: 15px 17px;
    }

    .mobile_menu_inner {
        padding: 12px;
    }

    .mobile_profile_user,
    .mobile_profile_links {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero_header {
        padding: 15px 17px;
    }

    .mobile_menu_inner {
        border-radius: 10px;
    }

    .mobile_profile_user {
        gap: 8px;
    }

    .mobile_profile_user .profile_img {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .logout_link_wrap .dropdown-item,
    .logout_link_wrap button,
    .logout_link_wrap a {
        padding: 12px 14px;
    }
}

@media (min-width: 992px) {
    .mobile_menu_wrap {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;
    }

    .hero_header.menu_open .mobile_menu_wrap {
        display: none !important;
    }

    .mobile_menu_toggle {
        display: none !important;
    }
}

.homepage_first_section .menu_dropdown .menu_link {
    text-decoration: none;
    color: var(--text_color_4);
    font-size: 16px;
    font-family: var(--roboto_medium);
    transition: color 0.2s ease;
}

.homepage_first_section .menu_dropdown .menu_link:hover {
    color: var(--text_color_5) !important;
}

.homepage_first_section .hero_content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
}

.homepage_first_section .hero_content .title {
    font-size: var(--fs_70);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
}

.homepage_first_section .hero_content .title span {
    font-size: var(--fs_70);
    color: var(--text_color_4);
    font-family: var(--playfair_regular);
    font-style: italic;
}

.homepage_first_section .hero_content .desc {
    font-size: var(--fs_20);
    font-family: var(--roboto_regular);
    color: var(--text_color_3);
    margin: 5px 0 20px 0;
}

.homepage_first_section .hero_content .hero_btn {
    position: relative;
    padding: 12px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.homepage_first_section .hero_content .hero_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.homepage_first_section .hero_content .hero_btn:hover::before {
    opacity: 1;
}

.homepage_second_section {
    height: 80vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(261.65deg, #8DB4F4 0.37%, #9CBDF3 15.42%, #EFEFEF 99.63%);
}

.homepage_second_section .content {
    position: absolute;
    inset: 0;
    padding: 70px 30px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: center;
    text-align: center;
}

.homepage_second_section .content .info_part {
    margin-top: 26px;
}

.homepage_second_section .content .info_part .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    line-height: 1.08;
    margin-bottom: 12px;
}

.homepage_second_section .content .info_part .title span {
    font-style: italic;
    font-family: var(--playfair_regular);
}

.homepage_second_section .content .info_part .desc {
    margin-bottom: 0;
    color: var(--text_color_3);
    font-size: var(--fs_20);
    font-family: var(--roboto_regular);
    line-height: 1.45;
}

.homepage_second_section .center_art {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.homepage_second_section .center_art img {
    width: 100%;
    height: auto;
}

.homepage_second_section .layer {
    position: absolute;
    inset: 0;
    /* z-index: 4; */
}

.homepage_second_section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.homepage_second_section .pill {
    position: absolute;
    padding: 8px 12px;
    color: var(--text_color_5);
    font-size: var(--fs_20);
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    cursor: grab;
    will-change: transform;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--bg_color_2);
    border-radius: 50px;
    font-family: var(--roboto_regular);
    font-size: var(--fs_20);
}

.homepage_second_section .pill:active {
    cursor: grabbing;
}

.homepage_third_section {
    padding: 100px 0;
}

.homepage_third_section .right_side_part .heading .title {
    font-family: var(--playfair_regular);
    color: var(--text_color_4);
    font-size: var(--fs_50);
}

.homepage_third_section .right_side_part .heading .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_20);
    color: var(--text_color_4);
}

.homepage_third_section .right_side_part .detail_part .desc {
    font-family: var(--roboto_regular);
    color: var(--text_color_10);
    font-size: var(--fs_16);
}

.homepage_third_section .right_side_part .detail_part ul {
    padding-left: 0;
}

.homepage_third_section .right_side_part .detail_part ul li {
    font-size: var(--fs_16);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    list-style-type: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.homepage_third_section .right_side_part .detail_part ul li svg {
    height: 16px;
    color: var(--text_color_4);
    margin-right: 10px;
}

.homepage_third_section .right_side_part .identifies_part {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 12px;
    background-color: var(--bg_color_4);
    margin-top: 20px;
}

.homepage_third_section .right_side_part .identifies_part .title {
    font-family: var(--playfair_semibold);
    font-size: var(--fs_20);
    color: var(--text_color_4);
}

.homepage_third_section .right_side_part .identifies_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_18);
    color: var(--text_color_10);
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.homepage_fourth_section {
    padding: 100px 0 0 0;
    background-color: var(--text_color_4);
}

.homepage_fourth_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage_fourth_section .heading_part .title {
    color: var(--text_color_2);
    font-size: var(--fs_50);
    font-family: var(--playfair_regular);
}

.homepage_fourth_section .heading_part .desc {
    font-size: var(--fs_20);
    color: var(--text_color_6);
    font-family: var(--roboto_regular);
}

.homepage_fourth_section .heading_part .desc svg {
    height: 16px;
}

.homepage_fourth_section .card_part {
    margin-top: 60px;
}

.homepage_fourth_section .card_part .card {
    background-color: var(--bg_color_1);
    border-radius: 10px;
    border: 1px solid #404040;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homepage_fourth_section .card_part .card .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_24);
    color: var(--text_color_11);
    margin-bottom: 10px;
    padding: 30px 30px 0 30px;
}

.homepage_fourth_section .card_part .card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    margin-bottom: 0;
    padding: 0 30px 0 30px;
}

.homepage_fourth_section .card_part .card .image_wrapper .businesscheckimg {
    width: 100%;
}

.homepage_fourth_section .scrolling_part {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 90px;
}

.homepage_fourth_section .scrolling_part p {
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_24);
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
    padding-right: 60px;
    will-change: transform;
    animation: marquee 60s linear infinite;
}

.homepage_fourth_section .scrolling_part p::after {
    content: " " attr(data-text);
    padding-left: 60px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.homepage_fifth_section {
    padding: 100px 0;
}

.homepage_fifth_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage_fifth_section .heading_part .title {
    color: var(--text_color_4);
    font-size: var(--fs_50);
    font-family: var(--playfair_regular);
}

.homepage_fifth_section .heading_part .desc {
    font-size: var(--fs_20);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
}

.homepage_fifth_section .heading_part .desc svg {
    height: 16px;
}

.homepage_fifth_section .card_part {
    margin-top: 60px;
}

.homepage_fifth_section .card_part .card {
    border-radius: 10px;
    border: none;
    background-color: var(--bg_color_3);
    padding: 20px;
    margin-bottom: 20px;
}

.homepage_fifth_section .card_part .card .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    color: var(--text_color_4);
}

.homepage_fifth_section .card_part .card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.homepage_fifth_section .card_part .card .image_part img {
    -webkit-mask-image: radial-gradient(circle at center,
            black 45%,
            rgba(0, 0, 0, 0.6) 65%,
            transparent 85%);
    mask-image: radial-gradient(circle at center,
            black 45%,
            rgba(0, 0, 0, 0.6) 65%,
            transparent 85%);
}

.homepage_fifth_section .card_part .operational_health_card {
    background-image: url(../images/operation_card_bg.png);
    background-position: center;
    background-size: cover;
}

.homepage_fifth_section .card_part .operational_health_card .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    color: var(--text_color_11);
}

.homepage_fifth_section .card_part .operational_health_card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    margin-bottom: 0;
}

.homepage_fifth_section .card_part .operational_health_card .image_part {
    margin-top: 80px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage_fifth_section .card_part .operational_health_card .image_part img {
    -webkit-mask-image: none;
    mask-image: none;
}

.homepage_sixth_section {
    padding: 50px 0;
    background-color: var(--text_color_4);
}

.homepage_sixth_section .heading_part .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    text-align: center;
    margin-bottom: 30px;
}

.homepage_sixth_section .info_part p {
    position: relative;
    font-size: var(--fs_50);
    color: var(--text_color_7);
    font-family: var(--playfair_regular);
    text-align: center;
}

.homepage_sixth_section .info_part p::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--text_color_2);
    opacity: 0;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), #000 0 60%, transparent 75%);
    mask-image: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), #000 0 60%, transparent 75%);
}

.homepage_sixth_section .info_part p:hover::after {
    opacity: 1;
}

.homepage_seventh_section {
    padding: 100px 0;
}

.homepage_seventh_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage_seventh_section .heading_part .title {
    color: var(--text_color_4);
    font-size: var(--fs_50);
    font-family: var(--playfair_regular);
}

.homepage_seventh_section .heading_part .desc {
    font-size: var(--fs_20);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
}

.homepage_seventh_section .heading_part .desc svg {
    height: 16px;
}

.homepage_seventh_section .left_side_part .info {
    border-bottom: 2px solid var(--text_color_6);
    margin-bottom: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.homepage_seventh_section .left_side_part .info.is-active .desc {
    max-height: fit-content;
    opacity: 1;
    margin-top: 6px;
}

.homepage_seventh_section .left_side_part .info::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0%;
    background-color: var(--bg_color_5);
    transition: width linear;
    pointer-events: none;
}

.homepage_seventh_section .left_side_part .info.is-active::after {
    width: 100%;
    transition-duration: var(--who_step_duration, 2500ms);
}

.homepage_seventh_section .left_side_part .info.is-active .title {
    color: var(--text_color_5);
}

.homepage_seventh_section .left_side_part .info .title {
    font-family: var(--roboto_regular);
    font-size: var(--fs_24);
    color: var(--text_color_4);
    margin-bottom: 5px;
}

.homepage_seventh_section .left_side_part .info .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}

.homepage_seventh_section .right_side_part {
    height: 420px;
}

.homepage_seventh_section .right_side_part .whoSwiper {
    height: 100%;
}

.homepage_seventh_section .right_side_part .swiper-slide {
    height: 100%;
}

.homepage_seventh_section .right_side_part .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.homepage_eighth_section .container {
    background-image: url(../images/businessvitals.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 30px 40px;
}

.homepage_eighth_section .left_side_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.homepage_eighth_section .left_side_part .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_50);
    color: var(--text_color_2);
}

.homepage_eighth_section .left_side_part .desc {
    margin-bottom: 0;
    font-size: var(--fs_20);
    font-family: var(--roboto_regular);
    color: var(--text_color_2);
}

.homepage_eighth_section .right_side_part {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 20px;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .old_price {
    font-size: var(--fs_32);
    color: var(--text_color_10);
    font-family: var(--roboto_regular);
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .old_price sup {
    font-size: var(--fs_16);
    position: relative;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .old_price .old_amt {
    text-decoration: line-through;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .new_price_wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .new_price {
    font-size: var(--fs_32);
    color: var(--text_color_1);
    font-family: var(--roboto_semibold);
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .new_price sup {
    font-size: var(--fs_12);
    top: -18px;
    position: relative;
}

.homepage_eighth_section .right_side_part .pricing_card .price_top .price_type {
    font-size: var(--fs_12);
    margin-top: 4px;
    color: var(--text_color_1);
}

.homepage_eighth_section .right_side_part .pricing_title {
    font-family: var(--roboto_semibold);
    font-size: var(--fs_18);
    color: var(--text_color_2);
    margin-bottom: 16px;
}

.homepage_eighth_section .right_side_part .feature_list {
    padding-left: 0;
}

.homepage_eighth_section .right_side_part .feature_list li {
    list-style-type: none;
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.homepage_eighth_section .right_side_part .feature_list li svg {
    height: 16px;
    margin-right: 5px;
}

.homepage_eighth_section .right_side_part .pricing_card .get_detailed_btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: color 0.4s ease, background-color 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    text-align: center;
}

.homepage_eighth_section .right_side_part .pricing_card .get_detailed_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.homepage_eighth_section .right_side_part .pricing_card .get_detailed_btn:hover::before {
    opacity: 1;
}

.homepage_nineth_section {
    padding: 100px 0;
}

.homepage_nineth_section .left_side_part .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.homepage_nineth_section .left_side_part .heading_part .title {
    color: var(--text_color_4);
    font-size: var(--fs_50);
    font-family: var(--playfair_regular);
}

.homepage_nineth_section .left_side_part .heading_part .desc {
    font-size: var(--fs_20);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
}

.homepage_nineth_section .left_side_part .heading_part .desc svg {
    height: 16px;
}

.homepage_nineth_section .right_side_part .accordion .accordion-item .accordion-header {
    font-family: var(--roboto_regular);
    font-size: var(--fs_24);
    color: var(--text_color_4);
}

.homepage_nineth_section .right_side_part .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: var(--text_color_4);
    background-color: transparent;
}

.homepage_nineth_section .right_side_part .accordion .accordion-item .accordion-button::after {
    display: none;
}

.homepage_nineth_section .right_side_part .accordion .accordion-item .accordion-body {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
}

.homepage_nineth_section .right_side_part .accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
}

.homepage_nineth_section .right_side_part .accordion-item {
    border-right: none;
    border-left: none;
}

.homepage_nineth_section .right_side_part .accordion-item:first-of-type {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.homepage_nineth_section .right_side_part .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.homepage_nineth_section .right_side_part .accordion-button:focus {
    box-shadow: none;
}

footer {
    background-color: var(--bg_color_5);
    padding: 100px 0 0 0;
}

footer .first_part .footer_logo {
    margin-bottom: 30px;
}

footer .first_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_24);
    color: var(--text_color_11);
    line-height: 1.1;
}

footer .second_part .title {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

footer .second_part .title svg {
    height: 16px;
    margin-right: 6px;
}

footer .second_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin-left: 22px;
}

footer .second_part .desc a {
    text-decoration: none;
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

footer .third_part {
    margin-top: 18px;
}

footer .third_part .title {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

footer .third_part .title svg {
    height: 16px;
    margin-right: 6px;
}

footer .third_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin-left: 22px;
}

footer .third_part a {
    text-decoration: none;
}

footer .third_part .desc a {
    text-decoration: none;
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

footer .footer_tag_line {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 30px 6px 30px;
    margin-top: 100px;
}

.signup_section .signup_wrapper {
    min-height: 100vh;
}

.signup_section .left_side_part {
    position: relative;
    min-height: 100vh;
    background: url("../images/loginbg.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.signup_section .left_side_part .logo_box {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.signup_section .left_side_part .logo_box img {
    width: 100%;
    height: auto;
    display: block;
}

.signup_section .left_side_part .left_overlay_content {
    position: absolute;
    left: 0%;
    bottom: 20px;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup_section .left_side_part .left_overlay_content p {
    margin: 0;
    color: var(--text_color_12);
    font-family: var(--playfair_medium);
    font-size: var(--fs_32);
    line-height: 1.25;
}

.signup_section .right_side_part {
    min-height: 100vh;
    background-color: var(--bg_color_2);
    display: flex;
    align-items: self-start;
    justify-content: center;
    padding: 30px;
}

.signup_section .right_side_part .signup_form_box {
    width: 100%;
    padding: 0;
}

.signup_section .right_side_part .signup_form_box .title {
    margin: 0 0 10px 0;
    font-family: var(--roboto_medium);
    font-size: var(--fs_42);
    line-height: 1.2;
    color: var(--text_color_12);
}

.signup_section .right_side_part .signup_form_box .desc {
    margin: 0 0 40px 0;
    color: var(--text_color_3);
    font-size: var(--fs_14);
    line-height: 1.5;
    font-family: var(--roboto_regular);
}

.signup_section .right_side_part .signup_form_box .form_group {
    margin-bottom: 22px;
}

.signup_section .right_side_part .signup_form_box .form_group label {
    display: block;
    margin-bottom: 10px;
    font-size: var(--fs_14);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_regular);
}

.signup_section .right_side_part .signup_form_box .form_group input {
    width: 100%;
    border: 1px solid #E4E1E0;
    border-radius: 6px;
    background-color: var(--bg_color_2);
    font-family: var(--roboto_regular);
    padding: 10px 20px;
    font-size: var(--fs_14);
    color: var(--text_color_4);
    outline: none;
    box-shadow: none;
}

.signup_section .right_side_part .signup_form_box .form_group input::placeholder {
    color: var(--text_color_3);
}

.signup_section .right_side_part .signup_form_box .form_group .input_with_icon {
    position: relative;
}

.signup_section .right_side_part .signup_form_box .form_group .input_with_icon input {
    padding-right: 40px;
}

.signup_section .right_side_part .signup_form_box .form_group .eye_icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8f8f8f;
    font-size: var(--fs_16);
    cursor: pointer;
}

.signup_section .right_side_part .signup_form_box .signup_btn {
    position: relative;
    padding: 12px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_regular);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    margin-top: 10px;
}

.signup_section .right_side_part .signup_form_box .signup_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -220%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.signup_section .right_side_part .signup_form_box .signup_btn:hover::before {
    opacity: 1;
}

.signup_section .right_side_part .signup_form_box .login_text {
    text-align: center;
    margin-top: 30px;
    font-size: var(--fs_16);
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
}

.signup_section .right_side_part .signup_form_box .login_text a {
    color: var(--text_color_4);
    text-decoration: underline;
    font-family: var(--roboto_regular);
}

.main_header {
    backdrop-filter: blur(7px);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.main_header .navbar {
    padding: 20px 30px;
}

.main_header .navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main_header .navbar-brand img {
    /* width: 140px; */
    height: auto;
    display: block;
}

.main_header .navbar-collapse {
    align-items: center;
}

.main_header .nav_center {
    gap: 34px;
}

.main_header .nav_center .nav-link {
    padding: 0;
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
    transition: 0.3s ease;
}

.main_header .nav_center .nav-link:hover,
.main_header .nav_center .nav-link.active {
    color: var(--text_color_5);
}

.main_header .header_profile_dropdown {
    display: flex;
    align-items: center;
}

.main_header .header_profile_dropdown .header_profile_part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_header .header_profile_dropdown .header_profile_part .profile_img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.main_header .header_profile_dropdown .header_profile_part .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main_header .header_profile_dropdown .header_profile_part span {
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.main_header .header_profile_dropdown .header_logout_part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_header .header_profile_dropdown .profile_dropdown_menu .logout_img {
    width: 24px;
    height: 24px;
}

.main_header .header_profile_dropdown .profile_dropdown_menu .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main_header .header_profile_dropdown .profile_dropdown_menu span {
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_medium);
}

.main_header .header_profile_dropdown .profile_dropdown_menu {
    margin-top: 12px;
    padding: 8px 0;
}

.main_header .header_profile_dropdown .profile_dropdown_menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_header .header_profile_dropdown .header_logout_part .logout_img {
    width: 24px;
    height: 24px;
}

.main_header .header_profile_dropdown .header_logout_part .logout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main_header .header_profile_dropdown .header_logout_part span {
    font-size: var(--fs_18);
    line-height: 1.2;
    color: var(--text_color_4);
    font-family: var(--roboto_semibold);
}

.main_header .navbar-toggler {
    border: none;
    box-shadow: none !important;
    /* padding: 4px 8px; */
    padding: 0;
}

.main_header .navbar-toggler svg {
    height: 40px;
    width: 40px;
    color: var(--text_color_5);
}

@media only screen and (max-width: 992px) {
    .main_header .header_profile_dropdown .profile_dropdown_menu {
        margin-top: 12px;
        padding: 8px 0;
        left: 0;
        right: auto;
    }

    .main_header .navbar-collapse {
        padding-top: 12px;
    }

    .main_header .header_profile_dropdown {
        width: 100%;
        display: block;
        position: relative;
    }

    .main_header .header_profile_dropdown .header_profile_part {
        width: fit-content;
    }

    .main_header .header_profile_dropdown .profile_dropdown_menu {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        left: 0 !important;
        right: auto !important;
        float: none !important;
        width: 100%;
        margin-top: 12px !important;
        padding: 0;
        border-radius: 10px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.12);
    }

    .main_header .header_profile_dropdown .profile_dropdown_menu li {
        width: 100%;
    }

    .main_header .header_profile_dropdown .profile_dropdown_menu .dropdown-item,
    .main_header .header_profile_dropdown .profile_dropdown_menu a,
    .main_header .header_profile_dropdown .profile_dropdown_menu button {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0;
        padding: 12px 14px;
        text-align: left;
        background: transparent;
        border: none;
    }

    .main_header .header_profile_dropdown .profile_dropdown_menu li+li,
    .main_header .header_profile_dropdown .profile_dropdown_menu .dropdown-item+.dropdown-item {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
}

.dashboard_first_section {
    background-color: #F9F9FB;
    padding: 100px 0;
    min-height: 100vh;
}

.dashboard_first_section .card {
    border-radius: 20px;
    border: 1px solid #C2C2C2;
}

.dashboard_first_section .left_side_part .first_card {
    position: relative;
    padding: 22px;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg_color_2);
}

.dashboard_first_section .left_side_part .first_card .content {
    position: relative;
    z-index: 2;
    width: 80%;
}

.dashboard_first_section .left_side_part .first_card .content .badge {
    background-color: var(--bg_color_6);
    color: var(--text_color_13);
    padding: 10px 16px;
    border-radius: 30px;
    font-family: var(--roboto_semibold);
    font-size: var(--fs_14);
    margin-bottom: 5px;
}

.dashboard_first_section .left_side_part .first_card .content .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_28);
    color: var(--text_color_12);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .first_card .content .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .first_card .img_part {
    position: absolute;
    right: 10px;
    top: 5px;
    bottom: 5px;
    z-index: 1;
}

.dashboard_first_section .left_side_part .first_card .img_part img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.dashboard_first_section .left_side_part .second_card {
    padding: 22px;
    height: 280px;
    overflow: hidden;
}

.dashboard_first_section .left_side_part .second_card .content .smalltitle {
    font-family: var(--playfair_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_14);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .second_card .content .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 15px;
}

.dashboard_first_section .left_side_part .second_card .content .cassessment_btn {
    position: relative;
    padding: 10px 16px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_semibold);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--fs_14);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
    letter-spacing: 3%;
}

.dashboard_first_section .left_side_part .second_card .content .cassessment_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.dashboard_first_section .left_side_part .second_card .content .cassessment_btn:hover::before {
    opacity: 1;
}

.dashboard_first_section .left_side_part .second_card .content .img_part {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.dashboard_first_section .left_side_part .third_card {
    background-color: var(--bg_color_2);
    height: 280px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.dashboard_first_section .left_side_part .third_card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 0 0, rgba(74, 108, 247) 2px, transparent 2px),
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 50px 50px;
    background-position: bottom;
    background-repeat: repeat;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0));
}

.dashboard_first_section .left_side_part .third_card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dashboard_first_section .left_side_part .third_card .content .smalltitle {
    font-family: var(--playfair_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_5);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .third_card .content .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .third_card .swiper_part {
    display: flex;
    justify-content: start;
    width: fit-content;
    margin-top: 15px;
    margin-left: 10px;
}

.dashboard_first_section .left_side_part .third_card .swiper {
    width: 120px;
    height: 150px;
}

.dashboard_first_section .left_side_part .third_card .swiper .swiper-slide {
    position: relative;
    border-radius: 10px;
    user-select: none;
    background-color: var(--bg_color_4);
    border: 1px solid #E4E1E0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
}

.dashboard_first_section .left_side_part .third_card .swiper .swiper-slide .first {
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    color: var(--text_color_1);
}

.dashboard_first_section .left_side_part .third_card .swiper .swiper-slide .second {
    font-family: var(--roboto_medium);
    font-size: var(--fs_42);
    color: var(--text_color_1);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .third_card .swiper .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.dashboard_first_section .left_side_part .fourth_card {
    background-color: var(--bg_color_2);
    background-image: url(../images/circle.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 75%;
    padding: 22px;
    height: 280px;
}

.dashboard_first_section .left_side_part .fourth_card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dashboard_first_section .left_side_part .fourth_card .content .smalltitle {
    font-family: var(--playfair_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_5);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .fourth_card .content .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 0;
}

.dashboard_first_section .left_side_part .fourth_card .content .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    color: var(--text_color_3);
    border: 1px solid var(--text_color_3);
    border-radius: 6px;
    padding: 10px;
    margin: 0;
}

.dashboard_first_section .right_side_part .fifth_card {
    background-color: var(--bg_color_2);
    padding: 22px;
    overflow: hidden;
}

.dashboard_first_section .right_side_part .fifth_card .content .smalltitle {
    font-family: var(--playfair_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_5);
    margin-bottom: 0;
}

.dashboard_first_section .right_side_part .fifth_card .content .title {
    font-family: var(--playfair_regular);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 0;
}

.dashboard_first_section .noactive_plan_card {
    background-color: var(--bg_color_2);
    border: 1px solid #C2C2C2;
    border-radius: 20px;
    padding: 22px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dashboard_first_section .noactive_plan_card p:first-child {
    width: fit-content;
    background-color: var(--bg_color_6);
    color: var(--text_color_13);
    padding: 10px 16px;
    border-radius: 30px;
    font-family: var(--roboto_semibold);
    font-size: var(--fs_14);
    margin-bottom: 10px;
}

.dashboard_first_section .noactive_plan_card .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_28);
    color: var(--text_color_12);
    margin-bottom: 10px;
}

.dashboard_first_section .noactive_plan_card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    margin-bottom: 20px;
    max-width: 520px;
}

.dashboard_first_section .noactive_plan_card .purchase_planbtn {
    position: relative;
    padding: 10px 16px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_semibold);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--fs_14);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
}

.dashboard_first_section .noactive_plan_card .purchase_planbtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.dashboard_first_section .noactive_plan_card .purchase_planbtn:hover::before {
    opacity: 1;
}

.pillars_first_section .banner_part {
    background-color: #E2EDF8;
    height: 170px;
}

.pillars_first_section .content_part {
    margin-top: -60px;
}

.pillars_first_section .content_part .card {
    border: 1px solid #DEDEDE;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pillars_first_section .content_part .card .smalltitle {
    font-family: var(--roboto_semibold);
    font-size: var(--fs_15);
    color: var(--text_color_5);
    margin-bottom: 2px;
}

.pillars_first_section .content_part .card .title {
    font-family: var(--playfair_medium);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.pillars_first_section .content_part .card .process_part {
    border: 1px solid #E4E1E0;
    padding: 15px;
    border-radius: 10px;
}

.pillars_first_section .content_part .card .process_part .status_part {
    display: flex;
    justify-content: space-between;
}

.pillars_first_section .content_part .card .process_part .status_part .completed {
    font-family: var(--playfair_semibold);
    color: var(--text_color_13);
    font-size: var(--fs_14);
    margin-bottom: 0;
}

.pillars_first_section .content_part .card .process_part .status_part .inprocess {
    font-family: var(--playfair_semibold);
    color: var(--text_color_14);
    font-size: var(--fs_14);
    margin-bottom: 0;
}

.pillars_first_section .content_part .card .process_part .status_part .score {
    font-family: var(--playfair_semibold);
    color: var(--text_color_12);
    font-size: var(--fs_14);
    margin-bottom: 0;
}

.pillars_first_section .content_part .card .process_part .bar_part {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #D9DCE1;
    border-radius: 30px;
    overflow: hidden;
    margin: 15px 0 15px 0;
}

.pillars_first_section .content_part .card .process_part .bar_part .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #2F6BFF;
    border-radius: 30px;
    transition: width 0.3s ease;
}

.pillars_first_section .content_part .card .process_part .text_part p {
    margin-bottom: 0;
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    color: var(--text_color_1);
}

.pillars_first_section .content_part .card .button_part .viewinsights_btn {
    position: relative;
    padding: 10px 16px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_regular);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
    margin-top: 15px;
}

.pillars_first_section .content_part .card .button_part .viewinsights_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pillars_first_section .content_part .card .button_part .viewinsights_btn:hover::before {
    opacity: 1;
}

.pillars_first_section .content_part .locked_card {
    position: relative;
    overflow: hidden;
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
    border: 1px solid #E4E1E0;
}

.pillars_first_section .content_part .locked_card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.pillars_first_section .content_part .locked_card .smalltitle,
.pillars_first_section .content_part .locked_card .title,
.pillars_first_section .content_part .locked_card .process_part,
.pillars_first_section .content_part .locked_card .button_part {
    filter: blur(1px);
}

.pillars_first_section .content_part .locked_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillars_first_section .content_part .locked_badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--text_color_1);
    color: var(--text_color_2);
    font-size: var(--fs_14);
    font-family: var(--roboto_semibold);
    line-height: 1;
    padding: 6px 10px;
    border-radius: 4px;
}

.pillars_first_section .content_part .locked_badge svg {
    height: 19px;
    width: 19px;
}

.pillars_first_section .content_part .assessment_progress_card {
    background-color: var(--bg_color_2);
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    padding: 20px;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 24px 24px 24px 24px;
    margin-bottom: 18px;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .title {
    font-family: var(--roboto_bold);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    margin-bottom: 28px;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .circle_progress {
    --size: 230px;
    --thickness: 30px;
    --angle: calc(var(--progress) * 3.6deg);
    width: var(--size);
    height: var(--size);
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: conic-gradient(var(--bg_color_5) 0deg var(--angle),
            #E4E7ED var(--angle) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .circle_progress::before {
    content: "";
    position: absolute;
    width: calc(var(--size) - var(--thickness) * 2);
    height: calc(var(--size) - var(--thickness) * 2);
    background-color: #F7F7F8;
    border-radius: 50%;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .circle_progress .circle_inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .circle_progress .circle_inner span {
    font-family: var(--roboto_bold);
    font-size: var(--fs_24);
    color: var(--text_color_4);
    line-height: 1;
}

.pillars_first_section .content_part .assessment_progress_card .progress_box .progress_text {
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    color: var(--text_color_10);
    text-align: center;
    margin-bottom: 0;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 24px;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    color: var(--text_color_1);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #DDDDDD;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    padding: 14px;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item.started {
    background-color: #DCE8F4;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item.completed {
    background-color: #DDF1E0;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item .left_part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item .left_part .dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    flex: 0 0 6px;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item.started .left_part .dot {
    background-color: var(--bg_color_5);
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item.completed .left_part .dot {
    background-color: var(--text_color_13);
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item .left_part p {
    margin-bottom: 0;
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    line-height: 1.2;
}

.pillars_first_section .content_part .assessment_progress_card .recent_activity_box .activity_item .right_part {
    font-family: var(--roboto_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    line-height: 1.2;
}

.assessment_first_section {
    background-image: url("../images/business_health_assessment_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.assessment_first_section .banner_part {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.assessment_first_section .banner_content {
    z-index: 2;
}

.assessment_first_section .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_32);
    color: var(--text_color_2);
    margin-bottom: 10px;
}

.assessment_first_section .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_20);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.assessment_first_section .pillar {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 100%;
}

.assessment_first_section .pillar.left {
    left: 10%;
}

.assessment_first_section .pillar.right {
    right: 10%;
}

.assessment_second_section {
    padding: 50px 0;
    background-color: #F9F9FB;
    min-height: 100vh;
}

.assessment_second_section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.assessment_second_section .assessment_second_wrap {
    margin: 0 auto;
}

.assessment_second_section .assessment_second_topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.assessment_second_section .assessment_progress_left {
    flex: 1;
}

.assessment_second_section .assessment_progress_text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    font-family: var(--roboto_medium);
    font-size: var(--fs_18);
    line-height: 1.4;
    color: var(--text_color_4);
}

.assessment_second_section .assessment_progress_icon {
    font-size: var(--fs_16);
    line-height: 1;
}

.assessment_second_section .assessment_progress_label {
    font-family: var(--roboto_bold);
    font-size: var(--fs_16);
    line-height: 1.3;
    color: var(--text_color_15);
}

.assessment_second_section .assessment_progress_time {
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    line-height: 1.3;
    color: var(--text_color_10);
    white-space: nowrap;
    padding-top: 2px;
}

.assessment_second_section .assessment_progress_bar {
    width: 100%;
    height: 4px;
    background: #d6d6d6;
    border-radius: 50px;
    overflow: hidden;
}

.assessment_second_section .assessment_progress_fill {
    display: block;
    width: 12%;
    height: 100%;
    background: var(--bg_color_5);
    border-radius: 50px;
}

.assessment_second_section .assessment_second_meta {
    font-family: var(--roboto_medium);
    font-size: var(--fs_18);
    line-height: 1.4;
    color: var(--text_color_4);
    margin: 20px 0 30px 0;
}

.assessment_second_section .assessment_second_heading {
    font-family: var(--roboto_bold);
    font-size: var(--fs_20);
    line-height: 1.4;
    color: var(--text_color_5);
    margin: 20px 0 20px 0;
}

.assessment_second_section .assessment_question_card {
    background: var(--bg_color_2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 22px;
}

.assessment_second_section .assessment_question_title {
    margin: 0;
    font-family: var(--roboto_semibold);
    font-size: var(--fs_24);
    line-height: 1.4;
    color: var(--text_color_5);
}

.assessment_second_section .assessment_option_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.assessment_second_section .assessment_option_card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg_color_2);
    border-radius: 10px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.assessment_second_section .assessment_option_card:hover {
    border-color: var(--bg_color_5);
    box-shadow: 0 4px 14px rgba(16, 126, 216, 0.08);
}

.assessment_second_section .assessment_option_input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.assessment_second_section .assessment_option_circle {
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    border: 1.5px solid var(--text_color_4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--roboto_medium);
    font-size: var(--fs_18);
    line-height: 1;
    color: var(--text_color_4);
    background: var(--bg_color_2);
    transition: all 0.3s ease;
    margin-top: 1px;
}

.assessment_second_section .assessment_option_text {
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
    line-height: 1.4;
    color: var(--text_color_3);
    flex: 1;
}

.assessment_second_section .assessment_option_input:checked~.assessment_option_circle {
    background: var(--bg_color_5);
    border-color: var(--bg_color_5);
    color: var(--text_color_2);
}

.assessment_second_section .assessment_option_input:checked~.assessment_option_text {
    color: var(--text_color_4);
}

.assessment_second_section .assessment_option_card:has(.assessment_option_input:checked) {
    border-color: var(--bg_color_5);
    box-shadow: 0 6px 18px rgba(16, 126, 216, 0.12);
}

/* .assessment_second_section .assessment_option_input:checked+.assessment_option_circle {
    background: var(--bg_color_5) ;
    border-color: var(--bg_color_5);
    color: var(--text_color_2);
}

.assessment_second_section .assessment_option_input:checked+.assessment_option_circle+.assessment_option_text {
    color: var(--text_color_4);
}

.assessment_second_section .assessment_option_card:has(.assessment_option_input:checked) {
    border-color: var(--bg_color_5);
    box-shadow: 0 6px 18px rgba(16, 126, 216, 0.12);
} */

.assessment_second_section .prev_next_button_part {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 40px;
}

.assessment_second_section .prev_next_button_part .previous_btn {
    color: var(--text_color_1);
    font-family: var(--roboto_regular);
    border: 1px solid var(--text_color_1);
    border-radius: 4px;
    font-size: var(--fs_16);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.assessment_second_section .prev_next_button_part .previous_btn:hover {
    background-color: var(--text_color_4);
    color: var(--text_color_2);
}

.assessment_second_section .prev_next_button_part .next_btn {
    position: relative;
    padding: 10px 46px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_regular);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.assessment_second_section .prev_next_button_part .next_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.assessment_second_section .prev_next_button_part .next_btn:hover::before {
    opacity: 1;
}

.assessment_second_section .prev_next_button_part .finish_btn_css {
    padding: 10px 46px;
    background-color: var(--bg_color_5);
    color: var(--text_color_2);
    font-family: var(--roboto_regular);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

.assessment_option_lottie {
    display: none;
    flex-shrink: 0;
}

.assessment_option_card:has(.assessment_option_input:checked) .assessment_option_lottie {
    display: block;
}

.pricing_part {
    background-image: url(../images/pricingbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing_part .pricing_first_section .heading_part {
    padding: 60px 0 60px 0;
}

.pricing_part .pricing_first_section .heading_part .title {
    font-family: var(--playfair_medium);
    font-size: var(--fs_32);
    color: var(--text_color_12);
    text-align: center;
}

.pricing_part .pricing_first_section .heading_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    margin-bottom: 0;
    text-align: center;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card {
    border: 1px solid #DEDEDE;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 45px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .new_price_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .new_price_wrap .new_price {
    font-family: var(--roboto_medium);
    font-size: var(--fs_40);
    color: var(--text_color_12);
    line-height: 1;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .new_price_wrap .old_amt {
    font-family: var(--roboto_medium);
    font-size: var(--fs_20);
    color: var(--text_color_3);
    text-decoration: line-through;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .old_price_wrap .price_type {
    font-family: var(--roboto_regular);
    font-size: var(--fs_12);
    color: var(--text_color_12);
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .divider {
    border-bottom: 1px dashed var(--text_color_3);
    margin: 40px 0;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .whatyouget {
    font-family: var(--roboto_medium);
    font-size: var(--fs_18);
    color: var(--text_color_12);
    margin-bottom: 5px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card ul {
    padding-left: 0;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card ul li {
    font-family: var(--roboto_regular);
    font-size: var(--fs_18);
    color: var(--text_color_3);
    list-style-type: none;
    display: flex;
    align-items: center;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card ul li svg {
    height: 18px;
    width: 18px;
    margin-right: 6px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .get_detailed_report_btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: color 0.4s ease, background-color 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .get_detailed_report_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pricing_part .pricing_first_section .details_part .left_side_part .card .get_detailed_report_btn:hover::before {
    opacity: 1;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card {
    border: 1px solid #DEDEDE;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_20);
    color: var(--text_color_12);
    margin-bottom: 3px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    margin-bottom: 0;
    color: var(--text_color_3);
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .divider {
    border-bottom: 1px dashed var(--text_color_3);
    margin: 15px 0;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info {
    border: 1px solid #DEDEDE;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info:nth-last-of-type(1) {
    margin-bottom: 0;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info .img_part img {
    height: 32px;
    width: 32px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info .content_part {
    margin-left: 10px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info .content_part .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
    color: var(--text_color_10);
    margin-bottom: 2px;
}

.pricing_part .pricing_first_section .details_part .right_side_part .card .info .content_part .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    margin-bottom: 0;
    color: var(--text_color_3);
}

.contactus_first_section {
    padding: 100px 0 80px 0;
    background-color: #f8f8f8;
}

.contactus_first_section .contactus_hero {
    margin-bottom: 65px;
}

.contactus_first_section .contactus_hero .contactus_small_title,
.contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_label,
.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_label,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_label,
.contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 40px;
    background: #edf4fb;
    border: 1px solid #d7e5f4;
    color: var(--text_color_5);
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    line-height: 1;
    margin-bottom: 18px;
}

.contactus_first_section .contactus_hero .contactus_hero_heading {
    margin: 0 auto 15px auto;
    color: var(--text_color_1);
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    line-height: 1.12;
    max-width: 920px;
}

.contactus_first_section .contactus_hero .contactus_hero_text {
    margin: 0 auto;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_20);
    line-height: 1.5;
    max-width: 760px;
}

.contactus_first_section .contactus_main_row {
    margin-bottom: 30px;
}

.contactus_first_section .contactus_main_row .contactus_left_box,
.contactus_first_section .contactus_main_row .contactus_form_box,
.contactus_first_section .contactus_bottom_row .contactus_bottom_card {
    background: var(--bg_color_2);
    border: 1px solid #dde3ea;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(14, 25, 36, 0.04);
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head {
    margin-bottom: 28px;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_panel_heading,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_form_heading {
    margin: 0 0 16px;
    color: var(--text_color_1);
    font-family: var(--roboto_medium);
    font-size: var(--fs_24);
    line-height: 1.16;
    letter-spacing: -0.3px;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_panel_text,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_form_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_17);
    line-height: 1.5;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list {
    gap: 16px;
    margin-bottom: 28px;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item {
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e2e7ed;
    border-radius: 10px;
    background: #fbfcfd;
    transition: all 0.3s ease;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item:hover {
    border-color: #cfdceb;
    background: #f7fafc;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item .contactus_info_icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #d9e2ec;
    background: #edf4fb;
    color: var(--text_color_5);
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item .contactus_info_icon .contactus_info_icon_text {
    line-height: 1;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item .contactus_info_icon .contactus_info_icon_text svg {
    height: 24px;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item .contactus_info_textbox .contactus_info_title {
    margin: 0 0 4px;
    color: var(--text_color_1);
    font-family: var(--roboto_medium);
    font-size: var(--fs_17);
    line-height: 1.3;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_info_list .contactus_info_item .contactus_info_textbox .contactus_info_value {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    line-height: 1.7;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box {
    margin-top: auto;
    padding: 24px 24px;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    background: #fbfcfd;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_support_list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_support_list .contactus_support_item {
    margin-bottom: 12px;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_15);
    display: flex;
    align-items: center;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_support_list .contactus_support_item:last-child {
    margin-bottom: 0;
}

.contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_support_list .contactus_support_item .contactus_support_icon svg {
    height: 18px;
    margin-right: 5px;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area {
    display: flex;
    flex-direction: column;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group .contactus_form_label {
    margin-bottom: 10px;
    color: var(--text_color_1);
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
    line-height: 1.4;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group input,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group select,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group textarea {
    width: 100%;
    min-height: 45px;
    padding: 12px 18px;
    border-radius: 4px;
    border: 1px solid #d9dde3;
    background: #ffffff;
    color: var(--text_color_1);
    font-family: var(--roboto_regular);
    font-size: var(--fs_15);
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group input::placeholder,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group textarea::placeholder {
    color: var(--text_color_3);
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group input:focus,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group select:focus,
.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group textarea:focus {
    border-color: #b9cae6;
    box-shadow: 0 0 0 3px rgba(16, 126, 216, 0.06);
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_group textarea {
    min-height: 150px;
    padding-top: 16px;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom {
    gap: 18px;
    margin-top: 6px;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom .contactus_submit_btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: color 0.4s ease, background-color 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom .contactus_submit_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%, var(--text_color_5) 0%, #0b1c2a 50%, var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom .contactus_submit_btn:hover::before {
    opacity: 1;
}

.contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom .contactus_submit_btn:hover {
    background: var(--bg_color_5);
}

.contactus_first_section .contactus_bottom_row {
    margin-top: 18px;
}

.contactus_first_section .contactus_bottom_row .contactus_bottom_card {
    min-height: 230px;
    padding: 34px 30px;
}

.contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_bottom_heading {
    margin: 0 0 16px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_24);
    line-height: 1.2;
}

.contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_bottom_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .contactus_first_section .contactus_hero .contactus_hero_heading {
        font-size: 46px;
    }

    .contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_panel_heading,
    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_form_heading {
        font-size: 34px;
    }

    .contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_bottom_heading {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .contactus_first_section {
        padding: 80px 0 55px;
    }

    .contactus_first_section .contactus_hero {
        margin-bottom: 45px;
    }

    .contactus_first_section .contactus_hero .contactus_hero_heading {
        font-size: 40px;
    }

    .contactus_first_section .contactus_hero .contactus_hero_text {
        font-size: var(--fs_18);
    }

    .contactus_first_section .contactus_main_row .contactus_left_box,
    .contactus_first_section .contactus_main_row .contactus_form_box,
    .contactus_first_section .contactus_bottom_row .contactus_bottom_card {
        padding: 28px;
    }

    .contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_panel_heading,
    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_form_heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .contactus_first_section {
        padding: 55px 0 35px;
    }

    .contactus_first_section .contactus_hero .contactus_hero_heading {
        font-size: 32px;
    }

    .contactus_first_section .contactus_hero .contactus_hero_text {
        font-size: var(--fs_16);
        line-height: 1.7;
    }

    .contactus_first_section .contactus_hero .contactus_small_title,
    .contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_label,
    .contactus_first_section .contactus_main_row .contactus_left_box .contactus_support_box .contactus_label,
    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_label,
    .contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_label {
        font-size: var(--fs_12);
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .contactus_first_section .contactus_main_row .contactus_left_box .contactus_panel_intro .contactus_panel_heading,
    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_head .contactus_form_heading,
    .contactus_first_section .contactus_bottom_row .contactus_bottom_card .contactus_bottom_heading {
        font-size: 24px;
    }

    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .contactus_first_section .contactus_main_row .contactus_form_box .contactus_form_area .contactus_form_bottom .contactus_submit_btn {
        width: 100%;
    }
}

.report_first_section {
    padding: 100px 0 80px;
    background-color: #f8f8f8;
    min-height: 92vh;
}

.report_first_section .report_top_bar {
    margin-bottom: 40px;
}

.report_first_section .report_part .report_badge,
.report_first_section .report_hero_left .report_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 40px;
    background: #edf4fb;
    border: 1px solid #d7e5f4;
    color: var(--text_color_5);
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    line-height: 1;
    margin-bottom: 18px;
}

.report_first_section .report_hero_left {
    max-width: 720px;
}

.report_first_section .report_hero_left .report_title {
    margin: 0 0 14px;
    color: var(--text_color_1);
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    line-height: 1.2;
}

.report_first_section .report_hero_left .report_desc {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_18);
    line-height: 1.5;
}

.report_first_section .report_top_bar .report_print_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.report_first_section .report_top_bar .report_print_wrapper .report_print_btn {
    position: relative;
    padding: 10px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.report_first_section .report_top_bar .report_print_wrapper .report_print_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -50%,
            var(--text_color_5) 0%,
            #0b1c2a 80%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.report_first_section .report_top_bar .report_print_wrapper .report_print_btn:hover::before {
    opacity: 1;
}

.report_first_section .report_first_section_box {
    background: var(--bg_color_2);
    border: 1px solid #dde3ea;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(14, 25, 36, 0.04);
    height: 100%;
}

.report_first_section .report_card_head {
    margin-bottom: 24px;
}

.report_first_section .report_bottom_row {
    margin-top: 30px;
}

.report_first_section .report_card_title {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_24);
    line-height: 1.2;
}

.report_first_section .report_card_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    line-height: 1.5;
}

.report_first_section .continue_assessment_btn {
    position: relative;
    padding: 10px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px;
}

.report_first_section .continue_assessment_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.report_first_section .continue_assessment_btn:hover::before {
    opacity: 1;
}

.report_first_section .report_card_head .report_card_title,
.report_first_section .report_access_card .report_card_title,
.report_first_section .report_weak_card .report_card_title,
.report_first_section .report_action_card .report_card_title {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_24);
    line-height: 1.2;
}

.report_first_section .report_card_head .report_card_text,
.report_first_section .report_access_card .report_note_text,
.report_first_section .report_weak_card .report_card_text,
.report_first_section .report_action_card .report_card_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    line-height: 1.5;
}

.report_first_section .report_score_highlight {
    padding: 22px 24px;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    background: #fbfcfd;
    margin-bottom: 20px;
    gap: 16px;
}

.report_first_section .report_score_left .report_score_label {
    margin: 0 0 8px;
    color: var(--text_color_3);
    font-family: var(--roboto_medium);
    font-size: var(--fs_16);
    line-height: 1.3;
}

.report_first_section .report_score_left .report_score_value {
    margin: 0;
    color: var(--text_color_1);
    font-family: var(--playfair_regular);
    font-size: 44px;
    line-height: 1;
}

.report_first_section .report_status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 30px;
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    line-height: 1;
}

.report_first_section .report_status.critical,
.report_first_section .report_status.atrisk {
    background: rgba(255, 68, 0, 0.08);
    color: var(--text_color_15);
}

.report_first_section .report_status.weak,
.report_first_section .report_status.unstable {
    background: rgba(255, 174, 0, 0.12);
    color: #c78800;
}

.report_first_section .report_status.stable,
.report_first_section .report_status.structured {
    background: rgba(16, 126, 216, 0.10);
    color: var(--text_color_5);
}

.report_first_section .report_status.strong,
.report_first_section .report_status.scalable {
    background: rgba(49, 145, 49, 0.10);
    color: var(--text_color_13);
}

.report_first_section .report_range_list .report_range_item {
    padding: 16px 18px;
    border: 1px solid #e2e7ed;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 12px;
}

.report_first_section .report_range_list .report_range_item:last-child {
    margin-bottom: 0;
}

.report_first_section .report_range_list .report_range_item.active {
    background: #edf4fb;
    border-color: #cfe0f1;
}

.report_first_section .report_range_list .report_range_item .report_range_label,
.report_first_section .report_range_list .report_range_item .report_range_value {
    margin: 0;
    font-family: var(--roboto_medium);
    font-size: var(--fs_15);
    color: var(--text_color_12);
    line-height: 1.4;
}

.report_first_section .report_access_card .report_note_list {
    margin-top: 22px;
}

.report_first_section .report_access_card .report_note_item {
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.report_first_section .report_access_card .report_note_item:last-child {
    margin-bottom: 0;
}

.report_first_section .report_access_card .report_note_item .report_note_icon {
    color: var(--text_color_5);
    font-size: var(--fs_18);
    line-height: 1.2;
}

.report_first_section .report_access_card .report_note_item .report_note_text {
    margin: 0;
    line-height: 1.5;
}

.report_first_section .report_pillar_card .report_pillar_item {
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    background: #fbfcfd;
    padding: 22px 20px;
}

.report_first_section .report_pillar_card .report_pillar_item .report_pillar_item_top {
    margin-bottom: 14px;
    gap: 12px;
}

.report_first_section .report_pillar_card .report_pillar_item .report_pillar_name {
    margin: 0;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_18);
    line-height: 1.4;
}

.report_first_section .report_pillar_card .report_pillar_progress {
    width: 100%;
    height: 10px;
    background: #e8edf3;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 14px;
}

.report_first_section .report_pillar_card .report_pillar_progress .report_pillar_progress_fill {
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #107ED8 0%, #57a8e7 100%);
}

.report_first_section .report_pillar_card .report_pillar_meta .report_pillar_percent,
.report_first_section .report_pillar_card .report_pillar_meta .report_pillar_scale {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_15);
    line-height: 1.4;
}

.report_first_section .report_pillar_ranges {
    margin-top: 8px;
}

.report_first_section .report_pillar_ranges .report_scale_box {
    border: 1px solid #e2e7ed;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px;
    text-align: center;
    height: 100%;
}

.report_first_section .report_pillar_ranges .report_scale_box .report_scale_title {
    margin: 0 0 8px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_17);
    line-height: 1.4;
}

.report_first_section .report_pillar_ranges .report_scale_box .report_scale_value {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_15);
    line-height: 1.4;
}

.report_first_section .report_weak_card .report_weak_list {
    margin-top: 22px;
}

.report_first_section .report_weak_card .report_weak_item {
    padding: 18px 0;
    border-bottom: 1px solid #e6ebf1;
    gap: 16px;
}

.report_first_section .report_weak_card .report_weak_item:first-child {
    padding-top: 0;
}

.report_first_section .report_weak_card .report_weak_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.report_first_section .report_weak_card .report_weak_item .report_weak_name {
    margin: 0 0 4px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_17);
    line-height: 1.4;
}

.report_first_section .report_weak_card .report_weak_item .report_weak_meta {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_14);
    line-height: 1.4;
}

.report_first_section .report_weak_card .report_weak_item .report_weak_score {
    margin: 0;
    color: var(--text_color_15);
    font-family: var(--roboto_bold);
    font-size: var(--fs_22);
    line-height: 1;
}

.report_first_section .report_action_card .report_action_plan {
    margin-top: 22px;
}

.report_first_section .report_action_card .report_action_plan .report_action_item {
    padding: 20px 22px;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    background: #fbfcfd;
    margin-bottom: 16px;
}

.report_first_section .report_action_card .report_action_plan .report_action_item:last-child {
    margin-bottom: 0;
}

.report_first_section .report_action_card .report_action_plan .report_action_item .report_action_day {
    margin: 0 0 8px;
    color: var(--text_color_5);
    font-family: var(--roboto_medium);
    font-size: var(--fs_15);
    line-height: 1.4;
}

.report_first_section .report_action_card .report_action_plan .report_action_item .report_action_heading {
    margin: 0 0 8px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_20);
    line-height: 1.3;
}

.report_first_section .report_action_card .report_action_plan .report_action_item .report_action_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_15);
    line-height: 1.5;
}

@media (max-width: 1200px) {

    .report_first_section .report_card_head .report_card_title,
    .report_first_section .report_access_card .report_card_title,
    .report_first_section .report_weak_card .report_card_title,
    .report_first_section .report_action_card .report_card_title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .report_first_section {
        padding: 80px 0 55px;
    }

    .report_first_section .report_top_bar {
        margin-bottom: 30px;
    }

    .report_first_section .report_hero_left .report_desc {
        font-size: var(--fs_17);
    }

    .report_first_section .report_top_bar .report_print_wrapper {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .report_first_section .report_top_bar .report_print_wrapper .report_print_btn {
        width: auto;
    }

    .report_first_section .report_first_section_box {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .report_first_section {
        padding: 55px 0 35px;
    }

    .report_first_section .report_part .report_badge,
    .report_first_section .report_hero_left .report_badge {
        font-size: var(--fs_12);
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .report_first_section .report_hero_left .report_desc {
        font-size: var(--fs_16);
    }

    .report_first_section .report_cardHead .report_card_title,
    .report_first_section .report_card_head .report_card_title,
    .report_first_section .report_access_card .report_card_title,
    .report_first_section .report_weak_card .report_card_title,
    .report_first_section .report_action_card .report_card_title {
        font-size: 24px;
    }

    .report_first_section .report_score_left .report_score_value {
        font-size: 36px;
    }

    .report_first_section .report_action_card .report_action_plan .report_action_item .report_action_heading {
        font-size: var(--fs_20);
    }

    .report_first_section .report_top_bar .report_print_wrapper .report_print_btn {
        width: 100%;
    }
}

.plan_list_section {
    padding: 90px 0 80px;
    background-color: #f8f8f8;
    min-height: 92vh;
}

.plan_list_section .plan_list_top_bar {
    margin-bottom: 35px;
}

.plan_list_section .plan_list_intro {
    max-width: 760px;
}

.plan_list_section .plan_list_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 30px;
    background: #edf4fb;
    border: 1px solid #d7e5f4;
    color: var(--text_color_5);
    font-family: var(--roboto_medium);
    font-size: 14px;
    line-height: 1;
    margin-bottom: 16px;
}

.plan_list_section .plan_list_title {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    line-height: 1.2;
}

.plan_list_section .plan_list_desc {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: 18px;
    line-height: 1.5;
}

.plan_list_section .plan_list_top_action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.plan_list_section .plan_list_main_btn,
.plan_list_section .plan_list_action_btn {
    position: relative;
    padding: 10px 24px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_medium);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--fs_16);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.plan_list_section .plan_list_main_btn::before,
.plan_list_section .plan_list_action_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.plan_list_section .plan_list_main_btn:hover::before,
.plan_list_section .plan_list_action_btn:hover::before {
    opacity: 1;
}

.plan_list_section .plan_list_main_box {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 28px;
}

.plan_list_section .plan_list_section_head {
    margin-bottom: 22px;
}

.plan_list_section .plan_list_section_title {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--roboto_medium);
    font-size: var(--fs_24);
    line-height: 1.2;
}

.plan_list_section .plan_list_section_desc {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: 16px;
    line-height: 1.7;
}

.plan_list_section .plan_list_card {
    border: 1px solid #d9e1ea;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
    height: 100%;
}

.plan_list_section .plan_list_card_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.plan_list_section .plan_list_card_label {
    margin: 0 0 10px;
    font-family: var(--roboto_semibold);
    font-size: 15px;
    color: var(--text_color_5);
    line-height: 1.4;
}

.plan_list_section .plan_list_card_title {
    margin: 0;
    font-family: var(--roboto_bold);
    font-size: 20px;
    color: var(--text_color_12);
    line-height: 1.35;
}

.plan_list_section .plan_list_status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--roboto_medium);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.plan_list_section .plan_list_status.ongoing {
    background: #FDF1D9;
    color: #D18A00;
}

.plan_list_section .plan_list_status.completed {
    background: #E4F1E5;
    color: #319131;
}

.plan_list_section .plan_list_progress_wrap {
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.plan_list_section .plan_list_progress_head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.plan_list_section .plan_list_progress_label,
.plan_list_section .plan_list_progress_value {
    margin: 0;
    font-family: var(--roboto_semibold);
    font-size: 14px;
    color: var(--text_color_12);
    line-height: 1.4;
}

.plan_list_section .plan_list_progressbar {
    position: relative;
    width: 100%;
    height: 10px;
    background: #E8EDF3;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 14px;
}

.plan_list_section .plan_list_progressfill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #107ED8 0%, #57a8e7 100%);
    border-radius: 30px;
}

.plan_list_section .plan_list_progress_text {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: 15px;
    line-height: 1.5;
}

.plan_list_section .plan_list_btn_part {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.plan_list_section .plan_list_main_box .alert-info p {
    margin-bottom: 0;
}

.plan_list_main_box1 .noactive_plan_card {
    background-color: var(--bg_color_2);
    border: 1px solid #C2C2C2;
    border-radius: 20px;
    padding: 22px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.plan_list_main_box1 .noactive_plan_card p:first-child {
    width: fit-content;
    background-color: var(--bg_color_6);
    color: var(--text_color_13);
    padding: 10px 16px;
    border-radius: 30px;
    font-family: var(--roboto_semibold);
    font-size: var(--fs_14);
    margin-bottom: 10px;
}

.plan_list_main_box1 .noactive_plan_card .title {
    font-family: var(--roboto_medium);
    font-size: var(--fs_28);
    color: var(--text_color_12);
    margin-bottom: 10px;
}

.plan_list_main_box1 .noactive_plan_card .desc {
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    color: var(--text_color_3);
    margin-bottom: 20px;
    max-width: 520px;
}

.plan_list_main_box1 .noactive_plan_card .purchase_planbtn {
    position: relative;
    padding: 10px 16px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--roboto_semibold);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--fs_14);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
}

.plan_list_main_box1 .noactive_plan_card .purchase_planbtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -70%,
            var(--text_color_5) 0%,
            #0b1c2a 50%,
            var(--text_color_4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.plan_list_main_box1 .noactive_plan_card .purchase_planbtn:hover::before {
    opacity: 1;
}

.policy_page_section {
    padding: 100px 0;
}

.policy_page_section .policy_page_top {
    margin-bottom: 35px;
    max-width: 850px;
}

.policy_page_section .policy_page_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 30px;
    background-color: #edf4fb;
    border: 1px solid #d7e5f4;
    color: var(--text_color_5);
    font-family: var(--roboto_medium);
    font-size: var(--fs_14);
    line-height: 1;
    margin-bottom: 16px;
}

.policy_page_section .policy_page_title {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--playfair_regular);
    font-size: var(--fs_32);
    line-height: 1.2;
}

.policy_page_section .policy_page_desc {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_18);
    line-height: 1.5;
}

.policy_page_section .policy_page_box {
    background-color: var(--bg_color_2);
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 30px;
}

.policy_page_section .policy_block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7edf3;
}

.policy_page_section .policy_block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy_page_section .policy_block h2 {
    margin: 0 0 12px;
    color: var(--text_color_12);
    font-family: var(--roboto_semibold);
    font-size: var(--fs_22);
    line-height: 1.3;
}

.policy_page_section .policy_block p,
.policy_page_section .policy_block li {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--roboto_regular);
    font-size: var(--fs_16);
    line-height: 1.4;
}

.policy_page_section .policy_block ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.policy_page_section .policy_block ul li {
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .policy_page_section {
        padding: 70px 0 60px;
    }

    .policy_page_section .policy_page_title {
        font-size: var(--fs_28);
    }

    .policy_page_section .policy_page_desc {
        font-size: var(--fs_16);
    }

    .policy_page_section .policy_page_box {
        padding: 24px;
    }

    .policy_page_section .policy_block h2 {
        font-size: var(--fs_20);
    }
}

@media (max-width: 768px) {
    .policy_page_section {
        padding: 50px 0 50px;
    }

    .policy_page_section .policy_page_title {
        font-size: var(--fs_24);
    }

    .policy_page_section .policy_page_badge {
        padding: 9px 14px;
        font-size: var(--fs_12);
    }

    .policy_page_section .policy_page_box {
        padding: 18px;
        border-radius: 16px;
    }

    .policy_page_section .policy_block {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .policy_page_section .policy_block h2 {
        font-size: var(--fs_18);
    }

    .policy_page_section .policy_block p,
    .policy_page_section .policy_block li {
        font-size: var(--fs_15);
        line-height: 1.7;
    }
}