@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #121923;
    --secondary-color: #fff;
    --text-color: #1b1b1b;
    --accent-color: #08d37b;
    --border-color: rgba(0, 0, 0, 0.1);
    --background-color: #F4F6F9;
    --error-color: rgb(230, 87, 87);
    --red-color: #FF0000;
    --green-color: #008000;
    --default-font: "DM Sans", sans-serif;
}

/************************************/
/**** 	   02. General css		 ****/
/************************************/

body {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--default-font);
    color: var(--text-color);
    line-height: 1.6em;
}

p {
    line-height: 1.6em;
    margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--default-font);
    margin-top: 0;
    font-weight: 600;
    color: var(--primary-color);
}

figure {
    display: block;
    margin: 0;
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1250px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.no-gap.row {
    margin-left: 0;
    margin-right: 0;
}

.no-gap.row>* {
    padding-left: 0;
    padding-right: 0;
}

.row.row-equal-height>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* Restoring .row class */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* About Us - Grey */
.about-us {
    padding: 40px 0;
}

/* Work / How it works - White (default body bg is white, but explicit for clarity) */
.work {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

/* Price Section - Grey */
.price-section {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

/* Plan Section - White */
.plan-section {
    padding: 40px 0px;
    background-color: var(--secondary-color);
}

/* Intro Video - Grey */
.intro-video {
    padding: 40px 0;
    background-color: var(--background-color);
}

/* Our Services - White */
.our-services {
    padding: 60px 0 30px;
    background-color: var(--secondary-color);
}

/* Why Choose Us - Grey */
.why-choose-us {
    padding: 40px 0;
    background-color: var(--background-color);
}

/* Exclusive Partners - White */
.exclusive-partners {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

/* Top Exchange - Grey */
.top-exchange {
    padding: 40px 0;
    background-color: var(--background-color);
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.row>* {
    padding-right: 10px;
    padding-left: 10px;
}

.btn-default {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: 2px solid;
    outline: 0;
    box-shadow: none;
    transition: 0.2s transform;
    text-transform: uppercase;
}

.btn-default::after {
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: #121923;
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: all 0.4s;
    border-radius: 5px;
}

.btn-default:hover {
    color: var(--accent-color);
}

.btn-default:hover::after {
    width: 106%;
    opacity: 1;
}

::-webkit-scrollbar-track {
    background-color: var(--background-color);
    border-left: 1px solid var(--border-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

#magic-cursor {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 24px !important;
    height: 24px !important;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h3 {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: var(--accent-color);
    position: relative;
    margin-bottom: 5px;
    text-transform: capitalize;
    padding: 0 20px;
}

.section-title h3:before,
.section-title h3:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2308d37b'%3E%3Cpath d='M12 2L14.5 9.5L22 12L14.5 14.5L12 22L9.5 14.5L2 12L9.5 9.5L12 2Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title h3:before {
    left: 0;
}

.section-title h3:after {
    right: 0;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.section-title h1,
.section-title h2 {
    font-family: var(--default-font);
    font-size: 42px;
    line-height: 1.2em;
    margin-bottom: 12px;
}

.section-title h1 {
    font-size: 48px;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--accent-color);
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    margin: 0 auto;
    background-color: #121923;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

header.main-header .header-sticky {
    padding: 8px 0;
    position: relative;
    top: 0;
    z-index: 100;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    background: rgba(18, 25, 35, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header.main-header .header-sticky.active .main-menu ul li a {
    color: #fff;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 75px;
}

.navbar-brand h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* Main Menu Centering */
.main-menu {
    font-family: var(--default-font);
    /* Ensure the collapse div takes up available space to allow centering children */
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    /* This helps distribute: Left(Logo is outside), Center(Menu), Right(Btn) */
    align-items: center;
}

/* Ensure navbar-nav is centered */
.navbar-nav {
    justify-content: center;
    width: 100%;
}

.main-menu ul {
    align-items: center;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 10px !important;
    color: var(--primary-color);
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.main-menu ul li a:hover,
.main-menu ul li a.active,
.main-menu ul li a:focus {
    color: var(--accent-color) !important;
}

/* Header Action Button (Login/Dashboard) */
.nav-right-item {
    flex-shrink: 0;
    margin-left: auto;
    /* Push to right if needed, though structure handles it */
}

/* Reverting to default button style by removing specific overrides */


.main-menu ul li a:hover,
.main-menu ul li a.active,
.main-menu ul li a:focus {
    color: var(--accent-color) !important;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    width: 180px;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    background-color: var(--accent-color);
    transition: all .3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--secondary-color);
    padding: 6px 20px !important;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a.active {
    color: var(--secondary-color) !important;
    background-color: #ffffff20;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 15px;
    position: relative;
}

.slicknav_btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 6px;
    padding: 7px 0 0;
    margin: 0;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    height: 3px;
    width: 26px;
    background-color: var(--secondary-color);
    margin: 4px auto;
    border-radius: 4px;
}

.slicknav_icon .slicknav_icon-bar.slicknav_icon-bar {
    content: '\f00d';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
}

.slicknav_menu {
    padding: 0;
    background: var(--accent-color);
}

.slicknav_nav a,
.slicknav_nav .slicknav_row {
    padding: 10px 20px 6px;
    margin: 0px;
}

.slicknav_nav {
    padding-top: 0;
    padding-bottom: 0;
}

.slicknav_nav ul {
    margin: 0;
}

.slicknav_nav li ul li a,
.slicknav_nav li ul li a.slicknav_row {
    margin: 0;
    padding: 10px 30px;
}

.slicknav_nav li ul ul {
    margin-left: 20px;
}

.slicknav_nav li a {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 10px 20px;
    color: var(--secondary-color);
    text-transform: capitalize;
    position: relative;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: #ffffff20;
    border-radius: 0;
    color: var(--secondary-color);
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: 'FontAwesome';
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
}

.navbar-toggle a.slicknav_btn .slicknav_icon span.slicknav_icon-bar {
    transition: 0.1s;
    border-radius: 2px;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
    padding: 50px 0;
    background-size: cover;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero .container {
    position: relative;
    z-index: 2;
}

.hero .section-title {
    margin-bottom: 10px;
    text-align: left;
}

.hero-content-body {
    margin: 0 auto;
    text-align: left;
}

.hero-content-body p {
    font-size: 16px;
    color: var(--primary-color);
}

.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-video .hero-section .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider {
    background: none;
    padding: 0;
    display: block;
    border-bottom: 2px solid #e2ad37;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide {
    position: relative;
    height: 475px;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--secondary-color); */
    z-index: 1;
    opacity: 0.75;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
.hero.hero-slider .hero-slider-layout1 .hero-button-next {
    width: 42px;
    height: 42px;
    background-color: var(--accent-color);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev {
    left: 30px;
    background-image: url(../images/icon-left.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-next {
    right: 30px;
    background-image: url(../images/icon-right.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev:hover,
.hero.hero-slider .hero-slider-layout1 .hero-button-next:hover {
    background-color: var(--accent-color);
    opacity: 0.9;
}

/***************************************/
/**** 	    05. Coin Ticker css	 	****/
/***************************************/

.coin-ticker {
    background: var(--background-color);
    padding: 20px 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.coin-ticker .container-fluid,
.coin-ticker .container-fluid .row>* {
    padding-left: 0;
    padding-right: 0;
}

.coin-ticker .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.scrolling-ticker-box {
    --gap: 60px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 24s linear infinite;
}

.scrolling-content .scrolling-item {
    display: flex;
    align-items: center;
}

.scrolling-content .scrolling-item .icon-box {
    padding-right: 20px;
    padding-left: 2px;
}

.scrolling-content .scrolling-item .icon-box img {
    max-width: 36px;
}

.scrolling-content .scrolling-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: var(--primary-color);
    margin-bottom: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/******************************************/
/****   	 06. About Us css   	   ****/
/******************************************/

.about-us {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

.about-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-images .about-image {
    width: 48.8%;
}

.about-images .about-image figure {
    width: 100%;
    border-radius: 10px;
}

.about-images .about-image figure img {
    width: 100%;
    border-radius: 10px;
}

.about-info-item {
    margin-top: 15px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-info-item .icon-box {
    padding-right: 15px;
}

.about-info-item .icon-box img {
    max-width: 50px;
}

.about-info-item h5 {
    font-size: 22px;
    margin-bottom: 0;
}

.about-content {
    padding-left: 40px;
}

.about-content .about-list-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-content .about-list-item ul li {
    font-size: 16px;
    padding-left: 30px;
    width: 100%;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
}

.about-content .about-list-item ul li:nth-of-type(2n + 2) {
    margin-right: 0;
}

.about-content .about-list-item ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    background: url("../images/icon-checkbox.svg") no-repeat center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

.about-content .about-footer {
    margin-top: 10px;
}

/******************************************/
/****  	    07. How It Works css       ****/
/******************************************/

.how-it-works {
    padding: 50px 0;
    background-color: var(--background-color);
}

.service-item,
.why-choose-us-item,
.download-app-item {
    padding: 20px 15px;
    text-align: center;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.how-it-works-item {
    padding: 40px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.how-it-works-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.how-it-works-item .step-number {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    transition: all 0.4s ease;
}

.how-it-works-item:hover .step-number {
    color: rgba(8, 211, 123, 0.1);
    transform: scale(1.1);
}

.how-it-works-item .icon-box {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.how-it-works-item .icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(8, 211, 123, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.how-it-works-item:hover .icon-box::before {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.how-it-works-item .icon-box img {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.how-it-works-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-item .icon-box,
.why-choose-us-item .icon-box {
    margin-bottom: 30px;
}

.service-item .icon-box img,
.why-choose-us-item .icon-box img {
    width: 80px;
    height: 80px;
}

.how-it-works-item h3,
.service-item h3,
.why-choose-us-item h3,
.download-app-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
    line-height: 1.4;
}

/******************************************/
/****       Features Section css       ****/
/******************************************/

.features-section {
    padding: 40px 0;
    background-color: var(--background-color);
}

.feature-card {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(8, 211, 123, 0.1);
    border-radius: 20px;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .icon-box {
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card .icon-box img {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotate(360deg);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Exclusive Partners Section */
.exclusive-partners {
    padding: 60px 0 0;
    background-color: var(--secondary-color);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.partner-item {
    flex: 0 0 auto;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Ensure consistent card height in row */
.features-section .col-lg-3 {
    margin-bottom: 30px;
}

/******************************************/
/****  	 08. Exclusive Partners css    ****/
/******************************************/

.exclusive-partners {
    padding: 40px 0;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 50px;
    align-items: center;
    justify-content: center;
}

.partners-logos .partner-item img {
    height: 58px;
}

/******************************************/
/****  	    09. Our Services css       ****/
/******************************************/

.our-services {
    padding: 60px 0 30px;
}

.our-services .row .col-lg-4.col-md-6 {
    margin-bottom: 30px;
}

.service-item {
    padding: 40px;
    height: 100%;
}

.service-item.active {
    background: var(--accent-color);
}

.service-item.active p {
    color: var(--primary-color);
}

/******************************************/
/****   	10. Price Section css  	   ****/
/******************************************/
.plan-section {
    padding: 40px 0px;
}

.price-section {
    padding: 40px 0;
}

.price-section .container-fluid,
.price-section .container-fluid .row>* {
    padding-left: 0;
    padding-right: 0;
}

.price-section .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.price-section .section-title {
    padding: 0 15px;
}

.price-carousel.price-carousel-left {
    margin-bottom: 30px;
}

.price-carousel .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.price-carousel .swiper-slide .price-item {
    padding: 20px;
    text-align: center;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-width: 220px;
}

.price-carousel .price-item .icon-box {
    margin-bottom: 20px;
}

.price-carousel .price-item .icon-box img {
    width: 60px;
    height: 60px;
}

.price-carousel .price-item h4 {
    font-size: 22px;
    color: var(--text-color);
}

.price-carousel .price-item p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-carousel .price-item p span {
    font-size: 16px;
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

.price-carousel .price-item p span.price-green {
    color: var(--green-color);
}

.price-carousel .price-item p span.price-red {
    color: var(--red-color);
}

.price-carousel .price-item a {
    padding: 10px 20px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/******************************************/
/****   	 11. Intro Video css   	   ****/
/******************************************/

.intro-video {
    padding: 40px 0;
}

.intro-video-box {
    position: relative;
}

.intro-video-box .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.intro-video-box .video-play-button a {
    display: block;
    position: relative;
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
    animation-delay: .3s;
}

.intro-video-box .video-play-button a img {
    max-width: 80px;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/******************************************/
/****  	    12. Why Choose Us css      ****/
/******************************************/

.why-choose-us {
    padding: 40px 0;
}

/******************************************/
/****  	    13. Download Apss css      ****/
/******************************************/

.download-apps {
    padding: 40px 0;
}

.download-apps-content {
    padding-right: 60px;
}

.download-apps-content .section-title {
    text-align: start;
    margin-bottom: 30px;
}

.download-app-item {
    padding: 50px 30px 0;
    position: relative;
    overflow: hidden;
}

.download-app-item::before {
    content: '';
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    background: url("../images/download-app-item-bg.svg") no-repeat center center;
    background-size: cover;
    width: 310px;
    height: 95px;
    transform: translateX(-50%);
    z-index: -1;
}

.download-app-item a {
    color: var(--accent-color);
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
}

.download-app-item a i {
    font-size: 22px;
    padding-right: 10px;
}

.download-app-img {
    margin-top: 30px;
}

/******************************************/
/****  	  14. Crypto Calculator css    ****/
/******************************************/

.crypto-calculator {
    padding: 0px 0 40px;
}

.crypto-calculator-box {
    background: var(--background-color) url("../images/crypto-calculator-bg.png") no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    padding: 25px 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.crypto-calculator-box .section-title {
    margin-bottom: 30px;
}

.crypto-form-box .form-group {
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.crypto-form-box .form-group select,
.crypto-form-box .form-group input {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    width: 25%;
    background: var(--background-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 10px 0 0 10px;
    padding: 15px 20px;
    color: var(--primary-color);
    min-height: 60px;
}

.crypto-form-box .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: var(--background-color) url("../images/icon-down-arrow.svg") no-repeat center right 10px;
    background-size: 10px;
}

.crypto-form-box .form-group select option {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.crypto-form-box .form-group input {
    background: var(--background-color);
    width: 75%;
    border-radius: 0 10px 10px 0;
    border-width: 1px 1px 1px 0;
}

.crypto-form-box .form-group input::placeholder {
    color: var(--text-color);
}

.crypto-form-box .form-group select:focus,
.crypto-form-box .form-group select:focus-visible,
.crypto-form-box .form-group input:focus,
.crypto-form-box .form-group input:focus-visible {
    outline: none;
    box-shadow: none;
}

.crypto-form-box form button {
    margin-top: 20px;
}

/******************************************/
/****   	 15. Our Team css   	   ****/
/******************************************/

.our-team {
    padding: 40px 0;
    position: relative;
    background-color: var(--background-color);
}

.team-item {
    text-align: center;
}

.team-image-links {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.team-image figure img {
    width: 100%;
}

.team-social-links {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-links {
    opacity: 1;
    bottom: 30px;
}

.team-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social-links ul li {
    margin-right: 10px;
}

.team-social-links ul li:last-child {
    margin-right: 0;
}

.team-social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.team-social-links ul li a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.team-social-links ul li a i {
    font-size: 18px;
}

.team-info {
    margin-top: 15px;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #daa44c;
}

.team-info p {
    margin-bottom: 0;
}

/******************************************/
/****  	    16. Testimonial css        ****/
/******************************************/

.testimonials {
    padding: 40px 0;
}

.testimonials .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.testimonial-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px 15px 5px 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
}

.testimonial-header .author-image {
    padding-right: 20px;
}

.testimonial-header .author-image img {
    max-width: 60px;
    border-radius: 30px;
}

.author-info h3 {
    font-size: 18px;
    margin-bottom: 3px;
}

.author-info p {
    margin-bottom: 0;
    font-size: 14px;
}

/******************************************/
/****  	    17. Latest Posts css       ****/
/******************************************/

.latest-posts {
    padding: 60px 0 100px;
}

.post-featured-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.post-featured-image figure img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
    transform: scale(1.2);
}

.post-featured-image .post-hover-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12192380;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.post-item:hover .post-featured-image .post-hover-button {
    opacity: 1;
}

.post-featured-image .post-hover-button a {
    top: 20px;
    opacity: 0;
    padding: 10px 25px;
    transition: all 0.3s ease-out;
}

.post-item:hover .post-featured-image .post-hover-button a {
    top: 0;
    opacity: 1;
}

.post-body .post-meta ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.post-meta ul li {
    font-size: 16px;
}

.post-body h2 {
    font-size: 22px;
    color: var(--primary-color);
}

.post-body h2 a {
    display: block;
    color: inherit;
}

/******************************************/
/****  	       18. Footer css          ****/
/******************************************/

.main-footer {
    background: #111111;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

.footer-newsletters {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-title {
    display: flex;
    align-items: center;
}

.newsletter-title .icon-box {
    padding-right: 20px;
}

.newsletter-title .icon-box img {
    width: 55px;
    height: 55px;
}

.newsletter-title h2 {
    font-size: 24px;
    margin-bottom: 0;
    padding-right: 100px;
    color: #ffffff;
}

.newsletter-form {
    padding: 5px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form .form-group .form-control {
    background: transparent;
    color: var(--text-color);
    padding: 10px 20px;
    border: 0;
    border-color: transparent;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.newsletter-form .form-group.has-error.has-danger .form-control {
    color: var(--error-color);
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.newsletter-form .form-group .form-control:focus,
.newsletter-form .form-group .form-control:focus-visible,
.newsletter-form button:focus,
.newsletter-form button:focus-visible {
    outline: none;
    box-shadow: none;
}

.newsletter-form .form-group .help-block.with-errors {
    display: none;
}

.newsletter-form .h3.hidden {
    margin: 0;
}

.mega-footer {
    padding: 80px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    max-width: 250px;
}

.footer-about-content p {
    margin-bottom: 25px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-about .footer-social-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-about .footer-social-links ul li {
    margin-right: 20px;
}

.footer-about .footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-about .footer-social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 45px;
    height: 45px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-about .footer-social-links ul li a:hover {
    color: #ffffff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    padding: 0 40px;
}

.footer-title {
    margin-bottom: 20px;
}

.footer-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #b0b0b0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-menu ul li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-menu ul li a {
    display: inline-block;
    color: inherit;
}

.footer-contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact-info-item:last-child {
    margin-bottom: 0;
}

.footer-contact-info-item .icon-box {
    padding-right: 15px;
    color: var(--accent-color);
}

.footer-contact-info-item .icon-box i,
.footer-contact-info-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #b0b0b0;
}

.footer-copyrights {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

.footer-policy-menu {
    text-align: end;
}

.footer-policy-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-policy-menu ul li {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    margin-right: 6px;
}

.footer-policy-menu ul li::before {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    color: rgba(255, 255, 255, 0.1);
    transform: translate(0, -50%);
}

.footer-policy-menu ul li a {
    color: #888888;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-policy-menu ul li a:hover {
    color: var(--accent-color);
}

.footer-policy-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.footer-policy-menu ul li:last-child::before {
    display: none;
}

.footer-policy-menu ul li a {
    color: inherit;
}

/******************************************/
/****     19. About us Page css 	   ****/
/******************************************/

.page-header {
    padding: 50px 0;
    background: url("../images/hero.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #12192399;
    width: 100%;
    height: 100%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    font-size: 42px;
    letter-spacing: 0.02em;
    color: #fff;
}

.page-header-box .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.page-header-box ol li.breadcrumb-item.active {
    font-weight: 600;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.page-header-box ol li.breadcrumb-item a {
    color: #fff;
}

.about-us-page {
    padding: 100px 0 60px;
}

.about-us-page .about-images .about-image:nth-child(2) figure:first-child {
    margin-bottom: 14px;
}

.about-us-page .about-images .about-image:nth-child(2) figure:first-child img {
    max-height: 285px;
    object-fit: cover;
}

.about-footer .about-info-item {
    display: inline-block;
    margin-top: 0;
    padding: 12px 30px;
}

.about-footer .about-info-item h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.about-footer .about-info-item h3 strong {
    font-size: 34px;
    margin-right: 8px;
}

.about-footer .about-info-item h3 strong span {
    color: var(--accent-color);
    margin-right: 1px;
}

.our-benefits {
    padding: 40px 0;
}

.our-benefits-item {
    text-align: center;
    padding: 0 20px;
}

.our-benefits-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.our-benefits-item .icon-box img {
    max-width: 80px;
}

.our-benefits-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.our-benefits-item p {
    margin-bottom: 0;
}

.counter-section {
    padding: 40px 0;
}

.counter-section .container {
    max-width: 1020px;
}

.counter-item {
    text-align: center;
}

.counter-item h3 {
    font-size: 50px;
}

.counter-item p {
    margin-bottom: 0;
}

.our-vision-mission {
    padding: 40px 0;
}

.vision-mission-item {
    padding: 50px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.vision-mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.vision-mission-header .icon-box {
    width: 90px;
    height: 90px;
}

.vision-mission-header .icon-box img {
    max-width: 90px;
}

.vision-mission-header h3 {
    font-size: 40px;
    padding-left: 20px;
    margin-bottom: 0;
    width: calc(100% - 90px);
}

.vision-mission-body p {
    margin-bottom: 0;
}

.about-exclusive-partners {
    padding: 60px 0 100px;
}

/******************************************/
/****  	  21. Blog Archive Page css    ****/
/******************************************/

.blog-archive-page {
    padding: 100px 0;
}

.blog-archive-page .post-item {
    margin-bottom: 40px;
}

.post-pagination {
    margin-top: 20px;
    text-align: center;
}

.post-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--background-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0 4px;
    border-radius: 5px;
    font-family: var(--default-font);
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/******************************************/
/****   	 22. Post Single css  	   ****/
/******************************************/

.post-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.post-meta ul li {
    display: inline-block;
    color: var(--white-color);
}

.post-meta ul li:after {
    content: '/';
    margin-left: 10px;
    margin-right: 6px;
}

.post-meta ul li:last-child::after {
    display: none;
}

.post-meta ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-meta ul li a:hover {
    color: var(--accent-color);
}

.blog-single-page {
    padding: 100px 0 60px;
}

.post-content .post-featured-image {
    margin-bottom: 50px;
}

.post-content .post-featured-image img {
    max-height: 700px;
    object-fit: cover;
}

.post-entry {
    background-color: var(--background-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 50px;
}

.post-entry p {
    font-size: 18px;
}

.post-entry a {
    color: var(--primary-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    margin: 1em 0 0.6em;
}

.post-entry h1 {
    font-size: 50px;
}

.post-entry h2 {
    font-size: 36px;
}

.post-entry h3 {
    font-size: 30px;
}

.post-entry h4 {
    font-size: 24px;
}

.post-entry h5 {
    font-size: 22px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry blockquote {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 60px 30px 90px;
    position: relative;
}

.post-entry blockquote::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: auto;
    background: url("../images/icon-double-quotes-1.svg") no-repeat center center;
    background-size: cover;
    width: 40.78px;
    height: 31.16px;
}

.post-entry blockquote::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    top: auto;
    background: url("../images/icon-double-quotes-2.svg") no-repeat center center;
    background-size: cover;
    width: 40.78px;
    height: 31.16px;
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.post-entry ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7em;
}

.post-entry ul li {
    font-size: 18px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.post-entry ul li:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon-checkbox.svg") no-repeat center center;
    position: absolute;
    left: 0;
    top: 2px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 20px;
    color: var(--primary-color);
}

.post-tags a {
    display: inline-block;
    font-size: 16px;
    padding: 14px 25px;
    color: var(--primary-color);
    background-color: var(--background-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-left: 5px;
    transition: all 0.3s ease-out;
}

.post-tags a:hover,
.post-tags a.active {
    background-color: var(--accent-color);
}

/******************************************/
/****       23. FAQ's Page css 	       ****/
/******************************************/

.faq-page {
    padding: 100px 0 60px;
}

.sidebar-box {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    padding: 10px 0;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box ul li {
    position: relative;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    padding: 20px 35px;
    color: var(--primary-color);
    opacity: 0.6;
    transition: all 0.3s ease-out;
}

.sidebar-box ul li::before {
    content: '\f0da';
    position: absolute;
    top: 50%;
    left: 18px;
    bottom: auto;
    color: var(--accent-color);
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900;
    transform: translateY(-50%);
}

.sidebar-box ul li:last-child {
    border-bottom: none;
}

.sidebar-box ul li:hover,
.sidebar-box ul li.active {
    opacity: 1;
}

.sidebar-box ul li a {
    color: inherit;
}

.faq-accordion {
    padding-left: 60px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header .accordion-button {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    border: none;
    padding: 0 50px 30px 0;
}

.accordion-header .accordion-button::after {
    content: "\2b";
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    color: var(--primary-color);
    background: var(--accent-color);
    width: 25px;
    height: 25px;
    border-radius: 3px;
    border: none;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.accordion-body p {
    padding-right: 50px;
    margin-bottom: 30px;
}

/******************************************/
/****       24. Contact Page css       ****/
/******************************************/

.contact-details {
    padding: 50px 0;
}

.contact-detail-item {
    padding: 40px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-start;
}

.contact-detail-item .icon-box {
    margin-right: 20px;
    padding-top: 2px;
}

.contact-detail-item .icon-box img {
    max-width: 60px;
}

.contact-detail-item .contact-detail-body h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-detail-item .contact-detail-body p {
    margin-bottom: 0;
    color: var(--text-color);
}

.contact-detail-item .contact-detail-body p a {
    color: inherit;
    display: inline-block;
    transition: all 0.3s;
}

.contact-detail-item .contact-detail-body p a:hover {
    color: var(--accent-color);
}

.contact-inquiry-box {
    padding: 50px 0;
    background: var(--background-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-form .form-group .form-control {
    font-size: 16px;
    letter-spacing: 0.02em;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    color: var(--primary-color);
}

.contact-form .form-group .help-block.with-errors ul {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
}

.contact-form .form-group .help-block.with-errors ul li {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--error-color);
}

.contact-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.contact-form .form-group .form-control:focus,
.contact-form .form-group .form-control:focus-visible .contact-form form button:focus,
.contact-form form button:focus-visible {
    outline: none;
    box-shadow: none;
}

.google-location-map .container {
    max-width: 100%;
    padding: 0;
}

.google-map-box {
    line-height: 0;
}

.google-map-box iframe {
    width: 100%;
    height: 550px;
}

/******************************************/
/****   	 25. Team Page css   	   ****/
/******************************************/

.team-page {
    padding: 100px 0;
}

.team-page .row {
    row-gap: 30px;
}

/******************************************/
/****   	 26. 404 Page css   	   ****/
/******************************************/

.not-found-page {
    padding: 100px 0;
}

.page-not-found-box {
    text-align: center;
}

.page-not-found-box h2 {
    font-size: 50px;
    margin: 50px 0 20px;
    letter-spacing: 0.02em;
}

.page-not-found-box p {
    font-size: 20px;
    color: var(--primary-color);
}

/******************************************/
/****   	 27. Responsive css   	   ****/
/******************************************/

@media only screen and (max-width: 1300px) {
    .main-menu ul li a {
        padding: 12px 4px !important;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li a {
        padding: 12px 2px !important;
    }

}

@media only screen and (max-width: 991px) {

    #magic-cursor {
        display: none !important;
    }

    .btn-default {
        padding: 14px 24px;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .section-title h1 {
        font-size: 52px;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .main-menu ul li {
        margin: 0 10px;
    }

    header.main-header .header-sticky {
        padding: 20px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero .section-title {
        margin-bottom: 15px;
        padding: 0 60px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-slide {
        padding: 120px 0;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-button-next,
    .hero.hero-slider .hero-slider-layout1 .hero-button-prev {
        width: 31px;
        height: 31px;
        top: auto;
        bottom: 60px;
        transform: translateY(0);
        border-radius: 23px;
    }


    .hero.hero-slider .hero-slider-layout1 .hero-button-next {
        right: 15px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-button-prev {
        left: 15px;
    }

    .about-images .about-image {
        width: 48.2%;
    }

    .about-info-item {
        margin-top: 25px;
    }

    .about-content {
        padding-top: 30px;
        padding-left: 0;
    }

    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works-item,
    .service-item,
    .why-choose-us-item {
        padding: 30px;
    }

    .how-it-works-item .icon-box,
    .service-item .icon-box,
    .why-choose-us-item .icon-box {
        margin-bottom: 20px;
    }

    .how-it-works-item .icon-box img,
    .service-item .icon-box img,
    .why-choose-us-item .icon-box img {
        width: 60px;
        height: 60px;
    }

    .how-it-works-item h3,
    .service-item h3,
    .why-choose-us-item h3 {
        margin-bottom: 15px;
    }

    .exclusive-partners {
        padding: 40px 0;
    }

    .partners-logos .partner-item:nth-of-type(3n + 3) {
        margin-right: 0;
    }

    .partners-logos .partner-item:nth-of-type(5n + 5) {
        margin-right: 20px;
    }

    .our-services {
        padding: 40px 0 10px;
    }

    .price-section {
        padding: 40px 0;
    }

    .intro-video {
        padding: 40px 0;
    }

    .intro-video-box .video-play-button a img {
        max-width: 70px;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .download-apps {
        padding: 40px 0;
    }

    .download-apps-content {
        padding: 0 20px 20px;
        text-align: center;
    }

    .download-apps-content .section-title {
        text-align: center;
    }

    .download-app-item {
        padding: 40px 30px 0;
    }

    .download-app-item::before {
        width: 360px;
        height: 112px;
    }

    .crypto-calculator {
        padding: 0px 0 40px;
    }

    .crypto-calculator-box {
        padding: 30px;
    }

    .our-team {
        padding: 40px 0 10px;
    }

    .team-item {
        margin-bottom: 30px;
    }

    .team-info {
        margin-top: 20px;
    }

    .testimonials {
        padding: 40px 0;
    }

    .testimonial-item {
        background-size: 40px;
        background-position: 30px 30px;
        padding: 80px 30px 30px 30px;
    }

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 240px;
    }

    .testimonial-header .author-image img {
        max-width: 60px;
    }

    .latest-posts {
        padding: 40px 0;
    }

    .post-item {
        margin-bottom: 40px;
    }

    .post-meta ul {
        margin: 0 0 10px 0;
    }

    .footer-newsletters,
    .mega-footer {
        padding: 40px 0;
    }

    .newsletter-title .icon-box img {
        width: 45px;
        height: 45px;
    }

    .newsletter-title h2 {
        padding-right: 0;
    }

    /* Newsletter Form */
    .newsletter-form {
        margin-top: 30px;
    }

    .footer-about {
        padding-bottom: 10px;
    }

    .footer-links {
        padding: 0;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header-box h1 {
        font-size: 42px;
    }

    .about-us-page {
        padding: 80px 0 40px;
    }

    .about-us-page .about-images .about-image:nth-child(2) figure:first-child {
        margin-bottom: 24px;
    }

    .about-us-page .about-images .about-image:nth-child(2) figure:first-child img {
        max-height: 325px;
    }

    .our-benefits {
        padding: 40px 0;
    }

    .our-benefits-item {
        padding: 0;
    }

    .our-benefits-item .icon-box {
        width: 120px;
        height: 120px;
    }

    .our-benefits-item .icon-box img {
        max-width: 60px;
    }

    .counter-section {
        padding: 40px 0;
    }

    .counter-item h3 {
        font-size: 38px;
    }

    .our-vision-mission {
        padding: 40px 0;
    }

    .vision-mission-item {
        padding: 30px;
    }

    .vision-mission-header .icon-box {
        width: 70px;
        height: 70px;
    }

    .vision-mission-header .icon-box img {
        max-width: 65px;
    }

    .vision-mission-header h3 {
        font-size: 32px;
        width: calc(100% - 70px);
    }

    .about-exclusive-partners {
        padding: 40px 0 80px;
    }

    .services-page {
        padding: 80px 0 10px;
    }

    .serivces-download-apps {
        padding: 40px 0 80px;
    }

    .blog-archive-page {
        padding: 80px 0;
    }

    .blog-single-page {
        padding: 80px 0 40px;
    }

    .post-content .post-featured-image {
        margin-bottom: 40px;
    }

    .post-content .post-featured-image img {
        max-height: 450px;
    }

    .post-entry {
        padding: 40px;
    }

    .post-entry h2 {
        font-size: 34px;
    }

    .post-entry h3 {
        font-size: 28px;
    }

    .post-entry h4 {
        font-size: 22px;
    }

    .post-entry h5 {
        font-size: 20px;
    }

    .post-entry h6 {
        font-size: 18px;
    }

    .faq-page {
        padding: 80px 0 40px;
    }

    .sidebar-box {
        padding: 0;
    }

    .sidebar-box ul li {
        padding: 20px 20px 20px 30px;
    }

    .sidebar-box ul li::before {
        left: 12px;
    }

    .faq-accordion {
        padding-left: 0;
    }

    .contact-details {
        padding: 80px 0 50px;
    }

    .contact-detail-item {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-inquiry-box {
        padding: 80px 0;
    }

    .google-map-box iframe {
        height: 450px;
    }

    .team-page {
        padding: 80px 0 50px;
    }

    .team-page .row {
        row-gap: 0;
    }

    .not-found-page {
        padding: 80px 0;
    }

    .page-not-found-box figure img {
        width: 80%;
    }

    .page-not-found-box h2 {
        font-size: 40px;
        margin: 40px 0 20px;
    }

    .page-not-found-box p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .header-top-area {
        display: none;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-slide {
        height: 150px;
    }

    .btn-default {
        padding: 12px 24px;
    }

    .section-title h3 {
        font-size: 14px;
        padding-left: 22px;
    }

    .section-title h3:before {
        top: 1px;
        width: 16px;
        height: 16px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title h1 {
        font-size: 24px;
    }

    header.main-header .header-sticky {
        padding: 10px 0;
    }

    header.main-header .header-sticky.active {
        padding: 10px 0;
    }

    .navbar-brand img {
        max-height: 85px;
    }

    .slicknav_btn {
        width: 36px;
        height: 36px;
        padding: 6px 0 0;
    }

    .slicknav_icon .slicknav_icon-bar {
        width: 24px;
    }

    .slicknav_nav li a {
        font-size: 16px;
        border-bottom: 1px solid #dddddd69;
    }

    .slicknav_nav a,
    .slicknav_nav .slicknav_row {
        padding: 10px 20px 0;
    }

    .slicknav_arrow:after {
        top: 10px;
    }

    .hero .section-title {
        padding: 0;
    }

    .hero-content-body p {
        font-size: 16px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-slide {
        padding: 0;
    }

    .coin-ticker {
        padding: 15px 0;
    }

    .scrolling-ticker-box {
        --gap: 20px;
    }

    .scrolling-content .scrolling-item .icon-box {
        padding-right: 15px;
    }

    .scrolling-content .scrolling-item .icon-box img {
        max-width: 32px;
    }

    .scrolling-content .scrolling-item p {
        font-size: 16px;
    }

    .about-images {
        display: block;
    }

    .about-images .about-image {
        width: 100%;
    }

    .about-images .about-image figure {
        margin-bottom: 20px;
    }

    .about-info-item {
        margin-bottom: 0;
    }

    .about-info-item .icon-box img {
        max-width: 40px;
    }

    .about-info-item h5 {
        font-size: 20px;
    }

    .about-content .about-list-item ul {
        display: block;
    }

    .about-content .about-list-item ul li {
        width: 100%;
        margin-right: 0;
    }

    .about-content .about-footer {
        margin-top: 30px;
    }

    .how-it-works {
        padding: 30px 0 10px;
    }

    .how-it-works-item,
    .why-choose-us-item {
        margin-bottom: 20px;
    }

    .how-it-works-item h3,
    .service-item h3,
    .why-choose-us-item h3,
    .download-app-item h3 {
        font-size: 20px;
    }

    .exclusive-partners {
        padding: 30px 0;
    }

    .partners-logos {
        gap: 30px;
    }

    .partners-logos img {
        max-width: 140px;
    }

    .our-services {
        padding: 30px 0 10px;
    }

    .our-services .row .col-lg-4.col-md-6 {
        margin-bottom: 20px;
    }

    .price-section {
        padding: 30px 0;
    }

    .price-carousel .swiper-slide .price-item {
        padding: 20px;
    }

    .price-carousel .price-item .icon-box img {
        width: 40px;
        height: 40px;
    }

    .price-carousel .price-item h4 {
        font-size: 20px;
    }

    .price-carousel .price-item p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .price-carousel .price-item p span {
        font-size: 14px;
    }

    .price-carousel .price-item a {
        padding: 8px 16px;
    }

    .intro-video {
        padding: 30px 0;
    }

    .intro-video-box .video-play-button a img {
        max-width: 40px;
    }

    .why-choose-us {
        padding: 30px 0 10px;
    }

    .download-apps {
        padding: 30px 0 10px;
    }

    .download-apps-content {
        padding: 0;
    }

    .download-apps-content .section-title {
        margin-bottom: 20px;
    }

    .download-app-item {
        margin-bottom: 20px;
    }

    .crypto-calculator {
        padding: 30px 0;
    }

    .crypto-form-box .form-group {
        padding: 0;
    }

    .crypto-form-box .form-group select,
    .crypto-form-box .form-group input {
        width: 33%;
        font-size: 16px;
        padding: 10px 12px;
        min-height: 50px;
    }

    .crypto-form-box .form-group select {
        background-position: center right 10px;
        padding: 10px 20px 10px 12px;
    }

    .crypto-form-box .form-group input {
        width: 66%;
    }

    .crypto-form-box form button {
        margin-top: 10px;
    }

    .our-team {
        padding: 30px 0 10px;
    }

    .team-item {
        margin-bottom: 20px;
    }

    .team-social-links ul li a {
        width: 32px;
        height: 32px;
    }

    .team-social-links ul li a i {
        font-size: 16px;
    }

    .team-info {
        margin-top: 15px;
    }

    .team-info h3 {
        font-size: 20px;
    }

    .testimonials {
        padding: 30px 0;
    }

    .testimonial-item {
        background-position: 30px 25px;
        padding: 80px 30px 30px 30px;
    }

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 60px;
        height: 420px;
    }

    .testimonial-header .author-image img {
        max-width: 60px;
    }

    .latest-posts {
        padding: 30px 0;
    }

    .post-item {
        margin-bottom: 30px;
    }

    .post-body h2 {
        font-size: 20px;
    }

    .footer-newsletters,
    .mega-footer {
        padding: 30px 0;
    }

    .newsletter-title .icon-box {
        padding-right: 10px;
    }

    .newsletter-title .icon-box img {
        width: 50px;
        height: 50px;
    }

    .newsletter-title h2 {
        font-size: 18px;
    }

    .newsletter-form button {
        margin-top: 20px;
        width: 100%;
    }

    .footer-about .footer-logo img {
        max-width: 200px;
    }

    .footer-links {
        padding-bottom: 20px;
    }

    .footer-title {
        margin-bottom: 15px;
    }

    .footer-title h3 {
        font-size: 20px;
    }

    .footer-copyright {
        margin-bottom: 8px;
        text-align: center;
    }

    .footer-copyright p {
        font-size: 14px;
    }

    .footer-policy-menu {
        text-align: center;
    }

    .footer-policy-menu ul li {
        font-size: 14px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header-box h1 {
        font-size: 40px;
    }

    .about-us-page {
        padding: 60px 0 30px;
    }

    .about-footer .about-info-item {
        padding: 10px 20px;
    }

    .about-footer .about-info-item h3 {
        font-size: 20px;
    }

    .about-footer .about-info-item h3 strong {
        font-size: 32px;
    }

    .our-benefits {
        padding: 30px 0 10px;
    }

    .our-benefits-item {
        margin-bottom: 20px;
    }

    .our-benefits-item .icon-box {
        width: 90px;
        height: 90px;
    }

    .our-benefits-item .icon-box img {
        max-width: 45px;
    }

    .our-benefits-item h3 {
        font-size: 20px;
    }

    .counter-section {
        padding: 30px 0 10px;
    }

    .counter-item {
        margin-bottom: 20px;
    }

    .counter-item h3 {
        font-size: 34px;
    }

    .our-vision-mission {
        padding: 30px 0 10px;
    }

    .vision-mission-item {
        margin-bottom: 20px;
    }

    .vision-mission-header .icon-box {
        width: 60px;
        height: 60px;
    }

    .vision-mission-header .icon-box img {
        max-width: 55px;
    }

    .vision-mission-header h3 {
        font-size: 30px;
        width: calc(100% - 60px);
    }

    .about-exclusive-partners {
        padding: 30px 0 60px;
    }

    .services-page {
        padding: 60px 0 0;
    }

    .serivces-download-apps {
        padding: 30px 0 60px;
    }

    .blog-archive-page {
        padding: 40px 0;
    }

    .blog-single-page {
        padding: 60px 0 30px;
    }

    .post-content .post-featured-image {
        margin-bottom: 30px;
    }

    .post-content .post-featured-image img {
        max-height: 250px;
    }

    .post-entry {
        padding: 20px;
    }

    .post-entry p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 30px;
    }

    .post-entry h3 {
        font-size: 26px;
    }

    .post-entry h4 {
        font-size: 20px;
    }

    .post-entry h5 {
        font-size: 18px;
    }

    .post-entry h6 {
        font-size: 16px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-entry ul li:before {
        top: 4px;
        width: 18px;
        height: 18px;
        background-size: cover;
    }

    .post-entry blockquote {
        padding: 45px 20px 35px;
    }

    .post-entry blockquote::before,
    .post-entry blockquote::after {
        width: 30px;
        height: 21px;
    }

    .post-entry blockquote::before {
        top: 20px;
        left: 20px;
    }

    .post-entry blockquote::after {
        bottom: 20px;
        right: 20px;
    }

    .post-tags {
        margin-top: 20px;
        padding-top: 20px;
        font-size: 18px;
    }

    .post-tags a {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 8px;
    }

    .faq-page {
        padding: 60px 0 30px;
    }

    .sidebar-box {
        margin-bottom: 20px;
    }

    .sidebar-box ul li {
        padding: 15px 15px 15px 30px;
    }

    .faq-accordion {
        margin-top: 20px;
    }

    .accordion-item {
        margin-bottom: 20px;
    }

    .accordion-header .accordion-button {
        font-size: 20px;
        padding: 0 30px 20px 0;
    }

    .accordion-header .accordion-button::after {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .accordion-body p {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .contact-details {
        padding: 60px 0 40px;
    }

    .contact-detail-item .icon-box img {
        max-width: 40px;
    }

    .contact-detail-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .contact-detail-item .contact-detail-body h3 {
        font-size: 20px;
    }

    .contact-inquiry-box {
        padding: 40px 0;
    }

    .contact-form .form-group .form-control {
        font-size: 16px;
        padding: 12px 20px;
    }

    .google-map-box iframe {
        height: 300px;
    }

    .team-page {
        padding: 60px 0 30px;
    }

    .not-found-page {
        padding: 40px 0;
    }

    .page-not-found-box figure img {
        width: 100%;
    }

    .page-not-found-box h2 {
        font-size: 30px;
        margin: 30px 0 10px;
    }

    .page-not-found-box p {
        font-size: 16px;
    }
}

/*---=====================================================
   <!-- Header-top Area Css-->
=========================================================---*/
.header-top-area {
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.row.header-top {
    padding: 8px 15px;
}

/* Base styles / Legacy */
.header-top-welcome p {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--default-font);
    margin-bottom: 0;
}

.header-top-welcome p img {
    margin-right: 10px;
    vertical-align: middle;
}

.header-top-welcome p a {
    display: inline-block;
    color: var(--accent-color);
    margin-left: 5px;
}

.header-top-right {
    text-align: right;
}

.educate-header-from a {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--default-font);
}

.educate-header-from a i {
    display: inline-block;
    color: #498fce;
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}

a.login-btn {
    display: inline-block;
    margin-right: 20px;
}

/* Style Two - Premium Enhanced */
.header-top-area.style-two .row.header-top {
    padding: 10px 0;
}

.header-top-area.style-two .header-top-icon-list {
    position: relative;
}

.header-top-area.style-two .header-top-icon-list ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.header-top-area.style-two .header-top-icon-list ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.header-top-area.style-two .header-top-icon-list ul li:last-child {
    margin-right: 0;
}

/* Separator between contact items */
.header-top-area.style-two .header-top-icon-list ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #121923;
}

.header-top-area.style-two .header-top-icon-list ul li a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--default-font);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.header-top-area.style-two .header-top-icon-list ul li a i {
    color: var(--accent-color);
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-right: 0;
    /* Handled by gap */
    display: inline-block;
}

.header-top-area.style-two .header-top-icon-list ul li a:hover i {
    transform: scale(1.1);
}

.header-top-area.style-two .header-top-social-icon-list {
    text-align: right;
}

.header-top-area.style-two .header-top-social-icon-list ul {
    display: inline-block;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.header-top-area.style-two .header-top-social-icon-list ul li {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

/* "Follow Us" text styling */
.header-top-area.style-two li.header-flow-title {
    margin-right: 15px;
}

.header-top-area.style-two li.header-flow-title a {
    display: inline-block;
    font-size: 13px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    cursor: default;
    letter-spacing: 0.5px;
    position: relative;
    padding-right: 20px;
    margin-right: 0;
}

/* Line separator after Follow Us */
.header-top-area.style-two li.header-flow-title a::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: var(--accent-color);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    bottom: auto;
}

/* Social Icon Buttons */
.header-top-area.style-two .header-top-social-icon-list ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
}

.header-top-area.style-two .header-top-social-icon-list ul li a.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 14px;
}

.header-top-area.style-two .header-top-social-icon-list ul li a i {
    display: inline-block;
    background: none;
    border: none;
    width: auto;
    height: auto;
    line-height: normal;
    font-size: 14px;
    margin: 0;
}

.header-top-area.style-two .header-top-social-icon-list ul li a.social-link {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-top-area.style-two .header-top-social-icon-list ul li a.social-link.facebook {
    background-color: #1877F2;
}

.header-top-area.style-two .header-top-social-icon-list ul li a.social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.header-top-area.style-two .header-top-social-icon-list ul li a.social-link.youtube {
    background-color: #FF0000;
}

.login-links {
    margin-bottom: 10px;
}

.forgot-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.register-link {
    margin-left: 5px;
    font-weight: 600;
    color: var(--accent-color);
}

.register-link:hover {
    color: var(--accent-color);
}

.login-links span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label {
    font-size: 15px;
}

.crd-bx {
    padding: 30px 25px;
    background: linear-gradient(135deg, #232b38 0%, #181f29 100%);
    border-radius: 16px;
}

/* How to Work */
.work {
    padding: 40px 0;
    background: var(--surface);
}

.work .block-text .heading {
    margin-bottom: 16px;
}

.work .block-text .desc {
    padding: 0 450px;
}

@media only screen and (max-width: 1200px) {
    .work .block-text .desc {
        padding: 0;
    }
}

.work .work__main {
    display: flex;
}

.work .work__main .work-box {
    width: 33.33%;
    text-align: center;
    margin-right: 70px;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .work .work__main .work-box {
        margin-right: 0;
    }
}

.work .work__main .work-box .line {
    position: absolute;
    right: -115px;
    top: 40px;
    z-index: 0;
}

.work .work__main .work-box:last-child {
    margin-right: 0;
}

.work .work__main .work-box .image {
    margin-bottom: 12px;
}

.work .work__main .work-box .image img {
    transition: 0.5s all ease-in-out;
}

.work .work__main .work-box .content .step {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.work .work__main .work-box .content .title {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.work .work__main .work-box .content .text {
    letter-spacing: -0.1px;
    padding: 0 18px;
    text-transform: capitalize;
}

.work .work__main .work-box:hover .image img {
    transform: rotateY(-360deg);
}

@media only screen and (max-width: 767px) {
    .work .work__main {
        flex-wrap: wrap;
    }

    .work .work__main .work-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .work .work__main .work-box .line {
        display: none;
    }
}

.hero-content-footer {
    text-align: left;
}

.cstm-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cstm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.cstm-card .team-image-links {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.cstm-card .team-image figure {
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
}

.cstm-card .team-image figure img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    display: block;
}

.cstm-card:hover .team-image figure img {
    transform: scale(1.08);
}

.team-info {
    padding: 10px 0 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.team-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.team-info p.role {
    /* Added class selector for specificity if needed, but will rely on order for now or add class in HTML */
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.team-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .cstm-card .row>div {
        width: 100%;
    }

    .team-info {
        padding: 20px 0 0 0;
        text-align: center;
    }

    .cstm-card .team-image-links {
        max-width: 250px;
        margin: 0 auto;
    }
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fee-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
}

.fee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.fee-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 15px;
}

.fee-amount {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fee-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.highlight-banner {
    background: linear-gradient(45deg, #d2a55c, #d19a41);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.features-list {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FFA500;
}

.feature-icon {
    color: #FFA500;
    font-size: 20px;
    margin-right: 15px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .platform-fees-content {
        padding: 25px;
    }

    .fee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fee-amount {
        font-size: 28px;
    }
}



.top-exchange {
    padding: 40px 0;
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.top-exchange .price-item {
    padding: 30px;
    text-align: center;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-width: 220px;
}

.top-exchange .price-item .icon-box {
    margin-bottom: 20px;
}

.top-exchange .price-item .icon-box img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
}

.top-exchange .price-item h4 {
    font-size: 22px;
    color: var(--text-color);
}

.top-exchange .price-item p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: #d2a55c;
    margin-bottom: 0;
}

.top-exchange .price-item p span {
    display: inline-block;
    padding-left: 30px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: #d49226;
    margin-bottom: 0;
}

.top-exchange .price-item p span::before {
    content: '-';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: auto;
    color: inherit;
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    font-weight: 900;
}

/* Price Carousel Enhancements */
.price-carousel .price-item {
    padding: 15px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.price-carousel .price-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.price-carousel .price-item .icon-box {
    margin-bottom: 0;
    margin-right: 15px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.price-carousel .price-item .icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.price-carousel .price-item:hover .icon-box {
    background: rgba(8, 211, 123, 0.1);
}

.price-carousel .price-item .price-body {
    text-align: left;
}

.price-carousel .price-item h4 {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-carousel .price-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.price-carousel .price-item p span {
    font-size: 12px;
    padding-left: 8px;
    font-weight: 500;
}

.price-carousel .price-item p span.price-green {
    color: #03a66d;
}

.price-carousel .price-item p span.price-red {
    color: #dc3545;
}

.info-box {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    text-align: center;
    padding: 30px 25px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.info-box:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box .icon-wrapper {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(8, 211, 123, 0.1);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-box:hover .icon-wrapper {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(360deg);
}

.info-box p {
    padding-top: 5px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    opacity: 0.8;
}

.text--base {
    color: var(--accent-color) !important;
}

.info-box .fs-40 {
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.fs-40 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Team Pagination */
.team-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
    bottom: auto !important;
}

.team-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.team-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.team-carousel {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

.team-nav-prev,
.team-nav-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-nav-prev {
    left: 0;
}

.team-nav-next {
    right: 0;
}

.team-nav-prev:hover,
.team-nav-next:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-nav-prev::after,
.team-nav-next::after {
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 16px;
}

.team-nav-prev::after {
    content: "\f104";
    /* Angle left */
}

.team-nav-next::after {
    content: "\f105";
    /* Angle right */
}

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

    .team-nav-prev,
    .team-nav-next {
        display: none;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-section .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

.testimonial-section .shadow-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
}

.testimonial-section .shadow-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -150px;
    right: -150px;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(8, 211, 123, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
    background: #fff;
}

.testimonial-content {
    position: relative;
    margin-bottom: 15px;
    flex-grow: 1;
}

.quote-icon {
    font-size: 28px;
    color: var(--accent-color);
    opacity: 0.15;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.4;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 10px;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 18px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Testimonial Controls */
.testimonial-pagination {
    margin-top: 10px;
    text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.2;
    transition: all 0.4s ease;
    margin: 0 6px !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

.testimonial-nav-prev,
.testimonial-nav-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-nav-prev {
    left: -27px;
}

.testimonial-nav-next {
    right: -27px;
}

.testimonial-nav-prev:hover,
.testimonial-nav-next:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-100%) scale(1.1);
    box-shadow: 0 15px 30px rgba(8, 211, 123, 0.3);
}

.testimonial-nav-prev::after,
.testimonial-nav-next::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

.testimonial-nav-prev::after {
    content: "\f104";
}

.testimonial-nav-next::after {
    content: "\f105";
}

@media (max-width: 1400px) {
    .testimonial-nav-prev {
        left: -10px;
    }

    .testimonial-nav-next {
        right: -10px;
    }
}

@media (max-width: 1200px) {
    .testimonial-nav-prev {
        left: 0;
    }

    .testimonial-nav-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-nav-prev,
    .testimonial-nav-next {
        display: none;
    }
}

/* Premium Services Section */
.exclusive-services {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-item-box {
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-item-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(8, 211, 123, 0.1);
    border-color: var(--accent-color);
}

.service-item-box .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(8, 211, 123, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-item-box:hover .icon-box {
    background: var(--accent-color);
}

.service-item-box .icon-box img {
    width: 45px;
    height: 45px;
    transition: all 0.4s ease;
}

.service-item-box:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotate(10deg);
}

.service-item-box .service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item-box .service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.service-item-box .read-more-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item-box .read-more-btn i {
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-item-box:hover .read-more-btn i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .exclusive-services {
        padding: 40px 0;
    }

    .service-item-box {
        padding: 30px;
    }
}

/* Home FAQ Section */
.home-faq-section {
    padding: 40px 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.faq-image {
    padding-right: 40px;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .faq-image {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.home-faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.home-faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(8, 211, 123, 0.1);
}

.faq-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--accent-color);
}

.faq-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(8, 211, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-faq-item.active .faq-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 15px;
}

.home-faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 15px;
}

.faq-body p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 40px 0;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-header h3 {
        font-size: 16px;
    }
}

/* Footer Responsive */
@media (max-width: 991px) {
    .mega-footer {
        padding: 40px 0 10px;
    }

    .footer-about,
    .footer-links,
    .footer-contact-information {
        margin-bottom: 25px;
    }

    .footer-links {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .footer-copyrightp {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-policy-menu {
        text-align: center;
    }

    .footer-policy-menu ul li {
        margin: 0 5px 5px 0;
        padding-right: 8px;
    }

    .newsletter-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-title .icon-box {
        margin-bottom: 15px;
        padding-right: 0;
    }

    .newsletter-title h2 {
        padding-right: 0;
        font-size: 20px;
    }

    .footer-copyrights .col-md-6 {
        text-align: center !important;
    }

    .footer-copyright {
        margin-bottom: 15px;
    }

    .footer-copyright p {
        text-align: center;
    }
}

/* Trading Platform Section */
.trading-platform-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    position: relative;
    color: #fff;
}

.trading-platform-section .section-title {
    text-align: left;
}

.trading-platform-section .section-title h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.trading-platform-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.trading-features-list {
    margin-bottom: 15px;
}

.trading-features-list ul li {
    list-style: none;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.trading-features-list ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
}


.calculator-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 60px;
    color: #22ff9f;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/************************************/
/****     Services Page CSS      ****/
/************************************/

.services-page {
    padding: 40px 0;
    background-color: var(--background-color);
}

.service-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--border-color);
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.service-card:hover:before {
    top: 0;
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .read-more {
    color: #fff;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 211, 123, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more i {
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(45deg, var(--primary-color), #1a2533);
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Enhanced Services Design */
.services-page {
    position: relative;
    overflow: hidden;
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

.service-card .service-icon {
    position: relative;
    z-index: 1;
}

.service-card .service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--accent-color);
    top: 5px;
    left: 5px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
    top: 0;
    left: 0;
    opacity: 0;
}

/* Process Section */
/* Enhanced 4 Simple Steps Design */
.work-process {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    z-index: 1;
}

.process-item .icon-box {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--accent-color);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.process-item:hover .icon-box {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 15px 35px rgba(8, 211, 123, 0.4);
    border-color: var(--accent-color);
}

.process-item .count {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.process-item:hover .count {
    transform: scale(1.2);
    background: var(--primary-color);
}

.process-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Connecting lines for desktop */
@media (min-width: 992px) {
    .process-item::after {
        content: '';
        position: absolute;
        width: 60%;
        height: 2px;
        background: radial-gradient(circle, var(--accent-color) 0%, transparent 100%);
        top: 80px;
        right: -30%;
        opacity: 0.3;
        z-index: -1;
    }
}

.col-lg-3:last-child .process-item::after {
    display: none;
}

@media (max-width: 991px) {
    .process-item {
        margin-bottom: 40px;
    }
}

/* Ultra Premium Services Design */
.services-page {
    position: relative;
    z-index: 1;
}

.service-card {
    border: 1px solid rgba(8, 211, 123, 0.1);
    background: linear-gradient(135deg, #fff 0%, #f9fffc 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(8, 211, 123, 0.15);
}

.service-icon-wrapper {
    width: 70px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-color);
    color: #fff !important;
    transform: rotateY(360deg);
}

.service-card:hover .service-icon-wrapper i {
    color: #fff !important;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}




/* Background elements */
.bg-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-icon {
    position: absolute;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Spacing Optimizations */
@media (max-width: 767px) {

    .services-page,
    .work-process,
    .home-faq-section {
        padding: 40px 0 !important;
    }

    .services-page .section-title,
    .work-process .section-title,
    .home-faq-section .section-title {
        margin-bottom: 30px !important;
    }

    .service-card {
        margin-bottom: 20px;
        padding: 25px !important;
    }

    .process-item {
        padding: 20px 10px !important;
        margin-bottom: 20px !important;
    }

    .process-item .icon-box {
        width: 80px !important;
        height: 80px !important;
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }

    .process-item .count {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .faq-header {
        padding: 12px 15px !important;
    }

    .faq-header h3 {
        font-size: 16px !important;
    }

    .home-faq-item {
        margin-bottom: 10px !important;
    }

    .page-header {
        padding: 40px 0 !important;
    }

    .page-header-box h1 {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
}

/************************************/
/**** Premium Pricing Card Design ****/
/************************************/

.pricing-one__item {
    position: relative;
    padding: 20px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 251, 252, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 2px solid rgba(8, 211, 123, 0.12);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    margin-bottom: 30px;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Plan Name */
.pricing-one__item__name {
    position: relative;
    z-index: 2;
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(8, 211, 123, 0.15);
    transition: all 0.3s ease;
}

.pricing-one__item__price {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0;
    background: linear-gradient(135deg, #08d37b 0%, #05a660 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(8, 211, 123, 0.2));
}

.pricing-one__item__list-title {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 25px 0 18px;
    text-align: center;
    opacity: 0.85;
}


.pricing-one__item__list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 10px 0 10px;
}

.pricing-one__item__list li {
    position: relative;
    padding: 10px 0 10px 38px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pricing-one__item__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #08d37b 0%, #05a660 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(8, 211, 123, 0.25);
}

.pricing-one__item:hover .pricing-one__item__list li::before {
    transform: translateY(-50%) rotate(360deg);
    box-shadow: 0 4px 12px rgba(8, 211, 123, 0.5);
}

.pricing-one__item__border {
    position: relative;
    z-index: 2;
    margin: 15px 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(8, 211, 123, 0.3) 50%, transparent 100%);
}

.pricing-one__item .btn-default {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 50px;
    background: linear-gradient(135deg, #08d37b 0%, #05a660 100%);
    background-size: 200% 100%;
    color: white !important;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 25px rgba(8, 211, 123, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-one__item .btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}


.pricing-one__item .btn-default:hover::before {
    width: 350px;
    height: 350px;
}

.pricing-one__item .btn-default:active {
    transform: translateY(0);
}

.pricing-one__item .btn-default i {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 6px;
}


@media (max-width: 991px) {
    .pricing-one__item {
        padding: 35px 28px;
        margin-bottom: 25px;
    }

    .pricing-one__item__price {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .pricing-one__item {
        padding: 30px 22px;
    }

    .pricing-one__item__price {
        font-size: 44px;
    }

    .pricing-one__item__name {
        font-size: 17px;
        letter-spacing: 1.5px;
    }

    .pricing-one__item .btn-default {
        padding: 14px 28px;
        font-size: 14px;
    }
}