/* --------Font--------------- */
/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap'); */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-ExtraBold.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Medium.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-SemiBold.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Regular.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Light.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Bold.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-ExtraLight.woff2') format('woff2'),
        url('../fonts/manrope/Manrope-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* -----------Css-variable------ */

:root {
    --light-yellow: #f3f5ff;
    --primery: #7a3df7;
    --dark-black: #1b044a;
    --dark-greay: #9599ab;
    --dark-more: #1b0e35;
    --greay: #afafaf;
    --text-greay: #848484;
    --black: #000000;
    --bg-white: #ffffff;
    --text-white: #fff;
    --red-color: #ff0000;
    --light-greay: #dddfea;
    --gradient: linear-gradient(74deg, rgba(122, 61, 247, 1) 0%, rgba(232, 123, 156, 1) 100%);
    --gradient-reverce: linear-gradient(74deg, rgba(232, 123, 156, 1) 0%, rgba(122, 61, 247, 1) 100%);
}

/* ------Common-Css------------- */
/* 
html {
    scroll-behavior: smooth
} */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    background-color: var(--light-yellow);
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: .4s all;
}

a:hover {
    text-decoration: none;
    color: var(--primery);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
}

.white_text p,
.white_text .section_title h2,
.white_text span,
.white_text h3 {
    color: var(--text-white);
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

.section_title {
    text-align: center;
}

/* section heading h2 */
.section_title h2 {
    font-size: 55px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -2px;
}

.section_title h2 span {
    color: var(--primery);
}

.section_title h2 span img {
    margin-left: 10px;
}

.section_title.white_text h2,
.section_title.white_text p {
    color: var(--bg-white);
}

.title_badge {
    color: var(--bg-white);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background: var(--gradient);
    margin-bottom: 10px;
}

.row_am {
    padding: 50px 0;
}

/* purple button */
.btn {
    font-weight: 700;
}

.puprple_btn {
    color: var(--text-white);
    background: var(--gradient);
    font-size: 16px;
    padding: 9px 30px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
    transform: translate3d(-3px, -4px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .4s all;
    z-index: 2;
}

.puprple_btn:hover {
    color: var(--text-white);
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.btn_block {
    position: relative;
    display: inline-block;
}

.btn_bottom {
    z-index: 1;
    border: 1px solid var(--primery);
    border-radius: 100px;
    position: absolute;
    top: -8px;
    left: 8px;
    right: -12px;
    transform: translate(-0.52em, 0.52em);
    width: 100%;
    height: 100%;
}

/* white button */
.white_btn .puprple_btn {
    background-color: var(--bg-white);
    color: var(--dark-black);
}

.white_btn .btn_bottom {
    border-color: var(--bg-white);
}

.white_btn:hover {
    color: var(--black);
}

/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 1px solid var(--bg-white);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: var(--bg-white);
}

.container.container-sm {
    max-width: 780px;
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primery);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-black);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-greay);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.spin_text {
    transform-origin: 50% 50% 0;
    transform: rotate(0deg);
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ------Round Animation------- */
@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}


@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    /*background-color: #7a3df7b4;*/
    background: var(--gradient);
    padding: 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
    pointer-events: all;
    opacity: 9;
    transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

.bg_color {
    background: var(--gradient);
}

/* navigation bar */
.navbar {
    padding: 0;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 12px;
    font-weight: 600;
    transition: .4s all;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .nav-item .btn_block {
    margin-left: 30px;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--black);
    background-color: var(--bg-white);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    position: relative;
    transform: translate3d(-3px, -4px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .4s all;
    z-index: 2;
}

.nav-item .btn_bottom {
    z-index: 1;
    border: 1px solid var(--bg-white);
    border-radius: 100px;
    position: absolute;
    top: -8px;
    left: 8px;
    right: -12px;
    transform: translate(-0.52em, 0.52em);
    width: 100%;
    height: 100%;
}


.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.navbar-brand img {
    width: 130px;
}

.navbar-brand h3 {
    color: var(--primery);
    font-weight: 800;
    font-size: 34px;
    margin: 0;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 8px;
    top: 2px;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--bg-white);
    border-radius: 0 0 10px 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    border-bottom: 3px solid var(--primery);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 15px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    color: var(--primery);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: 1px;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;

    /*disable selection*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    /* แก้จาก var(--bg-white) เป็นสีดำ */
    border-top: 4px solid #000000;
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    /* แก้จาก var(--bg-white) เป็นสีดำ */
    background: #000000;
    height: 4px;
    width: 30px;
    position: absolute;
    top: -12px;
    right: 0px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transform-origin: 13%;
    -webkit-transform-origin: 13%;
    transform-origin: 13%;
}

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 4px solid var(--bg-white);
}

.toggle-bar::after {
    top: 4px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}

/* -----Typing Text------- */
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ---------Spin Block---------- */
.spinBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.spinBlock::before {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: 1px;
    left: 20px;
    top: 50.5%;
    background-color: var(--dark-black);
}

.spinBlock .spin_box {
    display: block;
    width: 155px;
    height: 155px;
    background-color: var(--dark-black);
    border-radius: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spinBlock .spin_box .downsign {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 75px;
    height: 75px;
    background-color: var(--primery);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: var(--bg-white);
}

.spinBlock .spin-text {
    transform-origin: 50% 50% 0;
    transform: rotate(0deg);
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

/* -----------------Task-App-Section-Css-Start------------------ */
.task_app_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.task_app_section .task_block {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--dark-black);
    padding: 60px 150px;
    position: sticky;
    z-index: 99;
    border-radius: 30px;
    overflow: hidden;
}

.task_app_section .dotes_blue {
    position: absolute;
    left: -80px;
    bottom: -100px;
}

.task_app_section .task_block .row {
    align-items: center;
}

/* Task App section wraper */
.task_app_section .task_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Task App section images*/
.task_app_section .task_img img {
    max-width: 100%;
    border-radius: 20px;
}

.task_app_section .task_img::before {
    content: "";
    position: absolute;
    left: 42%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(-9deg);
    width: 380px;
    height: 380px;
    background-color: var(--primery);
    border-radius: 30px;
}

.task_app_section .task_img .screen_img {
    margin-left: -115px;
    margin-top: 50px;
}

.task_app_section .task_text .section_title {
    text-align: left;
}

.task_app_section .task_text .section_title h2 {
    margin-bottom: 15px;
    font-size: 35px;
}

.task_app_section .task_text .section_title .icon {
    display: block;
    width: 80px;
    height: 80px;
    background-color: var(--bg-white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 35px 0;
}

.task_app_section .task_text .section_title .icon img {
    width: 50px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ------------About us Section Css Start-------- */
.about_section {
    position: relative;
}


.about_section .section_title {
    margin-bottom: 70px;
}

.about_section .app_statstic {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.about_section .app_statstic li:first-child,
.about_section .app_statstic li:last-child {
    width: 100%;
    text-align: center;
}

.about_section .app_statstic li .text {
    width: 160px;
    height: 160px;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-white);
    border: 1px solid var(--primery);
    margin: 0 auto;
}

.about_section .app_statstic li .text p span {
    font-weight: 700;
    font-size: 35px;
    color: var(--primery);
}

.about_section .app_statstic li .text p {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.about_section .video_block {
    position: relative;
    width: 275px;
    margin: 35px 0;
}

.about_section .video_block .thumbnil {
    max-width: 100%;
    border-radius: 20px;
}

.about_section .video_block .thumbnil img {
    border-radius: 20px;
}

.about_section .video_block .playBtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(24, 26, 34, 0.5);
    border-radius: 100px;
    width: 100px;
    height: 100px;
}

.about_section .video_block .playBtn .play_icon {
    position: absolute;
    margin: auto;
    z-index: 99;
}

/* how it works video model   */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 30px;
}

/* ---------- text List Flow Css Start ------------- */

.text_list_section .slider_block {
    background-color: var(--dark-black);
    padding: 20px 0;
    transform: rotate(-1.5deg);
    /* pointer-events: none; */
    width: 100%;
    overflow-x: hidden;
}

.text_list_section .down_fix {
    transform: rotate(-5deg);
    position: relative;
    bottom: -30px;
    z-index: 9;
}

.text_list_section .down_fix::after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 22px;
    height: 22px;
    background-image: url(../images/bigstar_dark.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.text_list_section.rotet_down {
    transform: rotate(0.5deg);
}

.text_list_section .owl-stage,
.text_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
    height: 55px;
}

.text_block {
    display: flex;
    align-items: center;
}

.text_block span {
    color: var(--text-white);
    font-size: 50px;
    font-family: var(--font-bebas);
    font-weight: 700;
    line-height: 1;
}

.text_block .mark_star {
    margin: 0 60px;
    font-family: 'Playball', cursive;
}

/* ------------Service App Section Css------------ */
.service_section {
    position: relative;
}

.service_section .service_blocks {
    padding: 50px 0;
}

.service_section .service_badge {
    background-color: var(--bg-white);
    color: var(--primery);
    padding: 5px 20px;
    border-radius: 100px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.service_section .service_badge span {
    margin-left: 3px;
}

.service_section .service_blocks .img img {
    max-width: 100%;
    border-radius: 20px;
}

.service_section .service_text {
    padding-right: 150px;
}

.service_section .service_text.right_side {
    padding-left: 150px;
    padding-right: 0;
}

.service_section .service_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    margin: 25px 0;
}

.service_section .service_text h2 span {
    color: var(--primery);
}

.service_section .service_text .listing_block li {
    display: flex;
    gap: 15px;
}

.service_section .service_text .listing_block li .icon span {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: var(--text-white);
    background-color: var(--dark-black);
    border-radius: 100px;
    font-size: 8px;
    margin-top: 3px;
}

.service_section .service_text .listing_block li .text {
    width: calc(100% - 50px);
}

.service_section .service_text .feature_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.service_section .service_text .feature_list li .icon span {
    color: var(--primery);
    font-size: 18px;
}

.service_section .service_text .feature_list li p {
    margin: 0;
    padding-top: 2px;
}

.service_section .service_text .btn_block {
    margin-top: 40px;
}

.service_section .service_text .btn {
    text-transform: capitalize;
    font-weight: 700;
}


/* ==============Service Images Css Start ======================== */
.service_blocks .inner_block {
    position: relative;
    border-radius: 15px;
    background-color: var(--bg-white);
    padding: 50px 75px;
    text-align: center;
}

.service_blocks .inner_block {
    text-align: center;
}

.service_blocks .inner_block.dark_bg {
    background-color: var(--bg-white);
    background-image: url(../images/blue_dotes.png);
    background-position: -200px 100px;
    background-repeat: no-repeat;
    background-size: cover;
}


.service_blocks .inner_block.dark_bg .star_img img {
    /*filter: invert(1);*/
}

.service_blocks .inner_block .img {
    position: relative;
}

.service_blocks .inner_block .img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(-9deg);
    width: 100%;
    height: 90%;
    background: var(--gradient);
    border-radius: 30px;
}

.service_blocks .inner_block.rotate_right .img::before {
    transform: translate(-50%, -50%) rotate(8deg);
}

.service_blocks .inner_block.rotate_left .img::before {
    transform: translate(-50%, -50%) rotate(-8deg);
}

.service_blocks .inner_block .img img {
    position: relative;
    border-radius: 20px;
    border: solid 2px var(--black);
}

.service_blocks .inner_block .star_img img {
    position: absolute;
}

.service_blocks .inner_block .star_img img:first-child {
    right: 20px;
    width: 25px;
    filter: invert(1);
}

.service_blocks .inner_block .star_img img:last-child {
    left: 20px;
    bottom: 55px;
    filter: invert(1);
}

/* -------------How It Work Section Css Start------------- */
.how_it_section {
    position: relative;
    padding: 0 15px;
}

.how_it_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.how_it_inner .dotes_blue {
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
}

.how_it_inner .section_title {
    margin-bottom: 50px;
    position: relative;
}

.how_it_inner .steps_block {
    text-align: center;
    position: relative;
}

.how_it_inner .steps_block .icon {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: var(--gradient);
    margin: 0 auto;
}

.how_it_inner .steps_block .text {
    margin-top: 40px;
}

.how_it_inner .steps_block .text .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px 0;
}

