* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a1628;
    --secondary-bg: #142238;
    --orange: #FF5B04;
    --orange-hover: #ff7a33;
    --white: #ffffff;
    --gray: #8c9db5;
    --text-primary: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 160px);
    max-width: 1400px;
    background: #FFFFFF1A;
    backdrop-filter: blur(200px);
    border: 1px solid #FFFFFF4D;
    border-radius: 16px;
    z-index: 1000;
    padding: 16px 40px;
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 40px);
        padding: 12px 20px;
        top: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 30px);
        padding: 10px 15px;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 91, 4, 0.1);
    color: var(--orange) !important;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .nav-content {
        justify-content: center;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    .logo-text {
        font-size: 10px;
    }
}

.btn-demo {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 40px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: var(--white);
    color: var(--primary-bg);
}

.btn-account {
    padding: 12px 28px;
    background: var(--orange);
    border: none;
    border-radius: 40px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-account:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 100px 0 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
    }
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
}

.text-orange {
    color: var(--orange);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 480px;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 14px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.btn-primary {
    padding: 16px 40px;
    background: var(--orange);
    border: none;
    border-radius: 40px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 44, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 40px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-bg);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .trust-badge {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .trust-number {
        font-size: 20px;
    }

    .trust-desc {
        font-size: 12px;
        max-width: 100%;
    }
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--primary-bg);
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.trust-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #FFFFFF;
    max-width: 250px;
    line-height: 1.4;
}

/* Hero Right - Globe and Phone */
.hero-right {
    position: relative;
    height: 100%;
    animation: fadeInRight 1s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.globe-container {
    position: relative;
    width: 750px;
    height: 750px;
}

@media (max-width: 768px) {
    .globe-container {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .hero-right {
        height: auto;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .globe-container {
        width: 280px;
        height: 280px;
    }
}

.globe-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 750px;
    border-radius: 750px;
    overflow: hidden;
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .globe-wrapper {
        width: 300px;
        height: 300px;
        border-radius: 300px;
    }
}

@media (max-width: 480px) {
    .globe-wrapper {
        width: 250px;
        height: 250px;
        border-radius: 250px;
    }
}

.map-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
    height: 100%;
    width: auto;
    min-width: 200%;
    animation: moveMap 15s linear infinite;
    opacity: 0.85;
}

.globe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.phone-image {
    position: absolute;
    bottom: -380px;
    left: 52%;
    transform: translateX(-50%);
    width: 550px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: phoneFloat 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .phone-image {
        width: 160px;
        bottom: -150px;
        left: 50%;
    }
}

@media (max-width: 480px) {
    .phone-image {
        width: 130px;
        bottom: -120px;
    }
}

/* Country Flag Badges */
.flag-badge {
    position: absolute;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    z-index: 20;
    overflow: hidden;
    padding: 0;
}

@media (max-width: 768px) {
    .flag-badge {
        width: 30px;
        height: 30px;
    }

    .flag-badge img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .flag-badge {
        width: 26px;
        height: 26px;
    }

    .flag-badge img {
        width: 16px;
        height: 16px;
    }
}

.flags-image {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* Features Bar */
.features-bar {
    background: var(--orange);
    padding: 20px 0;
}

.features-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
}

.feature-icon-before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    order: -1;
}

/* Value Flows Section */
.value-flows {
    padding: 100px 0;
    background: #ffffff;
}

.value-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #000;
}

.value-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.btn-features {
    padding: 14px 32px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-features:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--secondary-bg);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.large-card {
    grid-row: span 2;
    background-image: url('Images/one-app.svg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 746px;
    background-color: #E4F0EC;
    border: 16px solid #E4F0EC;
}

.large-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.large-card .card-content {
    position: relative;
    z-index: 2;
}

.large-card .card-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: #fff;
}

.large-card .card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.large-card:hover .card-content p {
    opacity: 1;
}

.large-card .card-content h3 {
    transition: all 0.3s ease;
}

.large-card:hover .card-content h3 {
    transform: scale(1.05);
}

.large-card .card-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.app-phone {
    width: 487px;
    height: 527px;
    object-fit: contain;
}

.medium-card {
    height: 346px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #E4F0EC;
    border: 16px solid #E4F0EC;
    padding: 16px;
}

.medium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.account-services {
    background-image: url('Images/account-service.svg');
    height: 346px;
}

