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

:root {
    --font_regular: "Poppins", sans-serif;
    --font_medium: "Poppins", sans-serif;
    --font_semibold: "Poppins", sans-serif;
    --font_bold: "Poppins", sans-serif;

    --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_30: 30px;
    --fs_42: 42px;
    --fs_58: 58px;

    --bg_color_1: #ffffff;
    --bg_color_2: #f8f8f8;
    --bg_color_3: #000000;
    --bg_color_4: #f1f1f1;
    --bg_color_5: rgba(255, 255, 255, 0.74);
    --bg_color_6: rgba(245, 245, 245, 0.78);

    --text_color_1: #000000;
    --text_color_2: #ffffff;
    --text_color_3: rgba(0, 0, 0, 0.7);

    --border_color_1: #e8e8e8;
    --border_color_2: rgba(0, 0, 0, 0.10);

    --shadow_1: 0 16px 45px rgba(0, 0, 0, 0.06);
    --shadow_2: 0 28px 80px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font_regular);
    background: var(--bg_color_1);
    color: var(--text_color_1);
}

p,
span {
    font-family: var(--font_regular);
}

a {
    text-decoration: none;
    color: var(--text_color_1);
}

.bg_img_part {
    background-image: url(../image/boxbg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main_header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--bg_color_1);
    transition: all 0.35s ease;
}

.main_header.header_scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main_header .logo_box {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    color: var(--text_color_1);
    line-height: 1;
    max-width: 300px;
}

.main_header .logo_box img {
    max-height: 70px;
    object-fit: contain;
}

.main_header .nav_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
}

.main_header .nav_links a {
    font-size: var(--fs_15);
    font-family: var(--font_medium);
    font-weight: 500;
    color: var(--text_color_1);
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.main_header .nav_links a:hover {
    opacity: 0.55;
}

.main_header .navbar_right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main_header .navbar_right .header_search {
    width: 300px;
    background: var(--bg_color_5);
    border: 1px solid var(--border_color_2);
    border-radius: 99px;
    padding: 6px;
    display: flex;
    align-items: center;
}

.main_header .navbar_right .header_search input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    color: var(--text_color_1);
    background: transparent;
}

.main_header .navbar_right .header_search input::placeholder {
    color: var(--text_color_1);
    opacity: 0.55;
}

.main_header .navbar_right .header_search button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: none;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.main_header .navbar_right .login_btn {
    height: 50px;
    padding: 0 24px;
    border-radius: 99px;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.main_header .navbar_right .login_btn:hover {
    background: transparent;
    color: var(--text_color_1);
}

.main_header .custom_toggler {
    border: 1px solid var(--border_color_2);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
}

.hero_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero_section .hero_content {
    position: relative;
    /* z-index: 2; */
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.small_badge {
    display: inline-flex;
    background: var(--bg_color_4);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 50px;
    padding: 9px 18px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.hero_section .hero_content .title {
    font-family: var(--font_bold);
    font-size: var(--fs_58);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text_color_1);
}

.hero_section .hero_content .title span {
    color: rgb(165, 165, 165);
}

.hero_section .hero_content .desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--fs_18);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.75;
    color: #252525;
    opacity: 0.82;
}

.hero_section .hero_video_row {
    margin-top: 70px;
}

.hero_section .hero_video_box {
    position: relative;
    z-index: 2;
    max-width: 100%;
    border-radius: 30px;
    border: 1px solid var(--border_color_2);
    overflow: hidden;
    background: var(--bg_color_4);
    height: 450px;
    width: 100%;
}

.hero_section .hero_video_box video,
.hero_section .hero_video_box img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    display: block;
    background: var(--bg_color_4);
}

.hero_section .hero_video_box .video_control_btn {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border: 1px solid var(--border_color_2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text_color_1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 0.35s ease;
    pointer-events: auto;
    z-index: 10;
}

.hero_section .hero_video_box:hover .video_control_btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero_section .hero_video_box .video_control_btn .pause_icon {
    display: flex;
    justify-content: center;
}

.hero_section .hero_video_box .video_control_btn .play_icon {
    display: none;
}

.hero_section .hero_video_box .video_control_btn.is_paused .play_icon {
    display: flex;
}

.hero_section .hero_video_box .video_control_btn.is_paused .pause_icon {
    display: none;
}

.hero_section .hero_slider_wrap {
    overflow: hidden;
}

.hero_section .hero_slider_wrap .swiper-slide {
    width: auto !important;
    height: auto;
    flex-shrink: 0;
}

.hero_section .hero_slider_wrap .heroSwiper {
    overflow: visible;
    width: 100%;
}

.hero_section .hero_slider_wrap .swiper-wrapper {
    transition-timing-function: linear !important;
}

.why_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
}

.why_section .section_title .title,
.why_section .section_title .desc {
    color: #ffffff;
}

.why_section .section_title .desc {
    opacity: 0.72;
}

.why_section .small_badge {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.why_section .why_title,
.events_section .section_title {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto 42px;
    text-align: center;
}

.events_section .section_title .title {
    font-family: var(--font_bold);
    font-size: var(--fs_42);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text_color_1);
}