.how_it_inner .steps_block .text .social li a {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--greay);
    border-radius: 100px;
    text-align: center;
    line-height: 38px;
    color: var(--black);
    transition: .4s all;
}

.how_it_inner .steps_block .text .social li a:hover {
    background-color: var(--primery);
    border-color: var(--primery);
    color: var(--text-white);
}

.how_it_inner .steps_block .text .tag_text {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 20px 0;
}

.how_it_inner .steps_block .step {
    width: 40px;
    height: 40px;
    border: 1px dashed var(--dark-greay);
    color: var(--dark-greay);
    text-align: center;
    line-height: 38px;
    display: block;
    margin: 0 auto;
    border-radius: 100px;
    margin-top: 30px;
    position: relative;
}

.how_it_inner .steps_block.step_border::after {
    content: "";
    position: absolute;
    left: calc(50% + 45px);
    bottom: 20px;
    width: calc(100% - 60px);
    height: 1px;
    border-bottom: 1px dashed var(--dark-greay);
}

.how_it_inner .text-center .btn_block {
    margin-top: 35px;
}


/* -------------Review Section Css Start-------------- */
.review_section {
    position: relative;
}

.review_section .positive_inner {
    padding: 50px 0 50px 0;

}

.review_section .positive_inner .row {
    align-items: flex-start;
}

.review_section .positive_inner .row .sticky-top {
    top: 110px;
}

.review_section .google_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review_section .google_rating .star {
    display: flex;
    align-items: center;
}

.review_section .google_rating .star span,
.review_section .review_side .review_block .coustomer_info .star span {
    color: #fc9400;
}

.review_section .google_rating p {
    margin: 0;
    font-weight: 700;
}

.review_section .google_rating p img {
    height: 16px;
    nav-left: 5px;
}

.review_section .user_review {
    margin-bottom: 60px;
}

.review_section .user_review p {
    font-weight: 700;
}

.review_section .user_review p a {
    color: var(--primery);
}

.review_section .review_side .review_block {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
}

.review_section .review_side .review_block .coustomer_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.review_section .coustomer_info .star {
    width: 100px;
    display: flex;
    justify-content: end;
}

.review_section .coustomer_info .avtar {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% - 120px);
}

.review_section .coustomer_info .avtar img {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 150px;
}

.review_section .coustomer_info .avtar .text {
    width: calc(100% - 100px);
}

.review_section .coustomer_info .avtar .text h3 {
    margin-bottom: 0;
}

.review_section .coustomer_info .avtar .text span {
    font-size: 15px;
}

.review_section .review_block p {
    margin: 0;
}


/* ------------inner page review Section Css Start---------- */

.review_section.page_ban {
    position: relative;
    padding-top: 80px;
    margin-top: 130px;
}

.review_section.page_ban::before,
.review_section.page_ban::after {
    /*content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-image: url(../images/yellow_dotes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 40%;
    background-position: center;
    z-index: -1;*/
}


.review_section .review_side.innerpage_block {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.review_section .review_side.innerpage_block .review_block {
    width: 48%;
}

.review_section .positive_inner.in_page {
    border-bottom: none;
}

.review_section.page_ban .google_rating {
    display: block;
}

.review_section.page_ban .google_rating .star {
    display: block;
}

.review_section.page_ban .google_rating .rate_link {
    color: var(--primery);
    font-weight: normal;
}




/* ------------Our Client Listing Section Css Start---------- */
.our_client {
    position: relative;
}

.our_client h2 {
    font-size: 35px;
}

.our_client .client_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.our_client .client_list .client_logo {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 86px;
}

.our_client .client_list .client_logo img {
    width: 150px;
    height: auto;
}

/* -------------------Pricing-Section---------------------- */
.pricing_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.pricing_inner {
    max-width: 1370px;
    padding: 100px 0;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--gradient);
}

.pricing_inner .dotes_blue {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
}

.pricing_inner .section_title {
    position: relative;
}

.pricing_section .title_badge {
    background: var(--bg-white);
    color: var(--black);
}

.pricing_inner .nav-tabs {
    border: none;
    justify-content: center;
    background-color: var(--text-white);
    border-radius: 10px;
    padding: 5px;
    width: 230px;
    margin: 50px auto;
    position: relative;
}

.pricing_inner .nav-tabs button {
    border: transparent;
    border-radius: 10px;
    background-color: transparent;
    font-weight: 700;
    padding: 10px 30px;
    font-size: 14px;
}

.pricing_inner .nav-tabs button.active {
    background: var(--gradient);
    color: var(--text-white);
}

.pricing_inner .pannel_block {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 45px 40px;
}

.pricing_inner .pannel_block:not(.highlited_block) span,
.pricing_inner .pannel_block:not(.highlited_block) p,
.pricing_inner .pannel_block:not(.highlited_block) h2,
.pricing_inner .pannel_block:not(.highlited_block) h3 {
    color: var(--black);
}

.pricing_inner .pannel_block .heading {
    position: relative;
}

.pricing_inner .pannel_block .heading h3 {
    margin: 0;
}

.pricing_inner .pannel_block .heading span {
    font-size: 15px;
}

.pricing_inner .pannel_block .pricing {
    padding: 35px 0 25px 0;
    border-bottom: 1px solid var(--dark-greay);
}

.pricing_inner .pannel_block .pricing h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primery);
    margin: 0;
}

.pricing_inner .pannel_block .pricing span {
    font-size: 15px;
    margin-left: -10px;
    color: var(--primery);
}

.pricing_inner .pannel_block .features {
    margin: 30px 0 35px 0;
}

.pricing_inner .pannel_block .features li {
    display: flex;
    align-items: start;
    margin: 5px 0;
}

.pricing_inner .pannel_block .features li p {
    margin: 0;
    width: calc(100% - 20px);
    font-weight: 500;
    padding-top: 2px;
}

.pricing_inner .pannel_block .features li .icon {
    margin-right: 5px;
    width: 17px;
}

.pricing_inner .pannel_block .features li .icon .icofont-check-circled {
    color: var(--primery);
}

.pricing_inner .pannel_block .features li .icon .icofont-close-circled {
    color: var(--red-color);
}

.pricing_inner .pannel_block.highlited_block {
    background-color: var(--dark-black);
    border: solid 2px var(--text-white);
}

.pricing_inner .pannel_block.highlited_block .pricing {
    border-color: #7995f7;
}

.pricing_inner .pannel_block.highlited_block .pricing h3,
.pricing_inner .pannel_block.highlited_block .pricing h3 span {
    color: var(--text-white);
}

.pricing_inner .pannel_block.highlited_block .offer {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg-white);
    color: var(--black);
    padding: 2px 10px;
    border-radius: 50px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 13px;
}

.pricing_inner .pannel_block.highlited_block .features li .icon .icofont-check-circled {
    color: var(--text-white);
}

.pricing_inner .contact_text {
    margin-top: 40px;
    margin-bottom: 0;
}

.pricing_inner .contact_text a {
    color: var(--text-white);
    text-decoration: underline;
    line-height: 1.5;
}


/* -----------Interface-Section-Css-Start----------------- */

/* interface wraper */
.interface_section .screen_slider {
    margin-top: 35px;
    min-height: 720px;
}

/* interface images */
.interface_section .owl-item .screen_frame_img img {
    transform: scale(.9);
    border: 2px solid #000;
    border-radius: 20px;
    transition: 1s all;
    margin: 0 auto;
}

.interface_section .owl-item.center .screen_frame_img img {
    transform: scale(1);
    border: 3px solid #000;
}

.interface_section .owl-dots {
    margin-top: 40px;
}

.interface_section .owl-dots .owl-dot {
    border: 1px solid var(--primery);
    background-color: var(--primery);
    background-color: transparent;
}