.transparent-pricing {
    background-image: url('Images/transparent-pricing.svg');
    height: 347px;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.transparent-pricing .card-overlay {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.transparent-pricing .text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    max-width: 50%;
    padding-bottom: 20px;
}

.card-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.transparent-pricing .card-overlay h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.medium-card:hover .card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.card-overlay h3 {
    transition: all 0.4s ease;
}

.medium-card:hover .card-overlay h3 {
    transform: scale(1.05);
}

.transparent-pricing .card-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
}

.transparent-pricing:hover .card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.hidden-cost-badge {
    width: 250px;
    height: 175px;
    margin-bottom: 0;
    align-self: flex-start;
}

/* Accept Manage Trade Section */
.amt-section {
    padding: 120px 0;
    background: #ffffff;
}

.amt-content {
    width: 100%;
}

.amt-title {
    font-size: 120px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -2px;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.amt-title .amt-left {
    align-self: flex-start;
}

.amt-title .amt-center {
    align-self: center;
}

.amt-title .amt-right {
    align-self: flex-end;
}

.amt-title .text-orange {
    color: var(--orange);
}

/* Accounts Section */
.accounts-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: url('Images/pngegg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.accounts-section::before {
    display: none;
}

.accounts-pattern-overlay {
    display: none;
}

.accounts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
    align-items: start;
}

.account-card {
    border-radius: 24px;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.account-bg-image {
    display: none;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.account-content {
    position: relative;
    z-index: 2;
    padding: 0 45px 50px 45px;
}

.personal-account {
    background-image: url('Images/digital-account.jpg');
}

.business-account {
    background-image: url('Images/business-account.png');
    margin-top: 80px;
}

.account-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

.account-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease, max-height 0.8s ease;
}

.account-card:hover .account-content p {
    opacity: 1;
    max-height: 100px;
}

.account-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease, max-height 0.8s ease;
}

.account-card:hover .account-features {
    opacity: 1;
    max-height: 300px;
}

.account-features li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 1);
}

.account-features .arrow {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.account-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease, max-height 0.8s ease;
}

.account-card:hover .account-buttons {
    opacity: 1;
    max-height: 200px;
}

.account-buttons .btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-buttons .btn-primary:hover {
    background: var(--orange-hover);
}

.account-buttons .btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-buttons .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Cards Section */
.cards-section {
    padding: 120px 0 100px;
    background-image: url('Images/background-cardbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cards-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.cards-left-text {
    display: flex;
}

.cards-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin: 0;
}

.cards-right-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cards-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    letter-spacing: 0%;
    margin: 0;
}

.cards-display {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px;
    text-align: center;
}

.card-main {
    width: auto;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
}

.cards-features-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 18px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-direction: row;
    text-align: left;
    min-height: 80px;
}

.feature-box:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    order: 2;
    filter: brightness(0) invert(1);
}

.feature-box span {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    line-height: 1.4;
    order: 1;
    flex: 1;
}

