:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --text-color: #4E342E;
    --background-color2: #2c2b29;
    --btn-background-color: #BF360C;
    --btn-text-color: #FFFFFF;
    --hover-color: rgba(255, 213, 153, 0.4);
    --active-color: #f9e1b8;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --whatsapp-color: #25D366;
    --facebook-color: #3B5998;
    --twitter-color: black;
    --firstheader-menu-color: #fff6f6;
    --instagram-color: -webkit-linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    --youtube-color: #FF0000;
}


* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}


button,
a {
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: var(--black-color);
}


input,
select {
    border: none;
    outline: none;
    background-color: transparent;
}

input:focus,
input:active {
    border: none;
    outline: none;
    box-shadow: none;
}

select:focus,
select:active {
    border: none;
    outline: none;
    box-shadow: none;
}

textarea:focus,
textarea:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.popup_container {
    min-width: 300px;
    max-width: 500px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.popup_container.success {
    background-color: #28a745;
    color: var(--white-color);
}

.popup_container.error {
    background-color: #dc3545;
    color: var(--white-color);
}

.popup_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--white-color);
}

.popup_icon.success {
    background-color: #1e7e34;
}

.popup_icon.error {
    background-color: #c82333;
}

.popup_content {
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.popup_container.show {
    top: 20px;
    opacity: 1;
}

.success .popup_icon.error {
    display: none;
}

.error .popup_icon.success {
    display: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-container img {
    width: 80px;
    height: 80px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.top_contact_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 25px;
    background-color: var(--icon-color);
    color: var(--black-color);
}

.contact_header {
    display: flex;
    justify-content: space-around;
    font-size: 14px;
}

.contact_header_mobile,
.contact_header_support {
    margin: 0 15px;
    padding: 0 15px;
    position: relative;
}

.contact_header_mobile::after,
.contact_header_support::after,
.header_service_shop::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5px;
    height: 100%;
    background-color: var(--black-color);
}

@media (max-width: 328px) {
    .top_contact_header {
        justify-content: space-around;
        gap: 10px;
    }

    .contact_header_mobile,
    .contact_header_support {
        margin: 0 10px;
        padding: 0 10px;
        position: relative;
    }
}

@media (min-width: 329px) and (max-width: 320px) {
    .top_contact_header {
        justify-content: space-around;
        gap: 10px;
    }
}

@media (min-width: 321px) and (max-width: 475px) {
    .top_contact_header {
        justify-content: space-around;
        gap: 10px;
    }
}

.top_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    width: 96%;
    height: 100px;
    padding: 0 2%;
    flex-wrap: wrap;
    position: fixed;
    top: 36px;
    z-index: 99;
}

.top_header.active {
    background-color: var(--white-color);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.header_logo_wrapper {
    flex: 0 0 auto;
    /* min-width: 80px;
    max-width: 100px; */
}

.header_logo {
    width: auto;
    max-height: 60px;
}

.header_service_type {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 120px;
}

.header_service_shop {
    margin: 0 15px;
    padding: 0 15px;
    position: relative;
}

.header_menu_wrapper {
    flex: 2 1 auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    min-width: 200px;
}

.header_menu_wrapper ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    font-size: 16px;
    font-weight: 450;
}

.header_menu_wrapper li {
    padding: 0 5px;
}

.header_btns {
    flex: 0.5 1 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    min-width: 180px;
}

.header_login_btn,
.header_register_btn {
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    white-space: nowrap;
}

.header_login_btn:hover,
.header_register_btn:hover {
    background-color: var(--icon-color);
    columns: var(--black-color);
}

.header_menu_toggle {
    flex: 0 0 auto;
    font-size: 26px;
    margin: 0 15px;
}

.header_menu_toggle i {
    cursor: pointer;
}

.submenu_list.mobileview {
    display: none;
}

.desktopview {
    display: flex;
}

.mobileview {
    display: none;
}