/* ---------Key Feature Section Css Start---------- */
.key_feature_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.key_innner {
    background: var(--bg-white);
    max-width: 1370px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.key_innner .dotes_blue {
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
}

.key_innner .section_title {
    margin-bottom: 35px;
    position: relative;
}

.key_innner .section_title h2 {
    /*color: var(--text-white);*/
}

.feature_box {
    text-align: center;
    background-color: var(--light-yellow);
    padding: 40px 40px 0 40px;
    border-radius: 20px;
}

.feature_box h3 {
    color: var(--primery);
}

.feature_box .img {
    margin-top: 40px;
}

.key_innner .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 100px;
    border: 1px solid var(--dark-greay) !important;
    transition: .4s all;
}

.key_innner .owl-nav button span {
    color: var(--dark-greay);
    font-size: 22px;
    line-height: 1.2;
}

.key_innner .owl-nav button.owl-prev {
    left: -50px;
}

.key_innner .owl-nav button.owl-next {
    right: -50px;
}

.key_innner .owl-nav button:hover {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
}

.key_innner .owl-nav button:hover span {
    color: var(--primery);
}

/* --------------Downaload Section Css Start--------------- */
.downaload_section {
    position: relative;
}

.downaload_section .background_slider {
    padding: 200px 0;
}

.downaload_section .dowanload_slider .downlist {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.downaload_section .dowanload_slider .text_block span {
    position: relative;
    color: #d7daea;
}

.downaload_section .dowanload_slider {
    transform: rotate(-1.5deg);
    padding: 20px 0;
}

.downaload_section .yellow_dotes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.downaload_section .yellow_dotes img {
    width: 850px;
}

.downaload_section .center_screen {
    text-align: center;
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.downaload_section .app_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.downaload_section .app_btn li a {
    display: block;
    padding: 15px 35px;
    background-color: var(--black);
    border: none;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.downaload_section .app_btn li a:hover {
    background: var(--gradient);

}

.downaload_section .app_btn li:last-child {
    margin-left: 25px;
}

.downaload_section .app_btn li a img {
    transition: .4s all;
    height: 36px;
}

/* -------------blog-Section-Css-Start------------- */
.blog_section {
    position: relative;
}

.blog_section .section_title {
    margin-bottom: 50px;
}

.blog_section .blog_listing {
    display: flex;
    justify-content: space-between;
}

.blog_section .blog_listing .blog_post {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    width: calc(50% - 40px);
}

.blog_section .blog_listing .blog_post img {
    border-radius: 15px;
    max-width: 100%;
}

.blog_section .blog_listing .blog_post .text {
    margin-top: 30px;
}

.blog_section .blog_listing .blog_post .blog_info {
    display: flex;
    font-size: 14px;
}

.blog_section .blog_listing .blog_post .blog_info li:not(:last-child):after {
    content: '|';
    margin: 0 10px;
}

.blog_section .blog_listing .blog_post h3 {
    margin: 20px 0 25px 0;
    font-size: 26px;
}

.blog_section .blog_listing .blog_post h3 a {
    transition: .4s all;
}

.blog_section .blog_listing .blog_post .tag_more {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog_section .blog_listing .blog_post .tag_more .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--primery);
    border: 1px solid var(--primery);
    padding: 2px 20px;
    border-radius: 100px;
}

.blog_section .blog_listing .blog_post .tag_more a {
    font-weight: 700;
    color: var(--primery);
    transition: .4s all;
}

.blog_section .blog_listing .blog_post .tag_more a:hover {
    color: var(--dark-black);
}

/* ------Footer-Css-Start-------------- */
footer {
    background-color: var(--dark-more);
    padding: 100px 0;
    margin-top: 50px;

}

.footer_overlay {
    width: 100%;
    height: auto;
    margin-top: -105px;
    padding-bottom: 10px;
}

.footer_overlay img {
    width: 100%;
}

footer .logo_side .logo {
    margin-bottom: 40px;
}

footer .logo_side .logo h3 {
    font-size: 36px;
}

footer .news_letter h3 {
    font-size: 26px;
}

footer .news_letter form .form-group {
    max-width: 430px;
    position: relative;
}

footer .news_letter form .form-group .form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--bg-white);
    border-radius: 10px;
    min-height: 60px;
    color: var(--text-white);
    font-weight: 500;
}

footer .news_letter form .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--gradient);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

footer .news_letter form .form-group button:hover {
    background: var(--gradient-reverce);
}

footer .news_letter form .note {
    color: #7a7a7a;
}

footer .contact_info {
    display: flex;
    margin-top: 10px;
}

footer .contact_info li a {
    color: var(--text-white);
}

footer .contact_info li:not(:last-child)::after {
    content: "|";
    margin: 0 15px;
    color: var(--text-white);
}

footer .social_media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

footer .social_media li a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--dark-greay);
    border-radius: 100px;
    color: var(--text-white);
    display: block;
    text-align: center;
    line-height: 35px;
    transition: .4s all;
}

footer .social_media li a:hover {
    background-color: var(--bg-white);
    color: var(--dark-black);
}

footer .download_side {
    text-align: right;
    padding-top: 90px;
}

footer .download_side .app_btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
}

footer .download_side .app_btn li a {
    display: block;
    padding: 15px 35px;
    background: var(--gradient);
    border: none;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

footer .download_side .app_btn li a:hover {
    background: var(--gradient-reverce);
}

footer .download_side .app_btn li:last-child {
    margin-left: 25px;
}

footer .download_side .app_btn li a img {
    transition: .4s all;
    height: 36px;
}

/* footer go top button */
.go_top {
    position: fixed;
    right: 30px;
    bottom: 110px;
    cursor: pointer;
    transition: .4s all;
    display: none;
}

.go_top span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient);
    color: var(--text-white);
    border-radius: 150px;
    font-size: 25px;
}

.go_top:hover {
    bottom: 120px;
}

/* ===============About Page Css Start================== */
.about_us_section {
    padding-top: 180px;
    position: relative;
}


.about_us_section #about_slider .abt_slides img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.about_us_section .abt_text h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1px;
    max-width: 375px;
}

.about_us_section .abt_text h2 span {
    color: var(--primery);
}

/* ===============Why Choose Us Section Css Start================== */
.why_choose {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.why_choose .why_choose_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.why_choose .why_choose_inner .dotes_blue {
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose .why_choose_inner .company_statistics ul {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    max-width: 940px;
    margin: 50px auto 0 auto;
}

.why_choose .why_choose_inner .company_statistics ul li {
    width: 25%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primery);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
}

.why_choose .why_choose_inner .company_statistics ul li:not(:last-child) {
    margin-left: -20px;
}

.why_choose .why_choose_inner .company_statistics ul li p span {
    font-size: 35px;
    font-weight: 700;
    color: var(--primery);
}

.why_choose .why_choose_inner .company_statistics ul li p {
    font-size: 18px;
    color: var(--black);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* ===============Our Value Section Css Start============== */
.our_value_section {
    position: relative;
}

.our_value_section::before,
.our_value_section::after {
    /*content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
    background-image: url(../images/yellow_dotes_tr.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
    background-position: center;
    z-index: -1;*/
}

.our_value_section .value_slider {
    margin-top: 50px;
}

.our_value_section .value_slider .value_block {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.our_value_section .value_slider .value_block .icon {
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient);
    margin: 0 auto 30px auto;
}

.our_value_section .value_slider .value_block h3 {
    color: var(--primery);
}

.our_value_section .value_slider .value_block p {
    margin-bottom: 0;
}

.our_value_section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 100px;
    border: 1px solid var(--greay) !important;
    transition: .4s all;
}

.our_value_section .owl-nav button span {
    color: var(--greay);
    font-size: 22px;
    line-height: 1.2;
}

.our_value_section .owl-nav button.owl-prev {
    left: -50px;
}

.our_value_section .owl-nav button.owl-next {
    right: -50px;
}

.our_value_section .owl-nav button:hover {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
}

.our_value_section .owl-nav button:hover span {
    color: var(--primery);
}


/* ==============Why We Unique Section================ */
.unique_section {
    position: relative;
    padding: 50px 15px 0 15px;
}

.unique_section .section_title {
    margin-bottom: 40px;
}

.unique_section .unique_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--dark-black);
    padding: 80px 0 50px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.unique_section .unique_inner .dotes_blue {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
}

.unique_section .unique_inner .mb_5 {
    margin-bottom: 30px;
}

.unique_section .unique_inner .unique_box {
    background-color: var(--light-yellow);
    border-radius: 20px;
    padding: 25px 25px 170px 25px;
    height: 100%;
    position: relative;
}

.unique_section .unique_inner .unique_box h3 {
    color: var(--primery);
}

.unique_section .unique_inner .unique_box .text {
    min-height: 120px;
}

.unique_section .unique_inner .unique_box p {
    color: var(--black);
    margin: 0;
}

.unique_section .unique_inner .unique_box img {
    border: 1px solid #dadada;
    border-radius: 20px;
    width: 100%;
}

.unique_section .unique_inner .unique_box .img_block {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 0;
    padding: 20px;
    bottom: 0;
}