.event_page .section_title .title {
    font-family: var(--font_bold);
    font-size: var(--fs_42);
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text_color_1);
}

.why_section .why_title .title {
    font-family: var(--font_bold);
    font-size: var(--fs_42);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text_color_2);
}

.why_section .why_title .desc {
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_2);
    line-height: 1.7;
    opacity: 0.82;
}

.why_section .why_title .title span,
.events_section .section_title .title span {
    color: #a8a8a8;
}

.events_section .section_title .desc {
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    line-height: 1.7;
    opacity: 0.82;
}

.why_section .why_wrap {
    position: relative;
    z-index: 2;
}

.why_section .why_wrap .why_main {
    width: 100%;
    background: #060606;
    border: 1px solid #2d2d2d;
    border-radius: 26px;
    padding: 34px;
    box-shadow: none;
}

.why_section .why_wrap .why_main .group_image {
    /* max-height: 180px; */
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: all 0.45s ease;
    margin-top: 30px;
}

.why_section .why_wrap .why_main:hover .group_image {
    filter: grayscale(0%);
}

.why_section .why_wrap .why_main .title {
    font-family: var(--font_bold);
    font-size: var(--fs_30);
    line-height: 1.25;
    font-weight: 700;
    /* letter-spacing: -0.6px; */
    margin-bottom: 18px;
    color: #ffffff;
}

.why_section .why_wrap .why_main .desc {
    color: #ffffff;
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 14px;
    opacity: 0.78;
}

.why_section .why_wrap .why_points {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why_section .why_wrap .why_points .why_item {
    background: #060606;
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    padding: 24px;
    box-shadow: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.why_section .why_wrap .why_points .why_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(255, 255, 255, 0.08);
}

.why_section .why_wrap .why_points .why_item span {
    display: flex;
    color: #ffffff;
    background: #060606;
    border: 1px solid #2d2d2d;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-bottom: 14px;
    justify-content: center;
    align-items: center;
}

.why_section .why_wrap .why_points .why_item .title {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.why_section .why_wrap .why_points .why_item .desc,
.why_section .why_wrap .why_points .why_item ul li {
    color: #ffffff;
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.78;
}

.events_section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--bg_color_1);
}

.events_section .event_wrap {
    position: relative;
    z-index: 2;
}

.events_section .event_wrap .event_card {
    height: 100%;
    background: var(--bg_color_5);
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow_1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.events_section .event_wrap .event_card .event_image {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg_color_4);
    margin-bottom: 18px;
}

.events_section .event_wrap .event_card .event_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 0.45s ease;
}

.events_section .event_wrap .event_card:hover .event_image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.events_section .event_wrap .event_card .event_content {
    padding: 0 14px 14px;
}

.events_section .event_wrap .event_card span {
    display: inline-flex;
    background: var(--bg_color_6);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 50px;
    padding: 7px 13px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.events_section .event_wrap .event_card .title {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text_color_1);
}

.events_section .event_wrap .event_card .desc {
    color: var(--text_color_1);
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.84;
}

.events_section .section_title .title span {
    color: #A5A5A5;
}

.footer_section {
    background: var(--bg_color_3);
    padding: 50px 0 24px;
}

.footer_section .footer_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer_section .footer_wrap .logo_part {
    max-width: 150px;
}

.footer_section .footer_wrap .logo_part img {
    max-height: 70px;
    object-fit: contain;
}

.footer_section .footer_wrap .footer_links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer_section .footer_wrap .footer_social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_section .footer_wrap .footer_social a {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_medium);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.footer_section .footer_wrap .footer_social a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
}

.footer_section .footer_wrap .footer_links a {
    color: var(--text_color_2);
    font-size: var(--fs_14);
    font-family: var(--font_medium);
    font-weight: 500;
}

.footer_section .footer_bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer_section .footer_bottom p {
    color: var(--text_color_2);
    margin-bottom: 0;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
}

.footer_section .footer_bottom .pt {
    display: flex;
    gap: 15px;
}

.footer_section .footer_bottom .pt span,
.footer_section .footer_bottom .pt a {
    color: var(--text_color_2);
    margin-bottom: 0;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_section .footer_bottom .pt a:hover {
    text-decoration: underline;
}






















.contact_hero_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
}

.contact_hero_section .contact_hero_content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.contact_hero_section .contact_hero_content .title {
    font-family: var(--font_semibold);
    font-size: var(--fs_42);
    line-height: 1.12;
    font-weight: 700;
    /* letter-spacing: -1.5px; */
    margin-bottom: 22px;
    color: var(--text_color_1);
}

.contact_hero_section .contact_hero_content .title span {
    color: rgb(165, 165, 165);
}

.contact_hero_section .contact_hero_content .desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.75;
    color: #252525;
    opacity: 0.82;
}

.contact_inquiry_section {
    position: relative;
    overflow: hidden;
    padding: 0 0 100px 0;
    background: var(--bg_color_1);
}