@media (max-width: 321px) {

    .top_header {
        height: 80px;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        top: 0;
    }

    .header_logo_wrapper {
        max-width: 80px;
        margin-left: 2%;
    }

    .mobileview {
        display: block;
    }

    .desktopview {
        display: none;
    }

    .desktopview.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        padding: 0;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    }

    .header_menu_wrapper ul {
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 0;
    }

    .header_menu_wrapper li {
        border: solid;
        border-width: 0 0 1px 0;
        border-color: var(--primary-color);
        padding: 12px 0;
        width: 100%;
    }

    .header_menu_wrapper a {
        margin-left: 10px;
    }

    .submenu_toggle {
        position: relative;
    }

    ul.submenu_list {
        display: none;
    }

    li.submenu_item {
        width: calc(100% - 40px);
        padding-left: 40px;
    }

    .submenu_plus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_minus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_plus.active {
        display: grid;
    }

    .submenu_minus.active {
        display: grid;
    }

    .submenu_list.active {
        display: flex;
    }

    .toggle_plus {
        display: none;
    }

    .toggle_minus {
        display: none;
    }

    .toggle_plus.active {
        display: flex;
    }

    .toggle_minus.active {
        display: flex;
    }
}

@media (min-width: 321px) and (max-width: 426px) {

    .top_header {
        height: 80px;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        top: 0;
    }

    .header_logo_wrapper {
        max-width: 80px;
        margin-left: 2%;
    }

    .mobileview {
        display: block;
    }

    .desktopview {
        display: none;
    }

    .desktopview.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        padding: 0;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    }

    .header_menu_wrapper ul {
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 0;
    }

    .header_menu_wrapper li {
        border: solid;
        border-width: 0 0 1px 0;
        border-color: var(--primary-color);
        padding: 12px 0;
        width: 100%;
    }

    .header_menu_wrapper a {
        margin-left: 10px;
    }

    .submenu_toggle {
        position: relative;
    }

    ul.submenu_list {
        display: none;
    }

    li.submenu_item {
        width: calc(100% - 40px);
        padding-left: 40px;
    }

    .submenu_plus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_minus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_plus.active {
        display: grid;
    }

    .submenu_minus.active {
        display: grid;
    }

    .submenu_list.active {
        display: flex;
    }

    .toggle_plus {
        display: none;
    }

    .toggle_minus {
        display: none;
    }

    .toggle_plus.active {
        display: flex;
    }

    .toggle_minus.active {
        display: flex;
    }
}

@media (min-width: 426px) and (max-width: 769px) {

    .top_header {
        height: 80px;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        top: 0;
    }

    .header_logo_wrapper {
        max-width: 80px;
        margin-left: 2%;
    }

    .mobileview {
        display: block;
    }

    .desktopview {
        display: none;
    }

    .desktopview.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        padding: 0;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    }

    .header_menu_wrapper ul {
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 0;
    }

    .header_menu_wrapper li {
        border: solid;
        border-width: 0 0 1px 0;
        border-color: var(--primary-color);
        padding: 12px 0;
        width: 100%;
    }

    .header_menu_wrapper a {
        margin-left: 10px;
    }

    .submenu_toggle {
        position: relative;
    }

    ul.submenu_list {
        display: none;
    }

    li.submenu_item {
        width: calc(100% - 40px);
        padding-left: 40px;
    }

    .submenu_plus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_minus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_plus.active {
        display: grid;
    }

    .submenu_minus.active {
        display: grid;
    }

    .submenu_list.active {
        display: flex;
    }

    .toggle_plus {
        display: none;
    }

    .toggle_minus {
        display: none;
    }

    .toggle_plus.active {
        display: flex;
    }

    .toggle_minus.active {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {

    .top_header {
        height: 80px;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        top: 0;
    }

    .header_logo_wrapper {
        max-width: 80px;
        margin-left: 2%;
    }

    .mobileview {
        display: block;
    }

    .desktopview {
        display: none;
    }

    .desktopview.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        padding: 0;
        background-color: var(--white-color);
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    }

    .header_menu_wrapper ul {
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 0;
    }

    .header_menu_wrapper li {
        border: solid;
        border-width: 0 0 1px 0;
        border-color: var(--primary-color);
        padding: 12px 0;
        width: 100%;
    }

    .header_menu_wrapper a {
        margin-left: 10px;
    }

    .submenu_toggle {
        position: relative;
    }

    ul.submenu_list {
        display: none;
    }

    li.submenu_item {
        width: calc(100% - 40px);
        padding-left: 40px;
    }

    .submenu_plus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_minus {
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .submenu_plus.active {
        display: grid;
    }

    .submenu_minus.active {
        display: grid;
    }

    .submenu_list.active {
        display: flex;
    }

    .toggle_plus {
        display: none;
    }

    .toggle_minus {
        display: none;
    }

    .toggle_plus.active {
        display: flex;
    }

    .toggle_minus.active {
        display: flex;
    }
}

.banner_wrapper {
    background-color: #F4F5F5;
    height: calc(100vh - 100px);
    padding-top: 100px;
    position: relative;
    height: fit-content;
}

.banner_session {
    display: none;
    height: 100%;
    padding: 0 5%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.banner_session.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.banner_session_left {
    flex: 1 1 50%;
    max-width: 600px;
}

.banner_hint {
    font-size: 18px;
    font-weight: 500;
    color: var(--icon-color);
    margin-bottom: 10px;
}

.banner_title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    margin-bottom: 20px;
}

.banner_cnt {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.banner_btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    padding: 15px 25px;
    border-radius: 4px;
}

.banner_session_right {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 321px) {

    .banner_wrapper {
        min-height: calc(100vh - 100px);
    }

    .banner_title {
        font-size: 40px;
    }

    .banner_session_left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .banner_session_right {
        flex: 1 1 95%;
    }
}

@media (min-width: 321px) and (max-width: 426px) {

    .banner_wrapper {
        min-height: calc(100vh - 100px);
    }

    .banner_title {
        font-size: 40px;
    }

    .banner_session_left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .banner_session_right {
        flex: 1 1 95%;
    }
}

@media (min-width: 426px) and (max-width: 769px) {

    .banner_wrapper {
        min-height: calc(100vh - 100px);
    }

    .banner_title {
        font-size: 40px;
    }

    .banner_session_left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .banner_session_right {
        flex: 1 1 95%;
    }
}

@media (min-width: 769px) and (max-width: 999px) {
    .banner_title {
        font-size: 40px;
    }

    .banner_session_left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .banner_session_right {
        flex: 1 1 95%;
    }
}

.featured_wrapper {
    background-color: #FAFAFB;
    padding: 5%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.featured_hint {
    font-size: 18px;
    font-weight: 500;
    color: var(--icon-color);
    margin-bottom: 10px;
}

.featured_text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    margin-bottom: 20px;
    max-width: 400px;
    text-align: center;
}

.featured_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    justify-items: center;
}