/* ===============Testimonial Section Css Start============= */
.testimonial_section {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.testimonial_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.testimonial_inner .dotes_blue {
    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_section .title {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 100%;
    text-align: center;
}

.testimonial_section .title .star {
    display: flex;
    justify-content: center;
    transform: rotate(-3deg);
    margin-bottom: -20px;
}

.testimonial_section .title .star span,
.testimonial_section .testimonial_box .testi_text .star span {
    color: #fc9400;
}

.testimonial_section .title .star .sub_title {
    padding: 2px;
}

.testimonial_section .title .sub_title {
    transform: rotate(-3deg);
    position: relative;
    bottom: -20px;
    z-index: 9;
}

.testimonial_section .title .sub_title::after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 22px;
    height: 22px;
    background-image: url(../images/bigstar_dark.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial_section .title .sub_title {
    color: var(--bg-white);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background-color: var(--primery);
}

.testimonial_box {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    gap: 60px;
}

.testimonial_box .testi_img {
    width: 255px;
    position: relative;
}

.testimonial_box .testi_img .play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.testimonial_box .testi_img .play_icon img {
    width: 80px;
    aspect-ratio: 1/1;
    opacity: 0.9;
}

.testimonial_box .testi_img .user_img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial_box .testi_text {
    width: calc(100% - 315px);
}

.testimonial_box .testi_text .star {
    display: flex;
}

.testimonial_box .testi_text p {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
}

.testimonial_box .user_info {
    display: flex;
    gap: 5px;
}

.testimonial_box .user_info h3 {
    margin: 0;
    /*color: var(--text-white);*/
}

.testimonial_box .user_info span {
    font-size: 15px;
}

.testimonial_inner .client_logo_slider {
    margin-top: 90px;
    position: relative;
}

.testimonial_inner .client_logo_slider .img {
    background-color: var(--bg-white);
    width: 200px;
    height: 100px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: solid 1px var(--light-greay);
}

.testimonial_inner .client_logo_slider .img img {
    width: 150px;
}


/* -----------Meet Our Team Section Css---------- */
.experts_team_section {
    margin-top: 50px;
    position: relative;
    border-bottom: 1px solid rgba(122, 61, 247, .2);
}

.experts_team_section .section_title {
    margin-bottom: 40px;
}

.experts_team_section .col-md-4 {
    padding-left: 25px;
    padding-right: 25px;
}

.experts_team_section .experts_box {
    position: relative;
    text-align: center;
    padding: 10px 10px 30px 10px;
    border-radius: 20px;
    background-color: transparent;
    transition: .4s all;
}

.experts_team_section .experts_box img {
    margin-bottom: 30px;
    max-width: 100%;
    border-radius: 20px;
}

.experts_team_section .experts_box .text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    transition: .4s all;
    margin: 0;
}

.experts_team_section .experts_box .text span {
    color: var(--black);
}

.experts_team_section .experts_box .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    opacity: 0;
}

.experts_team_section .experts_box .social_media a {
    display: block;
    width: 33px;
    height: 33px;
    border: 1px solid #CCCCE2;
    border-radius: 50px;
    text-align: center;
    line-height: 31px;
    color: var(--text-white);
    margin: 0 5px;
    transition: .4s all;
    font-size: 15px;
}

.experts_team_section .experts_box .social_media a:hover {
    border-color: var(--bg-white);
    background-color: var(--bg-white);
    color: var(--dark-black);
}

.experts_team_section .experts_box:hover {
    background-color: var(--dark-black);
    box-shadow: 0 4px 10px #EDE9FE;
}

.experts_team_section .experts_box:hover h3 {
    color: var(--text-white);
}

.experts_team_section .experts_box:hover span {
    color: var(--text-white);
}

.experts_team_section .experts_box:hover .social_media {
    opacity: 1;
}

/* ===============FAQ Section Css Start============ */
.faq_section {
    margin-top: 30px;
}

.faq_section .section_title {
    margin-bottom: 50px;
}

.faq_section .nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
    border: none;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active,
.faq_section .nav-tabs .nav-link:hover,
.faq_section .nav-tabs .nav-link {
    border: none;
    margin: 0;
}

.faq_section .nav-tabs .nav-item {
    position: relative;
}

.faq_section .nav-tabs .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: -1;
}

.faq_section .nav-tabs .nav-item button {
    background-color: #fff;
    padding: 10px 36px;
    border-radius: 10px;
    font-weight: 500;
}

.faq_section .nav-tabs .nav-item:first-child:before {
    border-radius: 10px 0 0 10px;
}

.faq_section .nav-tabs .nav-item:last-child:before {
    border-radius: 0 10px 10px 0;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active {
    background: var(--gradient);
    color: #fff;
}

.faq_section .accordion {
    margin-bottom: -20px;
}

.faq_section .card {
    border: none;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
}

.faq_section .card .card-header {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
}

.faq_section .card .card-header button {
    width: 100%;
    text-align: left;
    color: var(--primery);
    text-decoration: none;
    padding: 0;
    font-weight: 700;
    position: relative;
    padding-right: 72px;
    font-size: 20px;
}

.faq_section .card .card-header button.collapsed {
    color: #000;
}

.faq_section .card .card-header button:focus {
    outline: none;
    box-shadow: none;
}

.faq_section .card .card-header button .icons i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--dark-black);
}

.faq_section .card .card-header button.collapsed .icons .icofont-minus,
.faq_section .card .card-header button .icons .icofont-plus {
    display: none;
}

.faq_section .card .card-header button .icons .icofont-minus,
.faq_section .card .card-header button.collapsed .icons .icofont-plus {
    display: block;
}

.faq_section .card .card-body {
    padding-top: 0;
}

/* =======================Our App Download Section Css Start======================= */
.download_app {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.download_app .task_block {
    max-width: 1370px;
    margin: 0 auto;
    background: var(--gradient);
    padding: 0 150px;
    position: sticky;
    z-index: 99;
    border-radius: 30px;
    overflow: hidden;
}

.download_app .title_badge {
    background: var(--bg-white);
    color: var(--black);
}

.download_app .frame_img {
    text-align: right;
    margin-top: 70px;
}

.download_app .frame_img img {
    max-width: 100%;
}

.download_app .frame_img::before {
    content: "";
    position: absolute;
    right: -4%;
    bottom: -5%;
    transform: rotate(-8deg);
    width: 85%;
    aspect-ratio: 1/1;
    background-color: var(--bg-white);
    z-index: -5;
    border-radius: 30px;
}

.download_app .dotes_blue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60%;
}

.download_app .task_block .row {
    align-items: center;
}

.download_app .task_block .section_title {
    text-align: left;
}

.download_app .app_btn {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.download_app .app_btn li a {
    display: block;
    padding: 13px 30px;
    background-color: var(--bg-white);
    border: none;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.download_app .app_btn li:last-child {
    margin-left: 15px;
}

.download_app .app_btn li a img {
    transition: .4s all;
    height: 36px;
}

/* =========Priicing Page Css Start============ */
.pricing_page_block {
    position: relative;
    padding-top: 80px;
    margin-top: 130px;
}

.pricing_page_block::before,
.pricing_page_block::after {
    /*content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-image: url(../images/yellow_dotes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 80%;
    background-position: center;
    z-index: -1;*/
}

.pricing_page_block .table_content {
    background-color: var(--bg-white);
    border-radius: 20px;
    margin-top: 50px;
}

.table_content .pricing_table {
    display: flex;
}

.table_content .pricing_table .pricing_block {
    width: 25%;
}

.table_content .pricing_table .pricing_block .pricing_title {
    padding: 50px 0 50px 30px;
    min-height: 295px;
}

.table_content .pricing_table .pricing_block .pricing_title h3 {
    margin: 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing {
    padding: 25px 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primery);
    margin: 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing span {
    font-size: 15px;
    margin-left: -10px;
    color: var(--primery);
    font-weight: 400;
}

.table_content .pricing_table .mobile_text {
    display: none;
}

.table_content .pricing_table p {
    margin: 0;
}

.table_content .pricing_table ul li {
    padding: 15px 5px 15px 30px;
    border-top: 1px solid #e2dcd1;
}

.table_content .pricing_table .pricing_block ul li:last-child {
    border-bottom: 1px solid #e2dcd1;
}

.table_content .pricing_table .pricing_block .features li p {
    font-weight: 700;
}

.table_content .pricing_table .pricing_block ul li p .icofont-close-circled {
    color: var(--red-color);
}

.table_content .pricing_table .pricing_block ul li p .icofont-check-circled {
    color: var(--primery);
}

.table_content .bottom_text {
    padding: 25px 15px;
}

.table_content .bottom_text p {
    margin: 0;
}

.table_content .bottom_text p a {
    color: var(--primery);
    text-decoration: underline;
    font-weight: 700;
    transition: .4s all;
}

.table_content .bottom_text p a:hover {
    color: var(--dark-black);
}

/* =============Our Resource Section=============== */
.our_resource {
    position: relative;
    padding: 80px 0 40px 0;
    margin-top: 110px;
}

.our_resource .section_title {
    text-align: left;
}

.our_resource .mail_block {
    margin: 0 auto;
    background-color: var(--dark-black);
    padding: 70px 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.our_resource .mail_block .dotes_blue {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.our_resource .mail_block .dotes_blue img {
    width: 100%;
}

.our_resource .mail_block .text {
    position: relative;
    z-index: 2;
    text-align: center
}

.our_resource .mail_block .icon {
    display: block;
    margin-bottom: 20px;
}

.our_resource .mail_block h3 {
    font-size: 26px;
}

.our_resource .mail_block form .form-group {
    max-width: 100%;
    position: relative;
    margin-bottom: 5px;
}

.our_resource .mail_block form .form-group .form-control {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-white);
    border-radius: 10px;
    min-height: 60px;
    color: var(--dark-black);
    font-weight: 500;
}

.our_resource .mail_block form .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--gradient);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

.our_resource .mail_block form .form-group button:hover {
    background: var(--gradient-reverce);
    color: var(--text-white);

}

.our_resource .mail_block form .note {
    color: #7a7a7a;
    text-align: left;
    margin: 0;
}

/* ===========Articles Section Start===================== */
.articles_section {
    position: relative;
}

.articles_section .section_title {
    text-align: left;
}

.articles_section .section_title h2 {
    font-size: 35px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #cfcbc4;
}

.articles_section .filter_tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 50px 0;
}

.articles_section .filter_tags li a {
    display: block;
    padding: 10px 22px;
    background-color: var(--bg-white);
    border-radius: 10px;
    color: var(--text-greay);
    transition: .4s all;
}

.articles_section .filter_tags li a:hover,
.articles_section .filter_tags li a.active {
    background: var(--gradient);
    color: var(--text-white);
}

.blog_listings .listing_block {
    display: flex;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--bg-white);
}

.blog_listings .listing_block:not(:last-child) {
    margin-bottom: 40px;
}

.blog_listings .listing_block .img {
    width: 350px;
}

.blog_listings .listing_block .img img {
    width: 100%;
    border-radius: 20px;
}

.blog_listings .listing_block .blog_text {
    width: calc(100% - 600px);
    padding: 0 15px 0 60px;
}

.blog_listings .listing_block .blog_text .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--primery);
    border: 1px solid var(--primery);
    padding: 2px 20px;
    border-radius: 100px;
}