.contact_info_card,
.contact_form_card {
    background: var(--bg_color_5);
    border: 1px solid var(--border_color_2);
    border-radius: 26px;
    padding: 34px;
    box-shadow: var(--shadow_1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact_info_card .title {
    font-family: var(--font_bold);
    font-size: var(--fs_30);
    line-height: 1.25;
    font-weight: 700;
    /* letter-spacing: -0.6px; */
    margin-bottom: 18px;
    color: var(--text_color_1);
}

.contact_info_card .desc {
    color: var(--text_color_1);
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.78;
}

.contact_info_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 20px;
    padding: 18px;
    transition: all 0.3s ease;
}

.contact_info_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow_1);
}

.contact_info_item>span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
}

.contact_info_item h5 {
    font-size: var(--fs_16);
    font-family: var(--font_bold);
    font-weight: 600;
    color: var(--text_color_1);
    margin-bottom: 6px;
}

.contact_info_item p {
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    opacity: 0.74;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact_form_card label {
    display: block;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text_color_1);
}

.contact_form_card input,
.contact_form_card select,
.contact_form_card textarea {
    width: 100%;
    border: 1px solid var(--border_color_2);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    outline: none;
    background: #ffffff;
    color: var(--text_color_1);
    transition: all 0.3s ease;
}

.contact_form_card input:focus,
.contact_form_card select:focus,
.contact_form_card textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.contact_form_card textarea {
    resize: none;
}

.contact_submit_btn {
    height: 54px;
    padding: 0 30px;
    border-radius: 99px;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact_submit_btn:hover {
    background: transparent;
    color: var(--text_color_1);
}

.founders_section_light {
    position: relative;
    overflow: hidden;
    padding: 60px 0 100px 0;
    background: var(--bg_color_2);
}

.founders_section_light .founders_title {
    max-width: 840px;
    margin: 0 auto 42px;
    text-align: center;
}

.founders_section_light .founders_title .title {
    font-family: var(--font_bold);
    font-size: var(--fs_42);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text_color_1);
}

.founders_section_light .founders_title .title span {
    color: #a5a5a5;
}

.founders_section_light .founders_title .desc {
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    line-height: 1.7;
    opacity: 0.82;
}

.founder_card_light {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow_1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.founder_card_light:hover {
    box-shadow: var(--shadow_2);
}

.founder_image {
    width: 100%;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg_color_4);
    margin-bottom: 18px;
}

.founder_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 0.45s ease;
}

.founder_card_light:hover .founder_image img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

.founder_content {
    padding: 0 12px 14px;
}

.founder_content h4 {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text_color_1);
}

.founder_content .service_keywords {
    margin-bottom: 14px;
}

.founder_content span {
    display: inline-flex;
    background: var(--bg_color_6);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 50px;
    padding: 7px 13px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-top: 10px;
}

.founder_content p {
    color: var(--text_color_1);
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 14px;
    opacity: 0.76;
}




























.main_header .search_wrapper {
    position: relative;
}

.main_header .search_wrapper .search_dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: auto;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    box-shadow: var(--shadow_2);
    padding: 10px;
    z-index: 9999;
    display: none;
}

.main_header .search_wrapper .search_dropdown.show {
    display: block;
}

.main_header .search_wrapper .no_search_result {
    padding: 16px;
    text-align: center;
    font-size: var(--fs_14);
    color: var(--text_color_1);
    opacity: 0.65;
}

.main_header .search_wrapper .search_result_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    color: var(--text_color_1);
    transition: all 0.25s ease;
    width: 380px;
}

.main_header .search_wrapper .search_result_item:hover {
    background: var(--bg_color_4);
}

.main_header .search_wrapper .search_result_item img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.main_header .search_wrapper .search_result_info h5 {
    font-size: var(--fs_15);
    font-family: var(--font_bold);
    margin-bottom: 2px;
}

.main_header .search_wrapper .search_result_info p {
    font-size: 13px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.main_header .search_wrapper .search_result_info span {
    font-size: 12px;
    color: var(--text_color_3);
}

.main_header .navbar_right .member_dropdown_wrapper {
    position: relative;
}

.main_header .navbar_right .member_dropdown_btn {
    height: 50px;
    padding: 6px 14px 6px 6px;
    border-radius: 99px;
    background: var(--bg_color_5);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main_header .navbar_right .member_dropdown_btn:hover,
.main_header .navbar_right .member_dropdown_btn.show {
    background: #ffffff;
    box-shadow: var(--shadow_1);
}

.main_header .navbar_right .member_dropdown_btn::after {
    margin-left: 2px;
    opacity: 0.65;
}

.main_header .navbar_right .member_dropdown_avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_bold);
    font-weight: 700;
}