.featured_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 25px;
    background-color: var(--white-color);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.featured_icon {
    margin-bottom: 10px;
    font-size: 50px;
}

.featured_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    margin-bottom: 20px;
    text-align: center;
}

.featured_cnt {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    text-align: center;
}

.handshake {
    color: #fb7756;
}

.moneycost {
    color: #facd60;
}

.headset {
    color: #1ac0c6;
}

.securityshield {
    color: #ee0979;
}

@media (max-width: 759px) {
    .featured_list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 759px) and (max-width: 849px) {
    .featured_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 849px) and (max-width: 1299px) {
    .featured_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.choose_wrapper {
    background-color: #F4F5F5;
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
}

.choose_session_left {
    flex: 1 1 50%;
}

.choose_hint {
    font-size: 18px;
    font-weight: 500;
    color: var(--icon-color);
    margin-bottom: 10px;
}

.choose_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    margin-bottom: 20px;
    max-width: 400px;
    text-align: left;
}

.choose_cnt {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.choose_list {
    list-style: none;
    padding-left: 20px;
}

.choose_item {
    display: flex;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: var(--card-background-color);
    align-items: center;
    word-break: break-word;
}

.choose_icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
}

.choose_point {
    font-size: 16px;
    color: var(--black-color);
}

.choose_session_right {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0% 2%;
}

.choose_left,
.choose_right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.choose_left {
    justify-content: center;
}

.choose_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.choose_right {
    justify-content: space-between;
}

.choose_right img {
    width: 100%;
    height: 48%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}