.blog_listings .listing_block .blog_text h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 25px 0;
}

.blog_listings .listing_block .blog_text h2 a {
    color: var(--dark-black);
}

.blog_listings .listing_block .blog_text h2 a:hover {
    color: var(--primery);
}

.blog_listings .listing_block .blog_text a {
    font-weight: 700;
    color: var(--primery);
    transition: .4s all;
}

.blog_listings .listing_block .blog_text a:hover {
    color: var(--dark-black);
}

.blog_listings .listing_block .authore_info {
    width: 250px;
}

.blog_listings .listing_block .authore_info {
    width: 250px;
}

.blog_listings .listing_block .authore_info .blog_info {
    display: flex;
    flex-wrap: wrap;
}

.blog_listings .listing_block .authore_info .blog_info li {
    position: relative;
    padding: 0 10px 0 15px;
    font-size: 15px;
}

.blog_listings .listing_block .authore_info .blog_info li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--black);
    border-radius: 10px;
    left: 0;
    position: absolute;
    top: calc(50% - 2.5px);
}

.blog_listings .listing_block .authore_info .avtar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.blog_listings .listing_block .authore_info .avtar img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100px;
}

.blog_listings .listing_block .authore_info .avtar .text {
    width: calc(100% - 60px);
}

.blog_listings .listing_block .authore_info .avtar .text h3 {
    margin-bottom: 0;
    font-size: 18px;
}


.blog_listings .listing_block .authore_info .avtar .text span {
    font-size: 14px;
}

.pagination_block {
    padding: 0 15px;
    margin: 50px 0 0 0;
}

.pagination_block ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination_block ul li a {
    display: block;
    padding: 10px 15px;
    background-color: var(--bg-white);
    color: var(--dark-black);
    border-radius: 5px;
    transition: .4s all;
    line-height: 1;
}

.pagination_block ul li .prev,
.pagination_block ul li .next {
    padding: 10px 20px;
}

.pagination_block ul li a:hover,
.pagination_block ul li a.active {
    background-color: var(--primery);
    color: var(--text-white);
}

/* =============Blog Single Css Start==================== */

.blog_detail_section {
    position: relative;
    padding: 80px 0 50px 0;
    margin-top: 130px;
}

.blog_head {
    margin-bottom: 45px;
}

.blog_head .tags_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_head .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--primery);
    border: 1px solid var(--primery);
    padding: 2px 20px;
    border-radius: 100px;
    background-color: var(--bg-white);
}

.blog_head .tags_info ul {
    display: flex;
    align-items: center;
}

.blog_head .tags_info ul li {
    position: relative;
    padding: 0 10px 0 15px;
    font-size: 15px;
}

.blog_head .tags_info ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--black);
    border-radius: 10px;
    left: 0;
    position: absolute;
    top: calc(50% - 2.5px);
}

.blog_head h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 15px 0 30px 0;
}

.blog_head .avtar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.blog_head .avtar img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100px;
}

.blog_head .avtar .text {
    width: calc(100% - 60px);
}

.blog_head .avtar .text h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.blog_head .avtar .text span {
    font-size: 14px;
}

.blog_body .img {
    margin-bottom: 40px;
}

.blog_body .img img {
    width: 100%;
    border-radius: 20px;
}

.blog_body .listings {
    padding-left: 30px;
    margin: 30px 0;
}

.blog_body .listings li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.blog_body .listings li .icon {
    color: var(--primery);
}

.blog_body .listings li p {
    margin: 0;
}

.blog_body h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog_body .yt_video {
    margin: 30px 0;
}

.blog_body .yt_video iframe {
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 20px;
}

.blog_body .highlight_text {
    padding: 10px 0 10px 30px;
    border-left: 5px solid var(--primery);
    margin: 30px 0;
}

.blog_body .highlight_text h3 {
    font-weight: 600;
    line-height: 1.5;
}

.blog_body .social_media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.blog_body .social_media li a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--dark-black);
    background-color: var(--dark-black);
    border-radius: 100px;
    color: var(--text-white);
    display: block;
    text-align: center;
    line-height: 35px;
    transition: .4s all;
}

.blog_body .social_media li a:hover {
    background-color: var(--bg-white);
    color: var(--dark-black);
}


/* comment section Css Start */
.comment_section .section_title h2 {
    font-size: 35px;
    text-align: left;
    border-top: 2px solid var(--greay);
    padding-top: 30px;
}

.comment_section ul {
    margin-top: 30px;
}

.comment_section ul li {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--greay);
}

.comment_section ul li:last-child {
    border-bottom: 1px solid var(--greay);
}

.comment_section ul li.replay_comment {
    margin-left: 110px;
}

.comment_section ul li .authore_info {
    display: flex;
    align-items: center;
    width: 260px;
}

.comment_section ul li .authore_info .avtar {
    width: 88px;
    margin-right: 20px;
}

.comment_section ul li .authore_info .avtar img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}

.comment_section ul li .authore_info .text {
    width: calc(100% - 108px);
}

.comment_section ul li .authore_info .text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-purple);
}

.comment_section ul li .authore_info .text span {
    font-size: 14px;
}

.comment_section ul li .comment {
    width: calc(100% - 310px);
    margin-left: 50px;
}

.comment_section ul li .comment p {
    margin-bottom: 0;
}

.comment_form_section .section_title {
    text-align: left;
}

.comment_form_section .section_title h2 {
    font-size: 35px;
}

.comment_form_section form .form-group {
    margin-bottom: 30px;
}

.comment_form_section form .form-group .form-control {
    border-radius: 10px;
    border: 1px solid var(--greay);
    color: var(--dark-black);
    height: 60px;
    padding: 10px 20px;
}

.comment_form_section form .form-group .form-control::placeholder {
    color: var(--dark-black);
}

.comment_form_section form .form-group textarea.form-control {
    min-height: 135px;
}

.comment_form_section form .puprple_btn {
    padding: 9px 50px;
}

/* ==============Contact Us page Css Start==================== */
.contact_section {
    position: relative;
    padding: 80px 0 50px 0;
    margin-top: 130px;
}

.contact_section::before,
.contact_section::after {
    /*content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
    background-image: url(../images/yellow_dotes_tr.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
    background-position: center;
    z-index: -1;*/
}

.contact_section .section_title {
    margin-bottom: 50px;
}

.contact_listing {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.contact_listing .icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
}

.contact_listing li .lable {
    display: block;
    line-height: 1;
}

.contact_listing li a {
    font-weight: 700;
    font-size: 20px;
    transition: .4s all;
}

.contact_form {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.contact_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 75px 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.contact_form .dotes_blue {
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
}

.contact_form .section_title {
    margin-bottom: 50px;
}

.contact_form form .form-group {
    margin-bottom: 30px;
}

.contact_form form .form-group .form-control {
    border-radius: 10px;
    border: 1px solid #636778;
    color: var(--black);
    height: 60px;
    padding: 10px 20px;
    background-color: var(--light-yellow);
}

.contact_form form .form-group .form-control::placeholder {
    color: var(--black);
}

.contact_form form .form-group textarea.form-control {
    min-height: 135px;
}

.contact_form form .form-group select {
    appearance: none;
    background-image: url("../images/rounded-down.svg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px;
}

.contact_form form .puprple_btn {
    padding: 9px 50px;
}

.contact_form form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-greay);
}

.coustome_checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 5px;
    text-align: left;
}

.coustome_checkbox input {
    width: 15px;
    height: 15px;
}

.coustome_checkbox label {
    color: #afafaf;
    margin: 0;
    font-size: 16px;
}

.coustome_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 11px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid #636778;
}

.coustome_checkbox input:checked~.checkmark {
    background-color: #636778;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.coustome_checkbox input:checked~.checkmark:after {
    display: block;
}

.coustome_checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.map_block .container {
    max-width: 1400px;
}

.map_block .container iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

/* ===========SignUp Section Css Start=============== */
.signup_section {
    padding: 75px 0;
}

.signup_section .top_part {
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.signup_section .top_part .back_btn {
    position: absolute;
    left: 0;
}

.signup_section .form_block {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 20px;
}

.signup_section .form_block .form_side {
    width: 50%;
    text-align: left;
    padding: 15px 100px;
}

.signup_section .form_block .form_side .section_title {
    text-align: left;
    margin-bottom: 50px;
}

.signup_section .form_block .form_side .section_title h2 {
    font-size: 35px;
}

.signup_section .form_block .form_side .section_title .title_badge {
    font-size: 14px;
}

.signup_section .form_block .form_side .section_title p {
    font-weight: 500;
}

.signup_section .form_block .form_side form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999ca6;
    padding-left: 0;
}