.main_header .navbar_right .member_dropdown_name {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main_header .navbar_right .member_dropdown_menu {
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    box-shadow: var(--shadow_2);
    padding: 10px;
    margin-top: 12px !important;
}

.main_header .navbar_right .member_dropdown_item {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 15px;
    color: var(--text_color_1);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: var(--fs_14);
    font-family: var(--font_medium);
    font-weight: 500;
    transition: all 0.25s ease;
}

.main_header .navbar_right .member_dropdown_item:hover,
.main_header .navbar_right .member_dropdown_item:focus {
    background: var(--bg_color_4);
    color: var(--text_color_1);
}

.main_header .navbar_right .member_dropdown_divider {
    margin: 8px 4px;
    border-color: var(--border_color_2);
}

.main_header .navbar_right .member_dropdown_form {
    margin: 0;
}

.main_header .navbar_right .member_logout_btn {
    color: #e53935;
}

.main_header .navbar_right .member_logout_btn:hover,
.main_header .navbar_right .member_logout_btn:focus {
    color: #e53935;
}

.profile_page_section {
    padding: 90px 0;
}

.profile_page_section .profile_card {
    background-color: var(--bg_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 28px;
    box-shadow: var(--shadow_2);
    overflow: hidden;
}

.profile_page_section .profile_card .profile_cover {
    height: 320px;
    background-color: #eee;
}

.profile_page_section .profile_card .profile_cover .profile_cover_img {
    height: 320px;
    width: 100%;
    object-fit: contain;
}

.profile_page_section .profile_card .profile_body {
    padding: 0 40px 40px 40px;
}

.profile_page_section .profile_card .profile_body .profile_avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -75px;
    border: 6px solid #ffffff;
}

.profile_page_section .profile_card .profile_body .profile_avatar.member_red {
    border: 6px solid #e53935;
}

.profile_page_section .profile_card .profile_body .profile_avatar.member_green {
    border: 6px solid #2e7d32;
}

.profile_page_section .profile_card .profile_body .profile_avatar.member_blue {
    border: 6px solid #1e88e5;
}

.profile_page_section .profile_card .profile_body .profile_avatar.member_orange {
    border: 6px solid #fb8c00;
}

.profile_page_section .profile_card .profile_body .profile_avatar.member_purple {
    border: 6px solid #8e24aa;
}

.profile_page_section .profile_card .profile_body .profile_head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-top: 18px;
}

.profile_page_section .profile_card .profile_body .profile_member_name {
    font-size: 38px;
    font-family: var(--font_bold);
    font-weight: 600;
    margin-bottom: 6px;
}

.profile_page_section .profile_card .profile_body .profile_member_designation {
    font-size: var(--fs_18);
    margin-bottom: 5px;
}

.profile_page_section .profile_card .profile_body .profile_member_location {
    opacity: 0.7;
}

.profile_page_section .profile_card .profile_body .profile_section_title {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    margin: 25px 0;
}

.profile_page_section .profile_card .profile_body .profile_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile_page_section .profile_card .profile_body .profile_tags .profile_tag_item {
    display: inline-flex;
    background: var(--bg_color_4);
    border: 1px solid var(--border_color_2);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
}