@media (max-width: 321px) {
    .choose_session_left {
        flex: 1 1 100%;
    }

    .choose_session_right {
        flex: 1 1 95%;
    }

    .choose_list {
        padding-left: 0;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .choose_session_left {
        flex: 1 1 100%;
    }

    .choose_session_right {
        flex: 1 1 95%;
    }

    .choose_list {
        padding-left: 0;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .choose_session_left {
        flex: 1 1 100%;
    }

    .choose_session_right {
        flex: 1 1 95%;
    }

    .choose_list {
        padding-left: 0;
    }
}

.services_section {
    padding: 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.services_heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--title-color);
}

.services_heading p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.services_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service_item {
    display: block;
    opacity: 1;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service_icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service_title {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 10px;
}

.service_desc {
    font-size: 16px;
    color: #555;
}

@media (max-width: 699px) {
    .services_list {
        display: flex;
        overflow-x: hidden;
    }

    .service_item {
        display: none;
        width: 90%;
    }

    .service_item.active {
        display: block;
        animation: serviceItemAnimation 6s ease-in-out forwards;
    }

    @keyframes serviceItemAnimation {
        0% {
            transform: translateX(100%);
            opacity: 0;
        }

        20% {
            transform: translateX(0);
            opacity: 1;
        }

        80% {
            transform: translateX(0);
            opacity: 1;
        }

        100% {
            transform: translateX(-100%);
            opacity: 0;
        }
    }
}

@media (min-width: 699px) and (max-width: 768px) {
    .services_list {
        display: flex;
        overflow-x: hidden;
    }

    .service_item {
        display: none;
        width: 40%;
    }

    .service_item.active {
        display: block;
        animation: serviceItemAnimation 6s ease-in-out forwards;
    }

    @keyframes serviceItemAnimation {
        0% {
            transform: translateX(100%);
            opacity: 0;
        }

        20% {
            transform: translateX(0);
            opacity: 1;
        }

        80% {
            transform: translateX(0);
            opacity: 1;
        }

        100% {
            transform: translateX(-100%);
            opacity: 0;
        }
    }
}

@keyframes coinToWallet {
    0% {
        transform: translateX(0%) rotate(0deg);
        bottom: 1%;
        width: 5%;
        opacity: 1;
    }

    80% {
        transform: translateX(-60vw) rotate(-360deg);
        bottom: 1%;
        width: 5%;
        opacity: 1;
    }

    90% {
        transform: translateX(-68vw) rotate(-450deg);
        bottom: 8%;
        width: 4%;
        opacity: 1;
    }

    100% {
        transform: translateX(-68vw) rotate(-480deg);
        bottom: 8%;
        width: 3%;
        opacity: 0;
    }
}

.bg_coin_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5%;
    will-change: transform;
    animation: coinToWallet 5s ease-in-out infinite;
}

@keyframes bounceSmooth {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bg_wallet_img {
    position: absolute;
    bottom: 5%;
    left: 20%;
    width: 10%;
    will-change: transform;
    animation: bounceSmooth 2s ease-in-out infinite;
}

@keyframes floatShield {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bg_secure_img {
    position: absolute;
    top: 15%;
    left: 35%;
    width: 8%;
    animation: floatShield 3s ease-in-out infinite;
    will-change: transform;
}

.page_banner {
    margin-top: 100px;
    height: 300px;
    display: flex;
    background: linear-gradient(90deg, #D32F2F, #FFF3E0);
    position: relative;
    overflow: hidden;
    justify-content: space-around;
    align-items: center;
    padding: 0 8%;
}

.page_banner_img {
    width: 25%;
}

.page_banner_left {
    position: absolute;
    left: -10%;
    top: -15%;
    width: 25%;
}

.page_banner_right {
    position: absolute;
    right: -10%;
    bottom: -15%;
    width: 25%;
}

.page_title {
    font-size: 40px;
    margin-bottom: 5px;
}

.page_banner_content {
    z-index: 2;
}

.page_content {
    margin: 5% 15%;
}

.page_content p {
    font-size: 16px;
    margin-bottom: 15px;
    text-indent: 50px;
    line-height: 1.6rem;
}

@media (max-width: 768px) {
    .page_banner {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .page_banner_img {
        width: 60%;
        margin: 10px 0;
    }

    .page_banner_left {
        left: -18%;
        top: -12%;
        width: 50%;
    }

    .page_banner_right {
        right: -15%;
        bottom: -8%;
        width: 50%;
    }

    .page_title {
        font-size: 28px;
    }

    .page_hint {
        font-size: 16px;
    }

    .page_content {
        margin: 5% 5%;
    }
}

:root {
    --text-light: #d1d1d1;
    --text-dark: #212121;
    --footer-bg: #121212;
    --footer-link-hover: white;
}

.bottom_footer_wrapper {
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 2% 2%;
    border-radius: 8px;
}

.bottom_footer_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/build/assets/bg/bg1.png);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    border-radius: 8px 8px 0 0;
}

.bottom_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 5% 40px;
    gap: 40px;
    color: var(--black-color);
    border-radius: 8px 8px 0 0;
}

.bottom_footer_container_wrapper {
    flex: 1 1 240px;
    min-width: 220px;
}

.bottom_footer_logo_wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.bottom_footer_logo {
    width: auto;
    max-height: 60px;
    filter: brightness(0.95);
}

.bottom_footer_aboutus_content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--black-color);
    max-width: 320px;
}