.signup_section .form_block .form_side form .form-group {
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .form-control::placeholder {
    color: var(--dark-black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .form-control:focus {
    box-shadow: none;
    color: var(--primery);
    border-color: var(--primery);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .forgate_check a {
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox {
    padding-top: 0;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox label {
    font-size: 14px;
    color: var(--dark-black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check .checkmark {
    top: 5px;
    border-radius: 4px;
}

.signup_section .form_block .coustome_checkbox input:checked~.checkmark {
    background-color: var(--primery);
    border-color: var(--primery);
}

.signup_section .form_block .form_side .puprple_btn,
.signup_section .form_block .form_side .btn_block {
    width: 100%;
}

.signup_section .form_block .form_side .google_btn {
    width: 100%;
    text-align: center;
    border-radius: 50px;
    color: var(--black);
    border: 1px solid var(--dark-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 20px 0 30px 0;
}

.signup_section .form_block .form_side .google_btn img {
    height: 20px;
    margin-right: 10px;
}

.signup_section .form_block .form_side .google_btn:hover {
    border-color: var(--primery);
}

.signup_section .form_side .sign_in_here p {
    margin: 0;
    color: #999ca6;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_side .sign_in_here p a {
    color: var(--primery);
    text-decoration: underline;
}

.signup_section .form_side .sign_in_here p a:hover {
    color: var(--dark-black);
}

.signup_section .form_block .side_screen {
    width: 50%;
    background: var(--gradient);
    padding: 75px 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.signup_section .form_block .side_screen .dotes_blue {
    position: absolute;
    top: -45%;
    left: 50%;
    transform: translateX(-50%);
}

.signup_section .form_block .side_screen .left_icon {
    position: absolute;
    left: 70px;
    bottom: 150px;
    z-index: 9999;
}

.signup_section .form_block .side_screen .right_icon {
    position: absolute;
    right: 50px;
    top: 120px;
}

.signup_section .form_block .side_screen .left_icon img,
.signup_section .form_block .side_screen .right_icon img {
    /*filter: invert(1);*/
}

.signup_section .form_block .side_screen .scrren {
    text-align: center;
    position: relative;
    z-index: 9;
}

.signup_section .form_block .side_screen .scrren img {
    max-width: 100%;
}

.signup_section .form_block .side_screen .scrren::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) rotate(-8deg);
    width: 380px;
    height: 380px;
    background-color: var(--bg-white);
    z-index: -5;
    border-radius: 30px;
}

/* =========================
   HOME HEADER
========================= */

/* 1. จัดการพื้นหลัง Header เป็นสีม่วงไล่เฉด */
/* --- 1. สำหรับทุกหน้าจอ: ตั้งค่า Header สีม่วงไล่เฉด --- */
.home_page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #8e44ad 0%, #6c5ce7 50%, #a29bfe 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* --- 2. สำหรับหน้าจอคอมพิวเตอร์ (Desktop) --- */
@media (min-width: 992px) {
    .home_page .navbar-nav .nav-link {
        color: #ffffff !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .home_page .lang_btn {
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        background: transparent !important;
    }
}

/* --- 3. สำหรับหน้าจอมือถือ (Mobile Menu) แก้ไขจุดที่เสีย --- */
@media (max-width: 991px) {

    /* กล่องเมนูสีขาว */
    .home_page .navbar-collapse {
        background: #ffffff !important;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* ตัวอักษรเมนูในมือถือ ต้องเป็นสีเข้ม (เพื่อให้อ่านออกบนพื้นขาว) */
    .home_page .navbar-nav .nav-link {
        color: #333333 !important;
        border: none !important;
        padding: 12px 0 !important;
    }

    /* ปุ่มเปลี่ยนภาษาในมือถือ (แก้ก้อนม่วงฟุ้ง) */
    .home_page .lang_btn {
        color: #6c5ce7 !important;
        /* ตัวหนังสือสีม่วงเข้ม */
        border: 1px solid #6c5ce7 !important;
        /* ขอบสีม่วงเข้ม */
        background: #ffffff !important;
        /* พื้นหลังปุ่มขาว */
        box-shadow: none !important;
        text-shadow: none !important;
        display: inline-block !important;
        margin-top: 10px;
        border-radius: 20px !important;
    }
}

/* --- 4. ปรับปุ่มเมนู Hamburger และตัวกากบาท (X) --- */
.home_page .toggle-bar,
.home_page .toggle-bar::before,
.home_page .toggle-bar::after {
    background-color: #000000 !important;
}

/* ลบเงาสีม่วงที่ฟุ้งผิดที่ออกให้หมด */
.home_page .lang_btn,
.home_page .nav-link {
    text-shadow: none !important;
    box-shadow: none !important;
}

/* =========================
   INNER PAGE HEADER
========================= */

/* --- 1. พื้นหลัง Header (น้ำเงิน-ฟ้า-ขาว) --- */
.inner_page .site-header {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #559ce7 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* --- 2. ตัวอักษรเมนูหน้าจอคอม (Desktop) --- */
@media (min-width: 992px) {
    .inner_page .navbar-nav .nav-link {
        color: #ffffff !important;
        /* บนพื้นน้ำเงินใช้สีขาว */
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/* --- 3. แก้ปัญหาตัวหนังสือหายในมือถือ (Mobile) --- */
@media (max-width: 991px) {

    /* ปรับแต่งกล่องเมนูขาว */
    .inner_page .navbar-collapse {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-top: 15px !important;
    }

    /* เปลี่ยนตัวหนังสือในกล่องขาวให้เป็นสีน้ำเงินเข้ม (จะได้ไม่กลืน) */
    .inner_page .navbar-nav .nav-link {
        color: #1e3c72 !important;
        /* สีน้ำเงินเข้ม */
        border-bottom: 1px solid #f0f4f8 !important;
        /* เส้นคั่นบางๆ */
        font-weight: 500 !important;
    }

    /* ปุ่ม TH | EN ในมือถือ */
    .inner_page .lang_btn {
        color: #1e3c72 !important;
        border: 1px solid #1e3c72 !important;
        margin-top: 10px;
    }
}

/* --- 4. ปุ่มเปลี่ยนภาษาหน้าจอคอม (Desktop) --- */
@media (min-width: 992px) {
    .inner_page .lang_btn {
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
    }
}

/* --- 5. ปุ่ม X (Close) ให้เป็นสีขาวเสมอ --- */
.inner_page .navbar-toggler {
    border: 1px solid #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.inner_page .navbar-toggler-icon,
.inner_page .navbar-toggler span,
.inner_page .navbar-toggler i {
    filter: brightness(0) invert(1) !important;
    /* บังคับให้เป็นสีขาว */
    color: #ffffff !important;
}

/* =================================
   LANGUAGE SWITCH
================================= */

.lang_switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang_btn {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    transition: .3s;
}

.lang_btn:hover {
    background: #fff;
    color: #6c5ce7;
}


/* inner page language */

.inner_page .lang_btn {
    border: 1px solid #ff00f2;
    color: #333333;
}

.inner_page .lang_btn:hover {
    background: #6c5ce7;
    color: #fff;
}

/* =================================
   FLOAT ANIMATION
================================= */

@keyframes float {

    0% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-15px);
    }

    100% {
        transform: rotate(-8deg) translateY(0);
    }

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

}

/* =================================
   MOBILE LANGUAGE
================================= */

@media (max-width:991px) {

    .lang_switch {
        margin-top: 20px;
        display: flex;
        gap: 10px;
    }

    .lang_btn {
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid #f700ff;
        background: #ffffff;
        color: #000;
    }

}

/* ==============================
   INNER PAGE DROPDOWN FIX
============================== */

.inner_page .has_dropdown .sub_menu {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inner_page .has_dropdown .sub_menu ul li a {
    color: #333;
}

.inner_page .has_dropdown .sub_menu ul li a:hover {
    color: #6c5ce7;
    background: #f7f7f7;
}

.inner_page .drp_btn i {
    color: #333;
}

/* ===============================
   INNER PAGE DROPDOWN HOVER FIX
================================ */

.inner_page .sub_menu ul li a {
    color: #333;
    /* สีปกติ */
}

.inner_page .sub_menu ul li a:hover {
    color: #6c5ce7;
    /* สีตอน hover */
    background: #f5f5f5;
    /* optional */
}

.inner_page .sub_menu ul li a:hover {
    color: #6c5ce7 !important;
}

/* ===== INNER PAGE DROPDOWN TEXT FIX ===== */

.inner_page .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    color: #333;
}

.inner_page .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    color: #6c5ce7 !important;
    background: #f5f5f5;
}

/* กัน hover จาก css หลัก */

.inner_page .navbar-expand-lg .navbar-nav .has_dropdown:hover>a {
    color: #333 !important;
}

/* =========================
   FOOTER SECTION
========================= */

.footer_section {
    position: relative;
    padding: 100px 0 30px;
    background: var(--dark-more);
    color: #fff;
    z-index: 2;
}

/* footer container */

.footer_main {
    margin-top: 40px;
}

/* column */

.footer_block {
    margin-bottom: 40px;
}

/* logo */

.footer_logo img {
    height: 100px;
    margin-top: -30px
}

/* company description */

.footer_desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 320px;
}

/* titles */

.footer_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

/* list */

.footer_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer_list i {
    color: #fff;
    font-size: 16px;
}

/* =========================
   FOOTER BOTTOM (SMALLER)
========================= */

.footer_bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ft_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    background: none;
    border-radius: 0;
}

/* copyright text */

.copy_text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* design by */

.design_by p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.design_by a {
    color: #fff;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px) {

    .footer_section {
        padding: 80px 0 30px;
    }

    .footer_desc {
        max-width: 100%;
    }

}

@media (max-width:768px) {

    .ft_inner {
        flex-direction: column;
        text-align: center;
    }

    .footer_block {
        text-align: center;
    }

    .footer_list li {
        justify-content: center;
    }

}

/* apply section spacing */
.apply_section {
    padding-top: 50px;
    padding-bottom: 100px;
}

/* hero title spacing */
.apply_hero {
    text-align: center;
    margin-bottom: 60px;
}

/* feature box */
.apply_section .feature_box {
    text-align: center;
    padding: 40px 30px;
}

.apply_section .feature_box img {
    max-width: 240px;
    margin-top: 20px;
}

/* responsive */
@media (max-width:991px) {

    .apply_section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

}

@media (max-width:767px) {

    .apply_section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .apply_section .feature_box img {
        max-width: 180px;
    }

}

/* spacing section วิธีสมัคร */
.how_apply_section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* remove dashed border */
.steps_block.step_border {
    border: none !important;
}

/* responsive */
@media (max-width:991px) {

    .how_apply_section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

}

@media (max-width:767px) {

    .how_apply_section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

}

/* fix icon size in how it works section */
.how_it_section .steps .icon {
    text-align: center;
    margin-bottom: 20px;
}

.how_it_section .steps .icon img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* tablet */
@media (max-width:991px) {

    .how_it_section .steps .icon img {
        max-width: 100px;
    }

}

/* mobile */
@media (max-width:767px) {

    .how_it_section .steps .icon img {
        max-width: 80px;
    }

}

.loan_example_section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.loan_example_box {
    text-align: center;
    color: #fff;
}

.loan_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.loan_title span {
    font-size: 20px;
    font-weight: 500;
}

.loan_sub {
    margin-bottom: 30px;
    opacity: 0.9;
}

.loan_table_wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loan_table {
    width: 100%;
    border-collapse: collapse;
    color: #333;
}

.loan_table th {
    background: #f3f3f3;
    padding: 12px;
    font-weight: 600;
}

.loan_table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.loan_table tr:hover {
    background: #f7f7ff;
}

.loan_table .total {
    font-weight: 700;
    background: #fafafa;
}

.loan_note {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.85;
}

.loan_example_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.85);
    /* ปรับค่า 0.85 เพื่อเพิ่ม/ลดความมืดของรูป */
    z-index: 1;
}

/* 4. ดันเนื้อหาให้ลอยเหนือ Overlay */
.loan_example_section .container {
    position: relative;
    z-index: 2;
}













.policy_section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: #f7f8ff;
}

.policy_block {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.policy_block h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.policy_block h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy_block p {
    color: #555;
    line-height: 1.8;
}

.policy_block ul {
    padding-left: 20px;
}

.policy_block li {
    margin-bottom: 6px;
}

.policy_section .section_title {
    margin-bottom: 50px;
    text-align: center;
}

.policy_section .section_title h2 {
    font-size: 42px;
    font-weight: 700;
}

.terms_section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: #f6f7ff;
}

.terms_block {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.terms_block h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.terms_block p {
    line-height: 1.8;
    color: #555;
}

.terms_block ul {
    padding-left: 20px;
}

.terms_block li {
    margin-bottom: 8px;
}

.page_terms {
    padding-top: 180px;
    padding-bottom: 100px;
    background: #f6f7ff;
}

.loan_contract_section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #f6f7ff;
}

.legal_card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.legal_card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.legal_card p {
    line-height: 1.8;
    color: #555;
}

.legal_card ul {
    padding-left: 20px;
}

.legal_card li {
    margin-bottom: 8px;
}

.table_responsive {
    overflow-x: auto;
}

.loan_table {
    width: 100%;
    border-collapse: collapse;
}

.loan_table th {
    background: #f4f4f4;
    padding: 12px;
}

.loan_table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

@media (max-width:768px) {

    .loan_contract_section {
        padding-top: 120px;
    }

    .legal_card {
        padding: 25px;
    }

}

.copyright_section {
    background: #1b103d;
    padding: 20px 0;
    color: #fff;
}

.copyright_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer_policy_menu a {
    color: #ddd;
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer_policy_menu a:hover {
    color: #fff;
}

.loan-schedule-section {
    margin-top: 40px;
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.schedule-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.loan-table-wrapper {
    overflow-x: auto;
}

.loan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.loan-table thead {
    background: #1f2937;
    color: #fff;
}

.loan-table th {
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.loan-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.loan-table tbody tr:hover {
    background: #f1f5f9;
}

.loan-table .total {
    background: #f3f4f6;
    font-weight: 700;
}

.feature_list li .icon span {
    background: #fff;
    color: #6b6ce6;
}

.faq_section {
    padding: 50px 0;
    background: #f7f8ff;
    margin-top: 0;
}

.faq_section .section_title {
    margin-bottom: 50px;
}

/* SECTION BACKGROUND */

.about_service {
    padding: 0px 0;
    background: linear-gradient(135deg, #7c5cff, #c86dd7);
}


/* TEXT CARD */

.service_text {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* TITLE */

.about_service h3 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about_service h3 span {
    color: #7c5cff;
}


/* SUBTITLE */

.about_service h4 {
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}


/* PARAGRAPH */

.about_service p {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}


/* FEATURE LIST */

.feature_list {
    margin-top: 20px;
}

.feature_list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.feature_list .icon span {
    width: 26px;
    height: 26px;
    background: #7c5cff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 10px;
}

.feature_list .text p {
    color: #333;
    margin: 0;
    font-size: 15px;
}


/* IMAGE CARD */

.about_service .inner_block {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}


/* RESPONSIVE */

@media (max-width:991px) {

    .service_text {
        margin-bottom: 40px;
    }

}

/* ==============================
   HERO BANNER
============================== */

.banner_section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* ==============================
   HERO BACKGROUND IMAGE
============================== */

/* hero image */

.hero_banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay gradient */

.hero_banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(135deg,
            rgba(86, 80, 255, .85),
            rgba(203, 97, 196, .85));
}

/* stars */

.star-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ==============================
   HERO CONTENT
============================== */

/* content */

.banner_section .container {
    position: relative;
    z-index: 3;
}

.banner_text {
    max-width: 520px;
}

/* title */

.banner_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    color: #fff;
}

/* description */

.banner_desc {
    font-size: 18px;
    line-height: 1.8;
    opacity: .95;
    margin-bottom: 35px;
    color: #fff;
}

/* ==============================
   STORE BUTTONS
============================== */

.app_btn {
    display: flex;
    gap: 20px;
    align-items: center;
}

.app_btn li a {
    display: inline-block;
    background: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    transition: 0.3s;
}

.app_btn li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.app_btn img {
    height: 36px;
}

/* ==============================
   HERO IMAGE
============================== */

.banner_image {
    text-align: center;
}

.app_mockup {
    width: 420px;
    max-width: 100%;
    transform: rotate(-8deg);
    animation: heroFloat 4s ease-in-out infinite;
}

/* floating animation */

@keyframes heroFloat {

    0% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-15px);
    }

    100% {
        transform: rotate(-8deg) translateY(0);
    }

}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width:991px) {

    .banner_section {
        padding: 140px 0 80px;
        text-align: center;
    }

    .banner_text {
        margin: 0 auto;
    }

    .banner_title {
        font-size: 36px;
    }

    .banner_desc {
        font-size: 16px;
    }

    .app_btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app_mockup {
        width: 300px;
        margin-top: 40px;
    }

}

/* =========================
   NEWS SECTION
========================= */

.news_section {
    background: #f5f8ff;
}

/* CARD */
.news_card {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

/* hover effect */
.news_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* =========================
   IMAGE
========================= */

.news_img {
    position: relative;
    overflow: hidden;
}

.news_img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .5s;
}

.news_card:hover .news_img img {
    transform: scale(1.07);
}

/* overlay gradient */

.news_img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45),
            transparent);
}

/* =========================
   CONTENT
========================= */

.news_content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news_date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news_content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news_content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* =========================
   READ BUTTON
========================= */

.news_btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #6c63ff, #c86dd7);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    text-decoration: none;
    width: max-content;
}

.news_btn:hover {
    opacity: .9;
    transform: translateX(5px);
}

/* =========================
   COMING SOON CARD
========================= */

.news_card.coming_soon {

    background: linear-gradient(135deg, #6c63ff, #c86dd7);
    color: #fff;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 30px;
    position: relative;

}

.news_card.coming_soon h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news_card.coming_soon p {
    font-size: 14px;
    opacity: .9;
}

/* ICON */
.coming_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* TEXT */
.news_card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news_card p {
    opacity: .9;
    font-size: 14px;
}

/* BADGE */
.coming_badge {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #fff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* subtle glow effect */
.news_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    transform: rotate(25deg);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px) {

    .news_img img {
        height: 200px;
    }

    .news_content h3 {
        font-size: 18px;
    }

}

.hero_section {
    position: relative;
    overflow: hidden;
}

/* รูป hero */

.hero_image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* เนื้อหา */

.hero_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}

/* gradient overlay */

.hero_section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 420px;

    background: linear-gradient(135deg,
            rgba(86, 80, 255, .85),
            rgba(203, 97, 196, .85));
}