.profile_page_section .profile_card .profile_body .profile_info_item {
    background: var(--bg_color_4);
    border: 1px solid var(--border_color_2);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.profile_page_section .profile_card .profile_body .profile_info_item .profile_info_label {
    display: block;
    font-size: 13px;
    font-family: var(--font_semibold);
    font-weight: 500;
    color: var(--text_color_3);
    margin-bottom: 6px;
}

.profile_page_section .profile_card .profile_body .profile_info_item .profile_info_value {
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    line-height: 1.6;
    margin-bottom: 0;
    word-break: break-word;
}

.auth_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 100px 0;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.auth_section .auth_card_wrap {
    align-items: stretch;
}

.auth_section .auth_card_wrap .auth_info_box,
.auth_section .auth_card_wrap .auth_form_card {
    background: var(--bg_color_5);
    border: 1px solid var(--border_color_2);
    border-radius: 30px;
    box-shadow: var(--shadow_2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.auth_section .auth_card_wrap .auth_info_box {
    padding: 35px;
    overflow: hidden;
    position: relative;
}

.auth_section .auth_card_wrap .auth_form_card {
    /* padding: 35px; */
    padding: 60px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth_section .auth_card_wrap .auth_info_box .auth_info_title {
    position: relative;
    z-index: 2;
    font-size: var(--fs_42);
    font-family: var(--font_bold);
    font-weight: 700;
    line-height: 1.16;
    color: var(--text_color_1);
    margin-bottom: 16px;
}

.auth_section .auth_card_wrap .auth_info_box .auth_info_title .auth_info_title_highlight {
    color: #a5a5a5;
}

.auth_section .auth_card_wrap .auth_info_box .auth_info_desc {
    position: relative;
    z-index: 2;
    max-width: 620px;
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text_color_1);
    opacity: 0.78;
    margin-bottom: 0;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 20px;
    padding: 18px;
    transition: all 0.3s ease;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow_1);
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item .auth_point_number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item .auth_point_content {
    flex: 1;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item .auth_point_content .auth_point_title {
    font-size: var(--fs_16);
    font-family: var(--font_bold);
    font-weight: 600;
    color: var(--text_color_1);
    margin-bottom: 5px;
}

.auth_section .auth_card_wrap .auth_info_box .auth_points .auth_point_item .auth_point_content .auth_point_desc {
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    opacity: 0.72;
    line-height: 1.6;
    margin-bottom: 0;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_header {
    margin-bottom: 30px;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_header .auth_form_badge {
    display: inline-flex;
    background: var(--bg_color_4);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 50px;
    padding: 8px 15px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_header .auth_form_title {
    font-size: var(--fs_30);
    font-family: var(--font_bold);
    font-weight: 700;
    color: var(--text_color_1);
    margin-bottom: 10px;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_header .auth_form_desc {
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    opacity: 0.72;
    line-height: 1.7;
    margin-bottom: 0;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group {
    margin-bottom: 22px;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .auth_form_label {
    display: block;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    color: var(--text_color_1);
    margin-bottom: 9px;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .mobile_input_box {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--border_color_2);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .mobile_input_box:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .mobile_input_box span {
    height: 54px;
    min-width: 72px;
    padding: 0 18px;
    border-right: 1px solid var(--border_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .mobile_input_box input {
    width: 100%;
    height: 54px;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    color: var(--text_color_1);
    background: transparent;
}

.auth_section .auth_card_wrap .auth_form_card .auth_form_group .mobile_input_box input::placeholder {
    color: var(--text_color_1);
    opacity: 0.45;
}

.auth_section .auth_card_wrap .auth_form_card .auth_submit_btn_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_section .auth_card_wrap .auth_form_card .auth_submit_btn_part .auth_submit_btn {
    width: fit-content;
    height: 50px;
    padding: 0 24px;
    border-radius: 99px;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth_section .auth_card_wrap .auth_form_card .auth_submit_btn_part .auth_submit_btn:hover {
    background: transparent;
    color: var(--text_color_1);
}

.auth_section .auth_card_wrap .auth_form_card .auth_note {
    margin: 18px 0 0;
    text-align: center;
    font-size: var(--fs_12);
    font-family: var(--font_regular);
    color: var(--text_color_1);
    opacity: 0.7;
    line-height: 1.7;
}

.auth_section .auth_card_wrap .auth_form_card .auth_note .auth_note_link {
    color: var(--text_color_1);
    font-family: var(--font_semibold);
    font-weight: 600;
    text-decoration: underline;
}

.auth_section .auth_card_wrap .auth_form_card .otp_input_wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
}

.auth_section .auth_card_wrap .auth_form_card .otp_input_wrap .otp_input {
    width: 58px;
    height: 58px;
    border: 1px solid #d4d2d2;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    font-size: var(--fs_22);
    font-family: var(--font_bold);
    font-weight: 700;
    color: var(--text_color_1);
    outline: none;
    transition: all 0.3s ease;
}

.auth_section .auth_card_wrap .auth_form_card .otp_input_wrap .otp_input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.auth_section .auth_card_wrap .auth_form_card .otp_bottom_text {
    margin-top: 20px;
    text-align: center;
}

.auth_section .auth_card_wrap .auth_form_card .otp_bottom_text .otp_bottom_desc {
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    color: var(--text_color_1);
    opacity: 0.68;
    margin-bottom: 4px;
}

.auth_section .auth_card_wrap .auth_form_card .otp_bottom_text .otp_resend_link {
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    color: var(--text_color_1);
    text-decoration: underline;
}

.auth_section .auth_card_wrap .auth_form_card .back_login_link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    color: var(--text_color_1);
    text-decoration: underline;
}

.auth_section .auth_card_wrap .auth_form_card .recaptcha_center_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.auth_section .auth_card_wrap .auth_form_card .recaptcha_center_box #recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.member_register_hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 70px;
}

.member_register_hero_content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.member_register_hero_content .title {
    font-family: var(--font_semibold);
    font-size: var(--fs_42);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text_color_1);
}

.member_register_hero_content .title span {
    color: rgb(165, 165, 165);
}

.member_register_hero_content .desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: var(--fs_16);
    font-family: var(--font_regular);
    font-weight: 400;
    line-height: 1.75;
    color: #252525;
    opacity: 0.82;
}

.member_register_section {
    position: relative;
    overflow: hidden;
    padding: 0 0 100px;
    background: var(--bg_color_1);
}

.member_register_card {
    background: var(--bg_color_5);
    border: 1px solid var(--border_color_2);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow_2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.member_register_block {
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.member_register_block:hover {
    box-shadow: var(--shadow_1);
}

.member_register_block:last-of-type {
    margin-bottom: 0;
}

.member_register_block_head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border_color_2);
}

.member_register_block_head>span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
}

.member_register_block_head h3 {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    font-weight: 600;
    color: var(--text_color_1);
    margin-bottom: 5px;
}

.member_register_block_head p {
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    opacity: 0.68;
    line-height: 1.6;
    margin-bottom: 0;
}

.member_input_group label {
    display: block;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text_color_1);
}

.member_input_group .addmorebtn {
    border: 1px solid var(--border_color_2);
    border-radius: 16px;
    padding: 11px 14px;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    outline: none;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    transition: all 0.3s ease;
    margin-left: 12px;
    margin-top: 6px;
    width: fit-content;
}

/* .member_input_group .remove-service-part {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
}

.member_input_group .remove-service-part .remove-service {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: none;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member_input_group .remove-service-part .remove-service svg {
    height: 20px;
    width: 20px;
} */

.member_input_group .service-input-with-remove {
    position: relative;
    width: 100%;
}

.member_input_group .service-input-with-remove input {
    padding-right: 62px;
}

.member_input_group .service-input-with-remove .remove-service-part {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member_input_group .service-input-with-remove .remove-service {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: none;
    background: var(--bg_color_1);
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.member_input_group .service-input-with-remove .remove-service svg {
    height: 18px;
    width: 18px;
}

.member_input_group label sup {
    color: #e53935;
    font-size: 13px;
    top: -1px;
}

.member_input_group input,
.member_input_group select,
.member_input_group textarea {
    width: 100%;
    border: 1px solid var(--border_color_2);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: var(--fs_14);
    font-family: var(--font_regular);
    font-weight: 400;
    outline: none;
    background: #ffffff;
    color: var(--text_color_1);
    transition: all 0.3s ease;
}

.member_input_group input:focus,
.member_input_group select:focus,
.member_input_group textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.member_input_group input::placeholder,
.member_input_group textarea::placeholder {
    color: var(--text_color_1);
    opacity: 0.42;
}

.member_input_group textarea {
    resize: none;
}

.member_input_group input[type="file"] {
    padding: 11px 14px;
    cursor: pointer;
}

.member_input_group input[type="file"]::file-selector-button {
    border: none;
    outline: none;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border-radius: 99px;
    padding: 8px 14px;
    font-size: var(--fs_12);
    font-family: var(--font_semibold);
    font-weight: 600;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.member_input_group input[type="file"]::file-selector-button:hover {
    opacity: 0.82;
}

.member_input_group input[readonly] {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.62);
    cursor: not-allowed;
    border-color: var(--border_color_2);
}

.member_input_group input[readonly]:focus {
    border-color: var(--border_color_2);
    box-shadow: none;
}

.member_input_group .msg {
    font-family: var(--font_regular);
    margin-top: 14px;
    color: var(--text_color_3);
    font-size: var(--fs_14);
}

.member_input_group .existing-image label {
    font-family: var(--font_regular);
    margin-top: 14px;
    color: var(--text_color_1);
    font-size: var(--fs_14);
}

.member_register_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}

.member_register_btn {
    min-width: 230px;
    height: 54px;
    padding: 0 30px;
    border-radius: 99px;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.member_register_btn:hover {
    background: transparent;
    color: var(--text_color_1);
}

.member_input_group .date_visibility_field {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--border_color_2);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member_input_group .date_visibility_field:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.member_input_group .date_visibility_field input,
.member_input_group .date_visibility_field select {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.member_input_group .date_visibility_field input {
    flex: 1;
    min-width: 0;
    padding: 14px 14px 14px 16px;
}

.member_input_group .date_visibility_field select {
    width: 112px;
    flex: 0 0 112px;
    padding: 14px 12px;
    border-left: 1px solid var(--border_color_2);
    cursor: pointer;
    font-size: 13px;
}

.public_profile_page_section {
    padding: 90px 0;
}

.public_profile_page_section .profile_card {
    background-color: var(--bg_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 28px;
    box-shadow: var(--shadow_2);
    overflow: hidden;
}

.public_profile_page_section .profile_card .profile_cover {
    height: 320px;
    background-color: #eee;
}

.public_profile_page_section .profile_card .profile_cover .profile_cover_img {
    height: 320px;
    width: 100%;
    object-fit: contain;
}

.public_profile_page_section .profile_card .profile_body {
    padding: 0 40px 40px 40px;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -75px;
    border: 6px solid #ffffff;
    background-color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar.member_red {
    border-color: #e53935;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar.member_green {
    border-color: #2e7d32;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar.member_blue {
    border-color: #1e88e5;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar.member_orange {
    border-color: #fb8c00;
}

.public_profile_page_section .profile_card .profile_body .profile_avatar.member_purple {
    border-color: #8e24aa;
}

.public_profile_page_section .profile_card .profile_body .profile_head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-top: 18px;
}

.public_profile_page_section .profile_card .profile_body .profile_head_content {
    flex: 1;
}

.public_profile_page_section .profile_card .profile_body .profile_member_name {
    font-size: 38px;
    font-family: var(--font_bold);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text_color_1);
}

.public_profile_page_section .profile_card .profile_body .profile_member_designation {
    font-size: var(--fs_18);
    font-family: var(--font_semibold);
    color: var(--text_color_1);
    margin-bottom: 5px;
}

.public_profile_page_section .profile_card .profile_body .profile_member_hobbies {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    color: var(--text_color_1);
    margin: 0 0 7px 0;
    opacity: 0.85;
}

.public_profile_page_section .profile_card .profile_body .profile_member_hobbies i {
    font-size: 13px;
    color: #e53935;
}

.public_profile_page_section .profile_card .profile_body .profile_member_location {
    display: block;
    opacity: 0.7;
    color: var(--text_color_1);
}

.public_profile_page_section .profile_card .profile_body .profile_divider {
    margin: 30px 0;
    border-color: var(--border_color_2);
    opacity: 1;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--bg_color_4);
    border: 1px solid var(--border_color_2);
    color: var(--text_color_1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow_2);
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.instagram:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.phone:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.google:hover {
    background: #db4437;
    border-color: #db4437;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_social_icon.twitter:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.public_profile_page_section .profile_card .profile_body .profile_two_column_details {
    margin-bottom: 28px;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_panel {
    width: 100%;
    height: 100%;
    background: var(--bg_color_1);
    border: 1px solid var(--border_color_2);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.public_profile_page_section .profile_card .profile_body .profile_full_detail_panel {
    margin-bottom: 28px;
}

.public_profile_page_section .profile_card .profile_body .profile_section_title {
    font-size: var(--fs_20);
    font-family: var(--font_bold);
    color: var(--text_color_1);
    margin: 16px 0 18px 0;
    /* padding-bottom: 13px; */
    /* border-bottom: 1px solid var(--border_color_2); */
}

.public_profile_page_section .profile_card .profile_body .profile_detail_list {
    display: flex;
    flex-direction: column;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border_color_2);
}

.public_profile_page_section .profile_card .profile_body .profile_detail_row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_row span {
    width: 165px;
    min-width: 165px;
    font-size: 13px;
    font-family: var(--font_semibold);
    font-weight: 500;
    color: var(--text_color_3);
    line-height: 1.5;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_row p {
    flex: 1;
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    line-height: 1.6;
    margin-bottom: 0;
    word-break: break-word;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_list_two_col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 34px;
}

.public_profile_page_section .profile_card .profile_body .profile_detail_list_two_col .profile_detail_row {
    width: calc(50% - 17px);
}

.public_profile_page_section .profile_card .profile_body .profile_detail_list_two_col .profile_detail_row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border_color_2);
}

.public_profile_page_section .profile_card .profile_body .profile_detail_list_two_col .profile_detail_row:last-child {
    border-bottom: none;
}

.public_profile_page_section .profile_card .profile_body .profile_about_panel {
    margin-bottom: 28px;
}

.public_profile_page_section .profile_card .profile_body .profile_about_content {
    font-size: var(--fs_15);
    font-family: var(--font_regular);
    font-weight: 400;
    color: var(--text_color_1);
    line-height: 1.8;
    margin: 0;
    word-break: break-word;
    white-space: normal;
    border-bottom: 1px solid var(--border_color_2);
}

.public_profile_page_section .profile_card .profile_body .profile_about_content:nth-last-of-type(1) {
    border-bottom: none;
}

.public_profile_page_section .profile_tags li {
    font-size: var(--fs_15) !important;
}

.main_header .mobile_member_action {
    display: none;
}

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

.main_header .header_container {
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
}

.main_header .logo_box {
    position: relative;
    z-index: 3;
    margin-right: 0;
}

.main_header .header_collapse {
    width: 100%;
}

.main_header .nav_links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    z-index: 2;
}

.main_header .nav_links .nav-item {
    display: flex;
    align-items: center;
}

.main_header .nav_links .nav-link {
    padding: 8px 0;
    font-size: var(--fs_15);
    font-family: var(--font_semibold);
    font-weight: 600;
    color: var(--text_color_1);
    transition: all 0.25s ease;
}

.main_header .nav_links .nav-link:hover,
.main_header .nav_links .nav-link:focus {
    color: var(--text_color_1);
}

.main_header .navbar_right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 3;
}

.main_header .search_wrapper {
    position: relative;
}

.main_header .search_wrapper .search_dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: auto;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    box-shadow: var(--shadow_2);
    padding: 10px;
    z-index: 9999;
    display: none;
}

.main_header .search_wrapper .search_dropdown.show {
    display: block;
}

.main_header .search_wrapper .no_search_result {
    padding: 16px;
    text-align: center;
    font-size: var(--fs_14);
    color: var(--text_color_1);
    opacity: 0.65;
}

.main_header .search_wrapper .search_result_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    color: var(--text_color_1);
    transition: all 0.25s ease;
    width: 380px;
}

.main_header .search_wrapper .search_result_item:hover {
    background: var(--bg_color_4);
}

.main_header .search_wrapper .search_result_item img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.main_header .search_wrapper .search_result_info h5 {
    font-size: var(--fs_15);
    font-family: var(--font_bold);
    margin-bottom: 2px;
}

.main_header .search_wrapper .search_result_info p {
    font-size: 13px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.main_header .search_wrapper .search_result_info span {
    font-size: 12px;
    color: var(--text_color_3);
}

.main_header .navbar_right .member_dropdown_wrapper {
    position: relative;
}

.main_header .navbar_right .member_dropdown_btn {
    height: 50px;
    padding: 6px 14px 6px 6px;
    border-radius: 99px;
    background: var(--bg_color_5);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main_header .navbar_right .member_dropdown_btn:hover,
.main_header .navbar_right .member_dropdown_btn.show {
    background: #ffffff;
    box-shadow: var(--shadow_1);
}

.main_header .navbar_right .member_dropdown_btn::after {
    margin-left: 2px;
    opacity: 0.65;
}

.main_header .navbar_right .member_dropdown_avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_bold);
    font-weight: 700;
}

.main_header .navbar_right .member_dropdown_name {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main_header .navbar_right .member_dropdown_menu {
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    box-shadow: var(--shadow_2);
    padding: 10px;
    margin-top: 12px !important;
}

.main_header .navbar_right .member_dropdown_item {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 15px;
    color: var(--text_color_1);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: var(--fs_14);
    font-family: var(--font_medium);
    font-weight: 500;
    transition: all 0.25s ease;
}

.main_header .navbar_right .member_dropdown_item:hover,
.main_header .navbar_right .member_dropdown_item:focus {
    background: var(--bg_color_4);
    color: var(--text_color_1);
}

.main_header .navbar_right .member_dropdown_divider {
    margin: 8px 4px;
    border-color: var(--border_color_2);
}

.main_header .navbar_right .member_dropdown_form {
    margin: 0;
}

.main_header .navbar_right .member_logout_btn {
    color: #e53935;
}

.main_header .navbar_right .member_logout_btn:hover,
.main_header .navbar_right .member_logout_btn:focus {
    color: #e53935;
}

@media only screen and (max-width: 992px) {
    .main_header .header_container {
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .main_header .logo_box {
        margin-right: auto;
    }

    .main_header .header_collapse {
        width: 100%;
        padding-top: 18px;
    }

    .main_header .nav_links {
        position: static;
        transform: none;
        width: 100%;
        gap: 0;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .main_header .nav_links .nav-link {
        padding: 10px 0;
    }

    .main_header .navbar_right {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .main_header .header_search {
        width: 100%;
    }

    .main_header .header_search input {
        width: 100%;
    }

    .main_header .navbar_right .member_dropdown_btn,
    .main_header .login_btn {
        width: 100%;
        justify-content: center;
    }

    .main_header .search_wrapper .search_dropdown {
        width: 100%;
    }

    .main_header .search_wrapper .search_result_item {
        width: 100%;
    }
}

.auth_section input[type="number"]::-webkit-outer-spin-button,
.auth_section input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.auth_section input[type="number"]:hover::-webkit-outer-spin-button,
.auth_section input[type="number"]:hover::-webkit-inner-spin-button,
.auth_section input[type="number"]:focus::-webkit-outer-spin-button,
.auth_section input[type="number"]:focus::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.auth_section input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
















.main_header .mobile_member_action .member_dropdown_wrapper {
    position: relative;
}

.main_header .mobile_member_action .member_dropdown_btn {
    height: 50px;
    padding: 6px 14px 6px 6px;
    border-radius: 99px;
    background: var(--bg_color_5);
    color: var(--text_color_1);
    border: 1px solid var(--border_color_2);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main_header .mobile_member_action .member_dropdown_btn:hover,
.main_header .mobile_member_action .member_dropdown_btn.show {
    background: #ffffff;
    box-shadow: var(--shadow_1);
}

.main_header .mobile_member_action .member_dropdown_btn::after {
    margin-left: 2px;
    opacity: 0.65;
}

.main_header .mobile_member_action .member_dropdown_avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_bold);
    font-weight: 700;
}

.main_header .mobile_member_action .member_dropdown_name {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main_header .mobile_member_action .member_dropdown_menu {
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border_color_2);
    border-radius: 22px;
    box-shadow: var(--shadow_2);
    padding: 10px;
    margin-top: 12px !important;
}

.main_header .mobile_member_action .member_dropdown_item {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 15px;
    color: var(--text_color_1);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: var(--fs_14);
    font-family: var(--font_medium);
    font-weight: 500;
    transition: all 0.25s ease;
}

.main_header .mobile_member_action .member_dropdown_item:hover,
.main_header .mobile_member_action .member_dropdown_item:focus {
    background: var(--bg_color_4);
    color: var(--text_color_1);
}

.main_header .mobile_member_action .member_dropdown_divider {
    margin: 8px 4px;
    border-color: var(--border_color_2);
}

.main_header .mobile_member_action .member_dropdown_form {
    margin: 0;
}

.main_header .mobile_member_action .member_logout_btn {
    color: #e53935;
}

.main_header .mobile_member_action .member_logout_btn:hover,
.main_header .mobile_member_action .member_logout_btn:focus {
    color: #e53935;
}

.main_header .mobile_member_action .login_btn {
    /* height: 50px; */
    height: 48px;
    padding: 0 24px;
    border-radius: 99px;
    background: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs_14);
    font-family: var(--font_semibold);
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.main_header .mobile_member_action .login_btn:hover {
    background: transparent;
    color: var(--text_color_1);
}