.bottom_footer_address {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bottom_footer_address i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.bottom_footer_container_title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: 0.5px;
}

.bottom_footer_container_item {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.bottom_footer_container_list {
    margin-bottom: 20px;
}

.bottom_footer_container_list a {
    display: inline-block;
    align-items: center;
    font-size: 15px;
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bottom_footer_container_list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: var(--icon-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.bottom_footer_container_list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 2px;
    width: 85%;
    background-color: var(--icon-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.bottom_footer_container_list a:hover {
    color: var(--icon-color);
}

.bottom_footer_container_list:hover a::after,
.bottom_footer_container_list:hover a::before {
    transform: scaleX(1);
}

.bottom_footer_container_list a i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 20px;
    min-width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.bottom_footer_container_list a:hover i {
    color: var(--icon-color);
}

.bottom_footer_container_list a:hover span {
    color: var(--black-color);
}

.bottom_rights_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    gap: 10px;
    background-color: var(--footer-bg);
    border-radius: 0 0 8px 8px;
}

.copy_right_content_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.copy_right_content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.copy_right_content_link a {
    color: var(--whatsapp-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copy_right_content_link a:hover {
    color: #1de9b6;
}

@media (max-width: 768px) {
    .bottom_footer {
        flex-direction: column;
        text-align: center;
    }

    .bottom_footer_container_wrapper {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .bottom_footer_aboutus_content {
        margin: 0 auto;
    }

    .bottom_footer_logo_wrapper {
        justify-content: center;
    }

    .bottom_rights_footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copy_right_content_wrapper {
        justify-content: center;
    }
}

.all_service_image {
    width: 50%;
}

.common_form_group {
    margin-bottom: 5%;
}

.common_form_label {
    margin-bottom: 2%;
}

.common_label {
    font-size: 1rem;
    font-weight: 800;
}

.common_form_input {
    min-height: 50px;
    position: relative;
}

.common_input {
    width: 85%;
    padding-left: 15%;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border: solid;
    border-width: 0 0 1px 0;
    border-color: var(--black-color);
}

.common_select {
    width: 100%;
    padding-left: 15%;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border: solid;
    border-width: 0 0 1px 0;
    border-color: var(--black-color);
}

.common_btn {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--gradient-btn-background-color);
}

.common_btn:hover {
    background: var(--gradient-hover-btn-background-color);
}

.common_icon.icolor {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.common_icon {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

.contact_first_section {
    margin: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact_section_wrapper {
    width: 40%;
    padding: 5%;
}

.contact_section_title {
    font-size: 60px;
    margin-bottom: 20px;
}

.contact_hint_point {
    color: var(--primary-color);
}

.contact_content {
    font-size: 16px;
    line-height: 1.6rem;
    margin-bottom: 20px;
}

.contact_list {
    list-style: none;
}

.contact_item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.contact_item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-bottom: 15px;
}

.contact_item h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact_item p {
    text-indent: 35px;
}

.common_input:focus,
.common_input:active {
    border: solid;
    border-width: 0 0 1px 0;
    border-color: var(--black-color);
}

.about_first_section {
    margin: 5% 10%;
}

.about_section_title {
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.about_hint_point {
    color: var(--primary-color);
}

.about_content {
    font-size: 18px;
    margin-bottom: 20px;
}

.about_image_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 5% 0;
}

.about_left_image_section {
    width: 25%;
}

.about_center_image_section {
    width: 40%;
}

.about_right_image_section {
    width: 25%;
}

.about_left_image_section,
.about_center_image_section,
.about_right_image_section {
    height: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.about_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about_strength_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5% 0;
    gap: 10px;
}

.about_strength {
    width: calc(25% - 20px);
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about_strength_icon {
    text-align: center;
    width: fit-content;
    height: 100px;
    display: grid;
    align-items: center;
    margin-bottom: 20px;
}

.about_strength_icon i {
    background-color: var(--card-background-color);
    color: var(--primary-color);
    border-radius: 40px 35px 55px 60px;
    font-size: 40px;
    padding: 30px;
}

.about_strength_title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.about_strength_content {
    text-align: center;
    font-size: 16px;
}

.about_choose_section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.about_choose_wrapper {
    width: 40%;
    padding: 5%;
}

.about_choose_image {
    width: 100%;
}

.about_choose_title {
    font-size: 50px;
    margin-bottom: 20px;
}

.about_choose_point {
    color: var(--primary-color);
}

.about_choose_group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    gap: 20px;
}

.about_choose_group.odd {
    background-color: var(--card-background-color);
}

.about_choose_group.even {
    background-color: var(--primary-color);
}

.about_choose_icon {
    display: grid;
    align-items: center;
}

.about_choose_icon i {
    font-size: 24px;
    padding: 20px;
    border-radius: 50px;
}

.about_choose_group.odd i {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.about_choose_group.even i {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.about_choose_heading {
    font-size: 22px;
    margin-bottom: 15px;
}

.about_choose_group.odd h4 {
    color: var(--primary-color);
}

.about_choose_group.even h4 {
    color: var(--white-color);
}

.about_choose_text {
    font-size: 14px;
}

.about_choose_group.even .about_choose_text {
    color: var(--white-color);
}

.service_section_wrapper {
    margin: 5% 10%;
}

.service_section_heading {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.service_section_hint {
    color: var(--primary-color);
}

.service_section_text {
    font-size: 18px;
    text-align: center;
    padding: 0 5%;
    margin-bottom: 20px;
}

.service_section_container {
    padding: 5% 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service_section_group {
    width: 450px;
    height: 500px;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service_section_image {
    width: 100%;
    height: 100%;
}

.service_section_content_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
}

.service_section_title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.service_section_content {
    font-size: 18px;
}

.service_section_icon_wrapper {
    position: absolute;
    right: 0;
    top: 20%;
    background: url(/build/assets/pages/service_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service_section_icon_wrapper i {
    font-size: 40px;
}

.service_section_group.even {
    margin: 0 15%;
}

.service_section_group.even .service_section_title {
    color: var(--white-color);
}

.service_section_group.even .service_section_content {
    color: var(--white-color);
}

@keyframes enterFromBottomLeft {
    0% {
        opacity: 0;
        transform: translate(-100px, 100px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes enterFromBottomRight {
    0% {
        opacity: 0;
        transform: translate(100px, 100px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes enterFromTopLeft {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.service_section_group.animate {
    opacity: 1;
    animation-duration: 3s;
    animation-fill-mode: both;
}

.service_section_group.bottomleftenter.animate {
    animation-name: enterFromBottomLeft;
}

.service_section_group.bottomrightenter.animate {
    animation-name: enterFromBottomRight;
}

.service_section_group.topleftenter.animate {
    animation-name: enterFromTopLeft;
}

.service_section_group.animate .service_section_icon_wrapper {
    animation: showAndRotate 5s linear forwards;
}

@keyframes showAndRotate {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service_section_group.animate .service_section_icon_wrapper i {
    animation: plusPulse 1.5s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes plusPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1.2) rotate(-5deg);
    }

    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

.faq_image {
    width: 35%;
}

.faq_section_wrapper {
    margin: 5% 10%;
}

.faq_section_heading {
    font-size: 50px;
    text-align: left;
    max-width: 40%;
    margin-bottom: 20px;
}

.faq_section_hint {
    color: var(--primary-color);
}

.faq_section_service_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    column-gap: 20px;
    row-gap: 40px;
    margin: 5% 0;
}

.faq_section_service {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.faq_section_icon_wrapper {
    background: url(/build/assets/pages/service_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 30px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 20px;
}

.faq_section_icon_wrapper i {
    color: var(--primary-color);
    font-size: 40px;
}

.faq_section_service_name {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    min-height: 50px;
}

.faq_section_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5% 0;
    gap: 30px;
}

.faq_section_item {
    width: 44%;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
}

.faq_section_item_icon {
    padding: 5px 10px;
}

.faq_section_item_icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.faq_section_item_title {
    font-size: 20px;
    margin-bottom: 20px;
}

.faq_section_item_content {
    font-size: 18px;
    line-height: 1.6rem;
}

.faq_section_contact_wrapper {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_section_contact_content_wrapper {
    max-width: 50%;
}

.faq_section_contact_title {
    font-size: 22px;
    margin-bottom: 20px;
}

.faq_section_contact_content {
    font-size: 18px;
    line-height: 1.6rem;
}

.faq_section_contact_btn_wrapper {
    width: 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.faq_section_contact_btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.faq_whatsapp_btn,
.faq_phone_btn {
    width: 47%;
    text-align: center;
    padding: 10px 0;
    border-radius: 4px;
}

.faq_whatsapp_btn {
    background-color: var(--whatsapp-color);
}

.faq_phone_btn {
    background-color: var(--icon-color);
}

.faq_whatsapp_btn i,
.faq_phone_btn i {
    font-size: 18px;
}

.contact_detail_wrapper {
    margin: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}

.contact_detail_container {
    display: grid;
    align-items: center;
}

.contact_detail_divider {
    border: dashed;
    border-width: 0 3px 0 0;
    border-color: var(--primary-color);
}

.contact_detail_logo {
    width: auto;
    max-height: 60px;
}

.contact_detail_icon_wrapper {
    color: var(--primary-color);
    background-color: var(--background-color);
    width: fit-content;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.contact_detail_icon_wrapper i {
    font-size: 24px;
}

.contact_detail_label {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact_detail_key {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 769px) {

    .about_first_section {
        margin: 5%;
    }

    .about_section_title {
        font-size: 30px;
    }

    .about_image_section {
        flex-wrap: wrap;
    }

    .about_left_image_section,
    .about_center_image_section,
    .about_right_image_section {
        width: 100%;
    }

    .about_strength {
        width: calc(100% - 20px);
    }

    .about_choose_wrapper {
        width: 100%;
        padding: 2%;
    }

    .about_choose_title {
        font-size: 30px;
    }

    .contact_first_section {
        margin: 5%;
    }

    .contact_section_wrapper {
        width: 100%;
        padding: 2%;
    }

    .contact_section_title {
        font-size: 30px;
    }

    .faq_section_wrapper {
        margin: 5%;
    }

    .faq_section_heading {
        font-size: 30px;
        max-width: 100%;
    }

    .faq_section_service_wrapper {
        column-gap: 10px;
    }

    .faq_section_service {
        width: 150px;
    }

    .faq_section_item {
        gap: 10px;
        width: 94%;
        padding: 10px;
    }

    .faq_section_contact_wrapper {
        flex-wrap: wrap;
    }

    .faq_section_contact_content_wrapper {
        max-width: 100%;
    }

    .faq_section_contact_btn_wrapper {
        width: 100%;
    }

    .faq_section_item_title {
        font-size: 18px;
    }

    .faq_section_item_content {
        font-size: 16px;
    }

    .service_section_wrapper {
        margin: 5%;
    }

    .service_section_heading {
        font-size: 30px;
    }

    .service_section_group {
        width: 100%;
        height: 400px;
    }

    .service_section_group.even {
        margin: 0;
    }

    .service_section_title {
        text-align: center;
    }

    .contact_detail_wrapper {
        row-gap: 40px;
        flex-direction: column;
        margin: 10%;
    }

    .contact_detail_divider {
        border-width: 0 0 3px 0;
    }
}

.personalheader {
    margin-top: 100px;
    background: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.personalheader h1 {
    margin: 0 0 10px;
    font-size: 2.5rem;
}

.personalheader p {
    font-size: 1.2rem;
}

.personalsection {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.personalgrid {
    display: grid;
    gap: 20px;
}

.personalgrid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.personalcard {
    background: var(--secondary);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.personalcard i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta a {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.personalfaq {
    background: var(--secondary);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.personalfaq h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .personalheader h1 {
        font-size: 2rem;
    }
}


.businessheader {
    margin-top: 100px;
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.businessheader h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.businessheader p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.businesssection {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.businesssection-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.businessgrid {
    display: grid;
    gap: 20px;
}

.businessgrid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.businesscard {
    background: var(--secondary);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.businesscard i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.businesscta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.businesscta a {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.businessfaq {
    background: var(--secondary);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.businessfaq h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .businessheader h1 {
        font-size: 2rem;
    }
}