.banner_section {
    position: relative;
    padding: 180px 0 140px;
    min-height: 650px;
    overflow: hidden;
    background: none;
}

/* ===== LICENSE SECTION ===== */

/* SECTION */

.license_section_custom {
    padding: 180px 0 140px;
    position: relative;
    background: linear-gradient(135deg, #6a6cff, #c06dd8);
    color: #fff;
}


/* TITLE */

.license_title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.license_title p {
    opacity: .85;
}


/* INFO CARD */

.license_info {
    background: #fff;
    color: #333;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.license_info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.license_list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.license_list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.license_warning {
    background: #fff3cd;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    color: #856404;
}

/* image */

.license_image {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(.2) brightness(.95);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}


.license_badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: linear-gradient(90deg, #ff6ec7, #7873f5);
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
}

/* card */

.license_box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* --- จัดการพื้นที่โดยรวม (ลดระยะห่าง) --- */
.app_section {
    position: relative;
    padding: 60px 0 !important;
    /* ลดจากค่ามาตรฐานเว็บทั่วไป */
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eefe 100%);
    /* พื้นหลังฟ้าอ่อนนุ่มๆ */
    overflow: hidden;
}

/* เอฟเฟกต์แสงฟุ้งจางๆ */
.app_bg_gradient {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(85, 156, 231, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.content_wrapper {
    position: relative;
    z-index: 1;
}

/* --- ปรับรูปภาพ Meetang (ลดขนาดและเพิ่มมิติ) --- */
.app_img_holder {
    position: relative;
    display: inline-block;
}

.app_image_compact {
    max-width: 260px;
    /* ลดขนาดลงให้ดูพอดี ไม่ใหญ่เกินไป */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(30, 60, 114, 0.2));
    transition: transform 0.4s ease;
}

.app_image_compact:hover {
    transform: translateY(-10px) rotate(2deg);
    /* ขยับเล็กน้อยให้ดูมีชีวิต */
}

/* --- ปรับแต่งตัวอักษร --- */
.app_text_box {
    padding-left: 30px;
    /* ระยะห่างระหว่างรูปกับข้อความ */
}

.app_title_new {
    color: #1e3c72;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.app_desc_new {
    color: #5a6d8d;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

/* --- จัดการกลุ่มปุ่ม --- */
.app_btn_new {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    gap: 25px;
    /* เพิ่มช่องว่างระหว่างปุ่มให้ดูไม่เบียด */
    align-items: center;
    flex-wrap: wrap;
    /* ถ้าจอแคบเกินไปให้ปุ่มลงมาบรรทัดใหม่ ไม่ล้นจอ */
}

/* --- ปรับขนาดปุ่มภาพให้ใหญ่เบิ้ม --- */
.app_btn_new img {
    /* ปรับเป็น 120px คือใหญ่ระดับโดดเด่นมาก */
    height: 120px !important;
    width: auto !important;

    border-radius: 15px;
    /* เพิ่มความมนให้ดูทันสมัย */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* เอฟเฟกต์ตอนเม้าส์วาง (ลอยและขยาย) */
.store_hover:hover img {
    transform: scale(1.05) translateY(-8px);
    /* ขยายเล็กน้อยแต่เน้นลอยขึ้นสูง */
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.3);
    filter: brightness(1.15);
    /* สว่างขึ้นอีกนิดให้ดู Active */
}

/* --- ปรับขนาดสำหรับมือถือ (ถ้า 120px ในมือถือจะล้นมาก เลยต้องคุมไว้) --- */
@media (max-width: 768px) {
    .app_btn_new {
        justify-content: center;
        /* จัดกึ่งกลางในมือถือ */
    }

    .app_btn_new img {
        height: 80px !important;
        /* ในมือถือ 80px ก็ถือว่าใหญ่มากแล้วครับ */
    }
}

@media (max-width: 480px) {
    .app_btn_new img {
        height: 70px !important;
        /* จอเล็กจริงๆ ปรับลงมานิดนึงเพื่อความสวยงาม */
    }
}

.dbd_section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #5f5cff, #c75ccc);
    color: #fff;
}

/* star animation layer */

.dbd_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dbd_section .container {
    position: relative;
    z-index: 3;
}

/* content */

.dbd_content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.dbd_content p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 25px;
}