.cards-display {
    position: relative;
    width: 500px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-back,
.card-front {
    position: absolute;
    width: 380px;
    height: auto;
    transition: transform 0.3s ease;
}

.card-back {
    top: 0;
    left: 40px;
    transform: rotate(-5deg);
    z-index: 1;
}

.card-front {
    bottom: 20px;
    right: 40px;
    transform: rotate(3deg);
    z-index: 2;
}

.cards-display:hover .card-back {
    transform: rotate(-10deg) translateY(-5px);
}

.cards-display:hover .card-front {
    transform: rotate(7deg) translateY(-5px);
}

.btn-discover {
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-discover:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Brand Logos Slider Section */
.brands-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Digital Assets Section */
.digital-assets-section {
    padding: 100px 0;
    background: url('Images/local-Background.svg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.digital-assets-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.digital-assets-left {
    flex: 1;
    max-width: 500px;
}

.digital-assets-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--orange);
}

.digital-assets-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-payments {
    padding: 16px 36px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-payments::after {
    content: '';
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 50%;
    transform: translateX(50%);
}

.btn-payments:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.digital-assets-wrapper {
    flex: 0 0 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.digital-assets-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
}

.bitcoin-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-title {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.box-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-features li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.6;
}

.box-features li .arrow {
    color: var(--orange);
}

.box-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-digital-active,
.btn-fiat {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-digital-active {
    background: var(--orange);
    color: #fff;
    border: none;
}

.btn-fiat {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-fiat:hover {
    border-color: #fff;
}

/* Digital Assets Carousel Styles */
.digital-assets-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
}

.carousel-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    z-index: 2;
}

.box-buttons .carousel-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box-buttons .carousel-btn[data-slide="0"].btn-digital-active,
.box-buttons .carousel-btn[data-slide="1"].btn-digital-active {
    background: var(--orange);
    color: #fff;
    border: none;
}

.box-buttons .carousel-btn[data-slide="0"].btn-fiat,
.box-buttons .carousel-btn[data-slide="1"].btn-fiat {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


/* Fast Reliable Settlement Section */
.settlement-section {
    padding: 100px 0 0 0;
    background: #fff;
    position: relative;
    overflow: visible;
}

.settlement-section .container {
    max-width: 100%;
    padding: 0 80px;
}

.ellipse-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: url('Images/Ellipse 25.svg') no-repeat top right;
    background-size: contain;
    opacity: 0.4;
    pointer-events: none;
}

.settlement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.settlement-image {
    flex: 0 0 600px;
}

.settlement-image img {
    width: 600px;
    height: 690px;
    display: block;
    object-fit: contain;
    transform: scaleX(-1);
}

.settlement-text {
    flex: 1;
}

.settlement-title {
    font-family: 'Cairo', sans-serif;
    font-size: 90px;
    font-weight: 600;
    color: #000;
    line-height: 105px;
    margin: 0;
    vertical-align: middle;
}

.settlement-title .word {
    display: inline-block;
    opacity: 0.2;
    transition: opacity 0.6s ease;
    margin-right: 0.15em;
}

.settlement-title .word.animate {
    opacity: 1;
}

/* Trusted By Section */
.trusted-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.trusted-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.trusted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.trusted-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.trusted-left {
    flex: 1.5;
    max-width: 800px;
}

.trusted-logo {
    width: 100px;
    height: auto;
    margin-bottom: 40px;
}

.trusted-title {
    font-family: 'Cairo', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    line-height: 64px;
    text-transform: capitalize;
}

.trusted-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-get-started {
    padding: 16px 36px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.trusted-logos {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    height: 600px;
    overflow: visible;
    padding: 20px 0;
}

.logos-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logos-row-1 {
    animation: slideUp 20s linear infinite;
}

.logos-row-2 {
    animation: slideDown 20s linear infinite;
}

.logo-item {
    width: 140px;
    height: 140px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: transparent;
    padding: 80px 0 40px;
    color: #fff;
    border: 3px solid #FF8C69;
    border-radius: 60px 60px 0 0;
    border-bottom: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 0;
    background: #1a2332;
    border-radius: 57px 57px 0 0;
    z-index: -1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 52px;
    margin-bottom: 32px;
    text-transform: capitalize;
}

.footer-ready {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 100%;
    display: block;
    text-transform: capitalize;
    margin-bottom: -20px;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-open-account {
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-open-account:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.btn-contact-team {
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-team:hover {
    border-color: #fff;
}

.footer-right {
    flex: 0 0 300px;
}

.footer-links-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-legal {
    padding-top: 30px;
}

.footer-legal p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Mobile Responsive Styles - Remaining Sections */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .settlement-title {
        font-size: 70px;
        line-height: 85px;
    }

    .cards-title {
        font-size: 48px;
        line-height: 60px;
    }

    .accounts-grid {
        gap: 30px;
    }

    .account-card {
        height: 600px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moveMap {
    0% {
        transform: translateY(-50%) translateX(0%);
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive Design */
@media (max-width: 1600px) {
    .hero-title {
        font-size: 52px;
    }

    .globe-container {
        width: 600px;
        height: 600px;
    }

    .globe-wrapper {
        width: 600px;
        height: 600px;
        border-radius: 600px;
    }

    .phone-image {
        bottom: -310px;
        width: 450px;
    }

    .flag-badge {
        width: 32px;
        height: 32px;
    }

    .flag-badge img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1366px) {
    .hero-title {
        font-size: 48px;
    }

    .globe-container {
        width: 550px;
        height: 550px;
    }

    .globe-wrapper {
        width: 550px;
        height: 550px;
        border-radius: 550px;
    }

    .phone-image {
        bottom: -280px;
        width: 410px;
    }

    .flag-badge {
        width: 30px;
        height: 30px;
    }

    .flag-badge img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-title {
        font-size: 44px;
    }

    .globe-container {
        width: 500px;
        height: 500px;
    }

    .globe-wrapper {
        width: 500px;
        height: 500px;
        border-radius: 500px;
    }

    .phone-image {
        bottom: -250px;
        width: 370px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-right {
        height: 500px;
    }

    .globe-image {
        width: 400px;
    }

    .phone-image {
        width: 200px;
    }

    .features-list {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .trust-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-buttons {
        gap: 8px;
    }

    .btn-demo,
    .btn-account {
        padding: 10px 16px;
        font-size: 12px;
    }
}