.dbd_list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.dbd_list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.dbd_list .icon {
    width: 26px;
    height: 26px;
    background: #fff;
    color: #5f5cff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 10px;
    font-weight: bold;
}

/* button */

.dbd_btn {
    display: inline-block;
    background: #fff;
    color: #5f5cff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    transition: .3s;
}

.dbd_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

/* card */

.dbd_card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
}

.dbd_card img {
    width: 120px;
    margin-bottom: 15px;
}

.dbd_card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dbd_card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.dbd_number {
    background: #f6f6ff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

.dbd_number strong {
    font-size: 18px;
}

.license_card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.image_box:hover {
    transform: translateY(-5px);
    /* ยกตัวขึ้นตอนชี้ */
}

/* ปรับแต่งสำหรับมือถือ */
@media (max-width: 768px) {
    .license_row_simple {
        gap: 15px;
    }

    .license_col {
        flex: 0 0 100%;
        /* ในมือถือให้กินพื้นที่เต็ม 100% (วางซ้อนกัน) */
        max-width: 100%;
    }
}

/* text watermark */
/* สไตล์ตัวหนังสือลายน้ำ */
.wm-text {
    position: absolute;
    color: rgba(255, 0, 0, 0.45);
    /* สีขาวจางๆ */
    font-size: 40px;
    font-weight: bold;
    white-space: nowrap;
    transform: rotate(-30deg);
    /* เอียงตัวหนังสือ */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    /* เงาบางๆ ช่วยให้เห็นชัดขึ้นบนส่วนที่สว่าง */
    text-transform: uppercase;
}

/* จัดตำแหน่ง 3 จุด */
.wm-1 {
    top: 30%;
    left: 10%;
}

.wm-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
}

.wm-3 {
    bottom: 30%;
    right: 10%;
}

/* หัวข้อสีขาว (จากที่คุณต้องการ) */
.license_main_title {
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.app_btn li a img {
    height: 55px;
    /* ปรับขนาดปุ่มให้มาตรฐาน */
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app_btn li a:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 140, 0, 0.1);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    top: 20%;
    right: -100px;
}

@media (max-width: 991px) {
    .app_title {
        font-size: 2.2rem;
        text-align: center;
    }

    .app_desc {
        text-align: center;
    }

    .app_btn {
        justify-content: center;
    }

    .app_section {
        padding: 60px 0;
    }
}

.license_main_title {
    color: #ffffff !important;
    /* บังคับเป็นสีขาว */
    text-align: center !important;
    /* จัดให้อยู่ตรงกลาง */
    font-weight: 700;
    /* ปรับความหนาให้ดูเด่น */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    /* ใส่เงาเบาๆ ให้ตัวหนังสือดูคมชัดขึ้นบนพื้นน้ำเงิน */
    width: 100%;
    /* ให้ขยายเต็มพื้นที่เพื่อการจัดกึ่งกลางที่เป๊ะ */
    margin-bottom: 20px;
    /* ระยะห่างด้านล่าง */
}

/* --- ส่วนภาพ (Sticky และจำกัดขนาด) --- */
.mt_visual_sticky_wrapper {
    position: sticky;
    top: 50px;
    margin-bottom: 30px;
}

.mt_main_visual {
    width: 100%;
    max-width: 280px !important;
    /* บังคับขนาด Logo ไม่ให้ใหญ่เกินไป */
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
    animation: mtFloating 4s ease-in-out infinite;
}

@keyframes mtFloating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- การจัดการข้อความและหัวข้อ --- */
.mt_main_title {
    color: #1e3c72;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 10px;
}

.mt_description {
    color: #5a6d8d;
    font-size: 16px;
    margin-bottom: 25px;
}

/* --- การ์ดข้อมูล --- */
.mt_card_info {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.mt_card_info h5 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight_blue {
    background: #f8fbff !important;
    border-left: 5px solid #1e3c72;
}

/* --- รายการแบบ List --- */
.mt_benefit_list,
.mt_check_list {
    list-style: none;
    padding: 0;
}

.mt_benefit_list li,
.mt_check_list li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.mt_benefit_list li::before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: 900;
}

.mt_check_list li::before {
    content: "●";
    color: #559ce7;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 2px;
}

/* --- ส่วนการเงิน --- */
.mt_finance_flex {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.mt_fin_box {
    flex: 1;
    min-width: 140px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e1e8f0;
    text-align: center;
}

.mt_fin_box label {
    display: block;
    font-size: 11px;
    color: #888;
    margin: 0;
}

.mt_fin_box strong {
    font-size: 16px;
    color: #1e3c72;
    display: block;
    margin-top: 4px;
}

/* --- Trust Badges & Payments --- */
.mt_trust_badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.badge_item {
    background: #eef4ff;
    color: #1e3c72;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.mt_payment_tags span {
    background: #f0f2f5;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 5px;
    display: inline-block;
}

/* --- Disclaimer --- */
.mt_legal_disclaimer {
    font-size: 12px;
    color: #999;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
    line-height: 1.8;
}

/* --- สำหรับจอคอม --- */
@media (min-width: 768px) {
    .border_right_line {
        border-right: 1px solid #eee;
        padding-right: 20px;
    }
}

/* --- สำหรับมือถือ --- */
@media (max-width: 991px) {
    .mt_main_visual {
        max-width: 220px !important;
    }

    .mt_visual_sticky_wrapper {
        position: relative;
        top: 0;
    }
}

.apply_rich_section .section_title {
    margin-bottom: 0;
}

.apply_intro_text {
    max-width: 860px;
    margin: 18px auto 0;
    font-size: 17px;
    line-height: 1.9;
    color: #5f6475;
}

.apply_top_info {
    margin: 40px 0 50px;
}

.apply_info_box,
.apply_prepare_box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.apply_info_box h3,
.apply_prepare_box h3,
.apply_slider_head h3,
.apply_bottom_card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.apply_info_box>p,
.apply_slider_head p,
.apply_bottom_card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 0;
}

.apply_highlight_list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.apply_highlight_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 16px;
    background: #f7f8ff;
}

.apply_highlight_item .icon {
    font-size: 22px;
    line-height: 1;
    color: #6c63ff;
    margin-top: 2px;
}

.apply_highlight_item .text strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
    color: #222;
}

.apply_highlight_item .text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.apply_prepare_list {
    margin: 20px 0 25px;
    padding: 0;
}

.apply_prepare_list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.apply_prepare_list li i {
    color: #6c63ff;
    font-size: 16px;
    margin-top: 5px;
}

.apply_note_box {
    background: #f7f8ff;
    border-radius: 16px;
    padding: 18px 20px;
}

.apply_note_box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.apply_note_box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.apply_slider_head {
    margin-bottom: 30px;
}

.apply_slider_head p {
    max-width: 760px;
    margin: 10px auto 0;
}

.apply_bottom_note {
    margin-top: 35px;
}

.apply_bottom_card {
    background: linear-gradient(135deg, #f6f8ff, #eef2ff);
    border-radius: 18px;
    padding: 25px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.apply_bottom_card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .apply_top_info {
        margin: 30px 0 40px;
    }

    .apply_info_box,
    .apply_prepare_box {
        margin-bottom: 25px;
    }

    .apply_info_box h3,
    .apply_prepare_box h3,
    .apply_slider_head h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .apply_intro_text {
        font-size: 15px;
        line-height: 1.8;
    }

    .apply_info_box,
    .apply_prepare_box,
    .apply_bottom_card {
        padding: 24px 20px;
    }

    .apply_highlight_item {
        padding: 15px;
    }

    .apply_info_box h3,
    .apply_prepare_box h3,
    .apply_slider_head h3,
    .apply_bottom_card h4 {
        font-size: 21px;
    }
}

/* ลายน้ำแบบโลโก้ */
.watermark_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
}

.license_row_simple {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.license_col {
    display: flex;
    justify-content: center;
}

.image_box {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.watermark_box {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.img_fluid_custom {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ลายน้ำ */
.watermark_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 40px;
    font-weight: 800;
    color: rgb(255, 0, 0);
    background: rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 2;
}

.license_link{
    margin-top: 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:180px;
    padding:14px 26px;
    background:linear-gradient(135deg,#5b8cff 0%, #7aa8ff 50%, #4f7df0 100%);
    color:#fff !important;
    border-radius:14px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    letter-spacing:.2px;
    box-shadow:0 12px 25px rgba(91,140,255,.28);
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

.license_link::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.6s;
}

.license_link:hover{
    color:#fff !important;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(91,140,255,.35);
    background:linear-gradient(135deg,#4f7df0 0%, #6d9dff 50%, #3f6fe6 100%);
}

.license_link:hover::before{
    left:140%;
}

.license_link:active{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(91,140,255,.25);
}