/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #000000;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2px;
    position: relative;
    animation: float-loader 3s ease-in-out infinite;
}

.loader-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    animation: pulse-glow 2s ease-in-out infinite;
}

.loader-spinner {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
}

.loader-text {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 20px;
    animation: fade-pulse 1.5s ease-in-out infinite;
}

@keyframes float-loader {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.9));
    }
}

@keyframes spin-loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fade-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/* Enhanced Visual Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add subtle animations and better spacing */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Improved card hover effects */
.feature-card, .tool-card, .benefit-item, .trader-type {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover, .tool-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Better section spacing */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Improved text readability */
.section-description, .about-prime-description {
    font-size: 1.2rem;
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced button styles */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Improved image containers */
.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.imagewidth {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Better visual hierarchy */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Improved list styling */
ul, ol {
    padding-left: 0;
}

li {
    list-style: none;
    position: relative;
}

/* Enhanced focus states for accessibility */
.btn:focus, .nav-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation improvements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #71717185;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 69px;
    width: auto;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-outline {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    border-color: #d4af37;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #000000;
}

.btn-large {
    padding: 7px 4px;
    font-size: 14px;
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 68vh;
    min-height: 604px;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}


.slide-image img {
    width: 100%;
}


.slide {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/slider1.jpg);
    z-index: -1;
    background-size: cover;
    background-position: center center;
}

.slide-bg-2 {
    background-image: url(../images/slider2.jpg);
    background-size: cover;
    background-position: center center;
}

.slide-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    align-items: center;
    width: 100%;
    color: #fff;
}

.slide-text {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.slide.active .slide-text {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.slide-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature{
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(0 0 0 / 63%);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}
.feature i {
    font-size: 18px;
    color: #d4af37;
}

.slide-actions {
    display: flex;
    gap: 20px;
    
}



.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

.slide.active .slide-image {
    animation: slideInRight 1s ease-out 0.5s both;
}

/* Trading Visual */
.trading-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.currency-symbols {
    position: relative;
    width: 100%;
    height: 100%;
}

.symbol-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dollar {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.euro {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.pound {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

.trading-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 15px;
}

.stat-change.positive {
    background: #4caf50;
}

/* Speed Visual */
.speed-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-meter {
    position: relative;
    width: 300px;
    height: 300px;
}

.meter-arc {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top: 8px solid #d4af37;
    animation: spin 2s linear infinite;
}

.meter-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 120px;
    background: #d4af37;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
    border-radius: 2px;
}

.meter-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #d4af37;
}

/* Demo Visual */
.demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-account {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 350px;
}

.account-balance {
    text-align: center;
    margin-bottom: 25px;
}

.balance-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.balance-amount {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.demo-chart {
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.2);
}

.nav-dot:hover {
    border-color: #d4af37;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.slider-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Prime XBT Section */
.about-prime-xbt {
    padding: 100px 0;
    background: linear-gradient(343deg, #3b3b3b 0%, #2b2b2b 100%);
    position: relative;
    overflow: hidden;
}

.inner-circle img {
    width: 120px;
    height: 120px;
}


.about-prime-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-prime-text {
    animation: slideInLeft 1s ease-out;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-prime-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}
.about-prime-description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-prime-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
}

.stat-content h4 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
}

.stat-content p {
    color: #555555;
    margin: 0;
    font-size: 0.9rem;
}

.about-prime-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    animation: slideInLeft 1s ease-out;
}

.highlight-item:nth-child(1) { animation-delay: 0.8s; }
.highlight-item:nth-child(2) { animation-delay: 1s; }
.highlight-item:nth-child(3) { animation-delay: 1.2s; }

.highlight-item i {
    color: #4caf50;
    font-size: 18px;
}

    .highlight-item span {
        color: #ebebeb;
        font-size: 1.1rem;
    }

.about-prime-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

/* Visual Section */
.about-prime-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2.6s;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.card-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.central-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graphic-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.inner-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 30px;
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    top: -20px;
    left: -20px;
    animation-duration: 8s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -40px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    top: -60px;
    left: -60px;
    animation-duration: 15s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Enhanced Trading Features Section */
.features {
    padding: 32px 0;
    background: linear-gradient(343deg, #3b3b3b 0%, #2b2b2b 100%);
    position: relative;
}

.legal-section h4 {
    color: #fff;
}



.regulatory-info h4 {
    color: #fff;
}


.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.features-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;

}

h1.slide-title {
    color: #fff;
}


.feature-icon i {
    font-size: 35px;
    color: #000000;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.feature-stats .stat {
    text-align: center;
}

.feature-stats .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
}

.feature-stats .stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Markets Section */
.markets {
    padding: 80px 0;
    background: #f8f9fa;
}

.market-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background: #1e3c72;
    color: #fff;
    padding: 20px;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.pair {
    font-weight: bold;
    color: #1e3c72;
}

.change.positive {
    color: #4caf50;
}

.change.negative {
    color: #f44336;
}

.spread {
    color: #666;
}

/* Enhanced Trading Tools Section */
.tools {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Particle System for Black Backgrounds */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 7s;
    animation-duration: 9s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 8s;
    animation-duration: 8s;
}

.particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: 9s;
    animation-duration: 10s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.tools-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tools-header .section-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
}

.tools-header .section-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 45px 35px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.tool-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tool-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.tool-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.tool-card:hover .tool-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.tool-icon i {
    font-size: 32px;
    color: #000000;
}

.tool-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.tool-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.tool-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-features li:last-child {
    border-bottom: none;
}

.tool-features li:hover {
    color: #d4af37;
    transform: translateX(8px);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 15px;
    border-radius: 8px;
}

.tool-features li i {
    color: #4caf50;
    font-size: 12px;
    width: 16px;
}

.tool-action {
    margin-top: auto;
}

.tool-action .btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
    border: 2px solid rgba(212, 175, 55, 0.6);
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-action .btn:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Enhanced Education Section */
.education {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.education-header {
    text-align: center;
    margin-bottom: 80px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.education-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
}

.education-card.beginner::before {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.education-card.intermediate::before {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.education-card.advanced::before {
    background: linear-gradient(135deg, #f44336, #ef5350);
}

.education-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.education-level {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-card.beginner .education-level {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
}

.education-card.intermediate .education-level {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: #fff;
}

.education-card.advanced .education-level {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: #fff;
}

.education-level i {
    font-size: 16px;
}

.education-card h4 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
}

.education-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.education-topics {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.education-topics li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.education-topics li:last-child {
    border-bottom: none;
}

.education-topics li:hover {
    color: #667eea;
    transform: translateX(5px);
}

.education-topics li i {
    color: #667eea;
    font-size: 14px;
    width: 16px;
}

.education-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px 0;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
}

.education-stats .stat {
    text-align: center;
}

.education-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.education-stats .stat-text {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.education-card .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.education-card.beginner .btn {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-color: #4caf50;
}

.education-card.intermediate .btn {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    border-color: #ff9800;
}

.education-card.advanced .btn {
    background: linear-gradient(135deg, #f44336, #ef5350);
    border-color: #f44336;
}

.education-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.extra-resource {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.extra-resource:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 24px;
    color: #fff;
}

.resource-content h5 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 5px;
    font-weight: 600;
}

.resource-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Account Types Section */
.account-types {
    padding: 80px 0;
    background: #fff;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.account-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.account-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

.account-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.account-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1e3c72;
}

.account-card.featured .account-header h3 {
    color: #fff;
}

.account-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 30px;
}

.account-card.featured .account-price {
    color: #d4af37;
}

.account-price span {
    font-size: 1rem;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.account-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.account-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-features i {
    color: #4caf50;
    font-size: 14px;
}

.account-card.featured .account-features i {
    color: #d4af37;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-feature i {
    font-size: 24px;
    color: #667eea;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 5px;
}

.about-feature p {
    color: #666;
    margin: 0;
}

.about-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-card h4 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 25px;
    text-align: center;
}

.about-card ul {
    list-style: none;
}

.about-card ul li {
    padding: 10px 0;
    color: #666;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.about-card ul li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 1px;
    border-top: 3px solid #3f3f3f;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.company-info {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .footer-logo img {
        width: 170px;
    }

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
}

.company-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.payment-methods h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Social Media & Apps Section */
.footer-social-apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #444;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-link.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-link.telegram:hover { background: #0088cc; border-color: #0088cc; }

.app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #333;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.app-link:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.app-link i {
    font-size: 24px;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-text {
    font-size: 0.8rem;
    color: #ccc;
}

.app-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Legal & Compliance Section */
.footer-legal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #444;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
}

.regulatory-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.address {
    font-size: 0.85rem !important;
    color: #aaa !important;
}

/* Risk Warning Section */
.footer-risk-warning {
    background: #2a1810;
    border: 1px solid #d4a574;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.risk-content h4 {
    color: #ffa500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.risk-content p {
    color: #e6e6e6;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    margin: 0 -20px -60px -20px;
    padding: 25px 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-social-apps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-links {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .payment-icons {
        justify-content: center;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-links a {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 2px solid #737373;
        gap: 6px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 8px 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 20px;
        display: block;
        margin: 0 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: left;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }

    /* Mobile Action Buttons Container */
    .mobile-actions {
        margin: 20px 20px 20px 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
    }

    .mobile-buttons-container {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .mobile-btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
    }

    .mobile-actions .btn-outline {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
    }

    .mobile-actions .btn-outline:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: #d4af37;
        color: #d4af37;
    }

    .mobile-actions .btn-primary {
        background: linear-gradient(135deg, #d4af37, #f4d03f);
        color: #000000;
        border-color: #d4af37;
    }

    .mobile-actions .btn-primary:hover {
        background: linear-gradient(135deg, #f4d03f, #f7dc6f);
        transform: translateY(-1px);
    }

    /* Hide desktop nav actions on mobile */
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* About Prime XBT Responsive */
    .about-prime-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-prime-title {
        font-size: 2.5rem;
    }

    .about-prime-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-prime-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .visual-container {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        min-width: 150px;
        padding: 15px;
    }

    .card-1 {
        top: 10%;
        left: -5%;
    }

    .card-2 {
        top: 70%;
        right: -5%;
    }

    .card-3 {
        bottom: 5%;
        left: 15%;
    }

    .graphic-circle {
        width: 100px;
        height: 100px;
    }

    .inner-circle {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .ring-1 {
        width: 140px;
        height: 140px;
        top: -20px;
        left: -20px;
    }

    .ring-2 {
        width: 180px;
        height: 180px;
        top: -40px;
        left: -40px;
    }

    .ring-3 {
        width: 220px;
        height: 220px;
        top: -60px;
        left: -60px;
    }
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1px;
        padding: 0 10px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .slide-actions {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        width: 100%;
        flex-wrap: initial;
    }

    .trading-visual {
        width: 300px;
        height: 300px;
    }

    .symbol-item {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .speed-meter {
        width: 250px;
        height: 250px;
    }

    .demo-account {
        width: 280px;
        padding: 20px;
    }

    .balance-amount {
        font-size: 2.5rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        font-size: 0.9rem;
    }

    .table-header span:nth-child(4),
    .table-header span:nth-child(5),
    .table-row span:nth-child(4),
    .table-row span:nth-child(5) {
        display: none;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .account-card.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .about-prime-title {
        font-size: 2rem;
    }

    .about-prime-description {
        font-size: 1rem;
    }

    .visual-container {
        width: 250px;
        height: 250px;
    }

    .floating-card {
        min-width: 130px;
        padding: 12px;
    }

    .card-text h5 {
        font-size: 0.9rem;
    }

    .card-text p {
        font-size: 0.75rem;
    }

    .graphic-circle {
        width: 80px;
        height: 80px;
    }

    .inner-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trading-visual {
        width: 250px;
        height: 250px;
    }

    .symbol-item {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .speed-meter {
        width: 200px;
        height: 200px;
    }

    .meter-center {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }

    .demo-account {
        width: 250px;
        padding: 15px;
    }

    .balance-amount {
        font-size: 2rem;
    }

    .slider-arrow {
        display: none;
    }

    .slider-nav {
        bottom: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .account-price {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        padding: 15px 10px;
    }

    .table-header span:nth-child(3),
    .table-row span:nth-child(3) {
        display: none;
    }
}

/* Platform Demo Section */
.platform-demo {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-description h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.demo-description p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.platform-feature i {
    font-size: 20px;
    color: #667eea;
}

.trading-interface {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.interface-header {
    background: #1e3c72;
    padding: 15px 20px;
}

.interface-tabs {
    display: flex;
    gap: 20px;
}

.tab {
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab.active {
    background: #ffd700;
    color: #1e3c72;
}

.interface-content {
    padding: 20px;
}

.market-watch {
    margin-bottom: 20px;
}

.watch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.watch-item:last-child {
    border-bottom: none;
}

.symbol {
    font-weight: bold;
    color: #1e3c72;
}

.price {
    font-weight: bold;
    font-size: 1.1rem;
}

.order-panel {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.order-type {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.order-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn.buy {
    background: #4caf50;
    color: #fff;
}

.order-btn.sell {
    background: #f44336;
    color: #fff;
}

.order-btn:hover {
    transform: translateY(-2px);
}

.order-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Contact & Support Section */
.contact-support {
    padding: 80px 0;
    background: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 30px;
    color: #fff;
}

.support-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.support-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.phone-numbers,
.email-contacts {
    text-align: left;
    margin-bottom: 20px;
}

.phone-numbers p,
.email-contacts p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-section h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 20px;
}

/* Enhanced Responsive Design for New Sections */
@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-type {
        flex-direction: column;
    }

    .interface-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .demo-description h3 {
        font-size: 1.5rem;
    }

    .contact-form-section h3 {
        font-size: 1.5rem;
    }

    .support-card {
        padding: 30px 20px;
    }

    .trading-interface {
        margin: 0 -10px;
    }
}
/* Hide mobile actions on desktop */
@media (min-width: 769px) {
    .mobile-actions {
        display: none;
    }
}

/* Additional mobile button styling */
.mobile-btn {
    transition: all 0.3s ease;
}

.mobile-btn:active {
    transform: scale(0.95);
}
/* Enhanced Mobile Menu Styling */
@media (max-width: 768px) {
    /* Better visual hierarchy for nav items */
    .nav-item:not(.mobile-actions) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 20px;
    }
    
    .nav-item:not(.mobile-actions):last-of-type {
        border-bottom: none;
    }
    
    /* Add subtle animation to menu items */
    .nav-menu.active .nav-item {
        animation: slideInFromLeft 0.3s ease-out forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(7) { animation-delay: 0.4s; }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Compact mobile menu for smaller screens */
@media (max-width: 480px) {
    .nav-menu {
        padding: 15px 0;
    }
    
    .nav-menu li {
        margin: 6px 0;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 10px 15px;
        margin: 0 15px;
    }
    
    .mobile-actions {
        margin: 15px 15px 15px 15px !important;
        padding-top: 15px;
    }
    
    .mobile-buttons-container {
        gap: 10px;
    }
    
    .mobile-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Common Section Styling */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #d9d9d9;
    font-weight: 700;
    line-height: 1.2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    animation: badge-pulse 2s infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

@keyframes badge-pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Enhanced Responsive Design for New Sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-number {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tool-card {
        padding: 30px 20px;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-card {
        padding: 30px 25px;
    }
    
    .education-extras {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .extra-resource {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .tool-card,
    .education-card {
        padding: 25px 20px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .education-stats {
        flex-direction: column;
        gap: 10px;
    }
}
/* How Does Forex Trading Work Section */
.forex-work {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Add particles to forex-work section */
.forex-work .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.forex-work .particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.forex-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.forex-work-text {
    animation: slideInLeft 1s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d1c2c2;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}
.forex-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #000000;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.forex-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 15px;
    color: #000000;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Trading Interface Demo */
.forex-work-image {
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-interface-demo {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 350px;
    position: relative;
    z-index: 2;
}

.demo-header {
    margin-bottom: 20px;
}

.demo-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
}

.demo-chart {
    height: 150px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #4caf50, #d4af37, #f44336);
    transform: translateY(-50%);
    animation: chartPulse 2s infinite;
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: pointFloat 3s infinite;
}

.point-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.point-2 {
    top: 60%;
    left: 50%;
    animation-delay: 1s;
}

.point-3 {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

.demo-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.buy {
    background: #4caf50;
    color: #fff;
}

.control-btn.sell {
    background: #f44336;
    color: #fff;
}

.control-btn:hover {
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 4s infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 70%;
    right: -10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

.floating-card i {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 5px;
}

.floating-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
}

/* Benefits of Forex Trading Section */
.forex-benefits {
    padding: 100px 0;
    background: linear-gradient(343deg, #3b3b3b 0%, #2b2b2b 100%);
    position: relative;
    overflow: hidden;
}

.forex-benefits .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.forex-benefits .container {
    position: relative;
    z-index: 2;
}

.forex-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.forex-benefits-text {
    animation: slideInRight 1s ease-out;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    transform: translateX(-15px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: #000000;
}

.benefit-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Benefits Visual */
.forex-benefits-image {
    animation: slideInLeft 1s ease-out;
}

.benefits-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
    z-index: 2;
    animation: pulse 2s infinite;
}

.central-circle i {
    font-size: 30px;
    margin-bottom: 5px;
}

.central-circle span {
    font-size: 0.9rem;
    font-weight: 600;
}

.benefit-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: orbit 8s infinite linear;
}

.item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.item-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.item-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 6s;
}

.orbit-item i {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 5px;
}

.orbit-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

/* Who Can Start Forex Trading Section */
.forex-who {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Add particles to forex-who section */
.forex-who .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.forex-who .particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.section-descriptionwhite {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}


.imagewidth {
    width:100%;
}

.forex-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.forex-who-text {
    animation: slideInLeft 1s ease-out;
}

.trader-types {
    margin-bottom: 40px;
}

.trader-type {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.trader-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.trader-type:hover::before {
    transform: scaleY(1);
}

.trader-type:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.type-icon i {
    font-size: 24px;
    color: #000000;
}

.type-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.type-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.type-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.type-features i {
    color: #4caf50;
    font-size: 12px;
}

.requirements {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    border-radius: 15px;
}

.requirements h4 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.req-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.req-item i {
    color: #d4af37;
    font-size: 14px;
}

/* Traders Visual */
.forex-who-image {
    animation: slideInRight 1s ease-out;
}

.traders-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.trader-avatar {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 4s infinite;
}

.avatar-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.avatar-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.avatar-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.trader-avatar i {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 5px;
}

.trader-avatar span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
}

.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
    z-index: 2;
    animation: pulse 2s infinite;
}

.center-hub i {
    font-size: 30px;
    margin-bottom: 5px;
}

.center-hub span {
    font-size: 0.9rem;
    font-weight: 600;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: lineGlow 3s infinite;
}

.line-1 {
    top: 35%;
    left: 25%;
    width: 50%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.line-2 {
    top: 35%;
    right: 25%;
    width: 50%;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.line-3 {
    bottom: 35%;
    left: 50%;
    width: 40%;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 2s;
}

/* Animations */
@keyframes chartPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pointFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {

    .feature-item {
        display: block!important;
       
    }


    .benefit-icon {

        margin: 13px auto!important;
    }



    .benefit-item {
        display: block!important;

    }




    .type-icon {

        margin: 10px auto!important;
    }



    .forex-work-content,
    .forex-benefits-content,
    .forex-who-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .forex-stats {
        justify-content: center;
    }
    
    .trading-interface-demo {
        width: 300px;
    }
    
    .benefits-visual,
    .traders-visual {
        width: 300px;
        height: 300px;
    }
    
    .floating-card,
    .trader-avatar {
        width: 60px;
        height: 60px;
    }
    
    .floating-card i,
    .trader-avatar i {
        font-size: 16px;
    }
    
    .floating-card span,
    .trader-avatar span {
        font-size: 0.7rem;
    }
    
    .central-circle,
    .center-hub {
        width: 100px;
        height: 100px;
    }
    
    .orbit-item {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-item,
    .benefit-item,
    .trader-type {
        padding: 15px;
    }
    
    .forex-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .trading-interface-demo {
        width: 280px;
        padding: 20px;
    }
    
    .benefits-visual,
    .traders-visual {
        width: 250px;
        height: 250px;
    }
}
/* Ensure tool cards display correctly */
.tool-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.tool-card .tool-features {
    flex-grow: 1;
}

.tool-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure images load properly */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.imagewidth {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Fix any potential z-index issues */
.tools-grid {
    position: relative;
    z-index: 10;
}

/* Improve card spacing and alignment */
.tools-grid .tool-card {
    margin-bottom: 0;
}

/* Ensure proper text contrast on dark backgrounds */
.tools .section-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Loading state for images */
img[src*=".png"], img[src*=".jpg"] {
    transition: opacity 0.3s ease;
}

img[src*=".png"]:not([src=""]), img[src*=".jpg"]:not([src=""]) {
    opacity: 1;
}

/* Fallback for missing images */
.image-container::before {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/* Enhanced Glass Morphism Effects */
.tool-card::after,
.feature-card::after,
.feature-item::after,
.benefit-item::after,
.trader-type::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::after,
.feature-card:hover::after,
.feature-item:hover::after,
.benefit-item:hover::after,
.trader-type:hover::after {
    opacity: 1;
}

/* Animated gradient border */
.tool-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #d4af37, 
        #f4d03f, 
        #d4af37, 
        #f4d03f);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

.tool-card:hover::before,
.feature-card:hover::before {
    opacity: 0.7;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating particles inside cards */
.tool-card .floating-particle,
.feature-card .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: floatInCard 4s infinite ease-in-out;
    pointer-events: none;
}

.tool-card .floating-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tool-card .floating-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.tool-card .floating-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatInCard {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* Enhanced text glow effect */
.tool-card h3,
.feature-card h3,
.feature-content h4,
.benefit-content h4,
.type-content h4 {
    position: relative;
}

.tool-card:hover h3,
.feature-card:hover h3,
.feature-item:hover .feature-content h4,
.benefit-item:hover .benefit-content h4,
.trader-type:hover .type-content h4 {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8),
                 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Improved backdrop blur for better browser support */
@supports (backdrop-filter: blur(20px)) {
    .tool-card,
    .feature-card,
    .feature-item,
    .benefit-item,
    .trader-type {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

@supports not (backdrop-filter: blur(20px)) {
    .tool-card,
    .feature-card,
    .feature-item,
    .benefit-item,
    .trader-type {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Responsive glass effects */
@media (max-width: 768px) {
    .tool-card,
    .feature-card,
    .feature-item,
    .benefit-item,
    .trader-type {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

@media (max-width: 480px) {
    .tool-card,
    .feature-card,
    .feature-item,
    .benefit-item,
    .trader-type {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.12);
    }
}
/* Enhanced Two-Card Layout */
.tools-grid .tool-card {
    position: relative;
}

.tools-grid .tool-card:nth-child(1) {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.tools-grid .tool-card:nth-child(2) {
    animation: slideInRight 1s ease-out 0.4s both;
}

/* Special effects for two cards */
.tool-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent, 
        rgba(244, 208, 63, 0.3), 
        transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 400% 400%;
    animation: gradientRotate 4s ease infinite;
}

.tool-card:hover::before {
    opacity: 1;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Improved badge styling */
.tool-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.tool-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.tool-card:hover .tool-badge::after {
    left: 100%;
}

/* Enhanced check icons */
.tool-features li i {
    color: #4caf50;
    font-size: 14px;
    width: 18px;
    background: rgba(76, 175, 80, 0.2);
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tool-features li:hover i {
    background: rgba(76, 175, 80, 0.4);
    transform: scale(1.2);
}

/* Responsive design for two cards */
@media (max-width: 1024px) {
    .tools-grid {
        max-width: 800px;
        gap: 30px;
    }
    
    .tool-card {
        padding: 35px 25px;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .tool-card {
        padding: 30px 25px;
        min-height: 400px;
    }
    
    .tool-icon {
        width: 70px;
        height: 70px;
    }
    
    .tool-icon i {
        font-size: 28px;
    }
    
    .tool-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .tool-card {
        padding: 25px 20px;
        min-height: 350px;
        border-radius: 20px;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
    }
    
    .tool-icon i {
        font-size: 24px;
    }
    
    .tool-card h3 {
        font-size: 1.4rem;
    }
    
    .tool-card p {
        font-size: 1rem;
    }
    
    .tool-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .tool-action .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Special glow effect for the two main cards */
.tool-card:nth-child(1):hover {
    box-shadow: 
        0 30px 60px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(212, 175, 55, 0.2);
}

.tool-card:nth-child(2):hover {
    box-shadow: 
        0 30px 60px rgba(244, 208, 63, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(244, 208, 63, 0.2);
}

/* About Prime XBT Section - Complete Redesign */


.about-prime-xbt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-prime-title {
    font-size: 3.5rem !important;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-prime-description {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Stats Grid - New Design */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.stat-card .stat-icon i {
    font-size: 22px;
    color: #000000;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlights - Improved Design */
.about-prime-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
}

.about-prime-highlights .highlight-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-left-color: #f4d03f;
}

.about-prime-highlights .highlight-item i {
    color: #d4af37 !important;
    font-size: 20px !important;
    width: 30px;
    text-align: center;
}

.about-prime-highlights .highlight-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
}

/* Visual Section - Enhanced */
.about-prime-visual .visual-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.about-prime-visual .graphic-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.about-prime-visual .inner-circle {
    width: 100px;
    height: 100px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-prime-visual .inner-circle img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
}

.about-prime-visual .orbit-ring {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.about-prime-visual .ring-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: -30px;
    animation-duration: 10s;
    border-style: dashed;
}

.about-prime-visual .ring-2 {
    width: 260px;
    height: 260px;
    top: -60px;
    left: -60px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.about-prime-visual .ring-3 {
    width: 320px;
    height: 320px;
    top: -90px;
    left: -90px;
    animation-duration: 20s;
    border-style: dotted;
}

/* Floating Feature Cards - New */
.floating-feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.floating-feature i {
    font-size: 20px;
    color: #d4af37;
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.feature-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.feature-2 {
    top: 50%;
    right: -8%;
    animation-delay: 1.5s;
}

.feature-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-prime-visual .visual-container {
        width: 400px;
        height: 400px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-prime-xbt {
        padding: 80px 0 !important;
    }
    
    .about-prime-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-prime-title {
        font-size: 2.5rem !important;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-prime-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-prime-visual .visual-container {
        width: 350px;
        height: 350px;
    }

    .floating-feature {
        padding: 12px 15px;
    }

    .feature-1 {
        top: 10%;
        left: 0%;
    }

    .feature-2 {
        top: 50%;
        right: -5%;
    }

    .feature-3 {
        bottom: 10%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .about-prime-title {
        font-size: 2rem !important;
    }

    .about-prime-description {
        font-size: 1rem !important;
    }

    .about-prime-visual .visual-container {
        width: 280px;
        height: 280px;
    }

    .about-prime-visual .graphic-circle {
        width: 100px;
        height: 100px;
    }

    .about-prime-visual .inner-circle {
        width: 70px;
        height: 70px;
    }

    .about-prime-visual .inner-circle img {
        width: 55px !important;
        height: 55px !important;
    }

    .about-prime-visual .ring-1 {
        width: 150px;
        height: 150px;
        top: -25px;
        left: -25px;
    }

    .about-prime-visual .ring-2 {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
    }

    .about-prime-visual .ring-3 {
        width: 250px;
        height: 250px;
        top: -75px;
        left: -75px;
    }

    .floating-feature {
        padding: 10px 12px;
    }

    .floating-feature span {
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-info h3 {
        font-size: 1.6rem;
    }
}

/* Enhanced Visual Section with Large Image and Effects */
.about-prime-visual .visual-container {
    position: relative;
    width: 500px !important;
    height: 500px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Image Wrapper with All Effects */
.main-image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Main Logo Image - Large and Centered */
.main-logo-image {
    width: 280px !important;
    height: 280px !important;
    object-fit: contain;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Glowing Background Effect */
.image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Rotating Golden Border - First Ring */
.rotating-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 3px solid transparent;
    border-top-color: #d4af37;
    border-right-color: #f4d03f;
    border-radius: 50%;
    animation: rotateBorder 4s linear infinite;
    z-index: 2;
}

/* Rotating Golden Border - Second Ring */
.rotating-border-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 2px dashed transparent;
    border-bottom-color: #d4af37;
    border-left-color: #f4d03f;
    border-radius: 50%;
    animation: rotateBorder 6s linear infinite reverse;
    z-index: 2;
    opacity: 0.7;
}

@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Shining Effect - Sweeping Light */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shineSwipe 3s ease-in-out infinite;
    z-index: 15;
    pointer-events: none;
}

@keyframes shineSwipe {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

/* Particle Effects Around Image */
.particle-effect {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    animation: particleOrbit 8s linear infinite;
    z-index: 3;
}

.particle-1 {
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle-2 {
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle-3 {
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle-4 {
    animation-delay: 3s;
    animation-duration: 6.5s;
}

.particle-5 {
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.particle-6 {
    animation-delay: 5s;
    animation-duration: 8.5s;
}

@keyframes particleOrbit {
    0% {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
        opacity: 0;
    }
}

/* Enhanced Floating Features */
.about-prime-visual .floating-feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: floatFeature 5s ease-in-out infinite;
    transition: all 0.4s ease;
    z-index: 20;
}

.about-prime-visual .floating-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.about-prime-visual .floating-feature i {
    font-size: 24px;
    color: #d4af37;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(244, 208, 63, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.about-prime-visual .floating-feature span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes floatFeature {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.about-prime-visual .feature-1 {
    top: 8%;
    left: -8%;
    animation-delay: 0s;
}

.about-prime-visual .feature-2 {
    top: 45%;
    right: -10%;
    animation-delay: 1.5s;
}

.about-prime-visual .feature-3 {
    bottom: 12%;
    left: 8%;
    animation-delay: 3s;
}

/* Additional Glow Rings */
.main-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: expandRing 4s ease-in-out infinite;
    z-index: 1;
}

.main-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border: 1px dotted rgba(244, 208, 63, 0.2);
    border-radius: 50%;
    animation: expandRing 4s ease-in-out infinite 2s;
    z-index: 1;
}

@keyframes expandRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsive Design for Visual Section */
@media (max-width: 1024px) {
    .about-prime-visual .visual-container {
        width: 450px !important;
        height: 450px !important;
    }
    
    .main-image-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .main-logo-image {
        width: 250px !important;
        height: 250px !important;
    }
    
    .rotating-border {
        width: 350px;
        height: 350px;
    }
    
    .rotating-border-2 {
        width: 390px;
        height: 390px;
    }
}

@media (max-width: 768px) {
    .about-prime-visual .visual-container {
        width: 380px !important;
        height: 380px !important;
    }
    
    .main-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .main-logo-image {
        width: 220px !important;
        height: 220px !important;
    }
    
    .rotating-border {
        width: 310px;
        height: 310px;
    }
    
    .rotating-border-2 {
        width: 350px;
        height: 350px;
    }
    
    .about-prime-visual .floating-feature {
        padding: 15px 20px;
    }
    
    .about-prime-visual .feature-1 {
        top: 5%;
        left: -5%;
    }
    
    .about-prime-visual .feature-2 {
        top: 45%;
        right: -8%;
    }
    
    .about-prime-visual .feature-3 {
        bottom: 8%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .about-prime-visual .visual-container {
        width: 320px !important;
        height: 320px !important;
    }
    
    .main-image-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .main-logo-image {
        width: 180px !important;
        height: 180px !important;
    }
    
    .rotating-border {
        width: 270px;
        height: 270px;
        border-width: 2px;
    }
    
    .rotating-border-2 {
        width: 300px;
        height: 300px;
        border-width: 1px;
    }
    
    .image-glow-effect {
        width: 260px;
        height: 260px;
    }
    
    .particle-effect {
        width: 6px;
        height: 6px;
    }
    
    .about-prime-visual .floating-feature {
        padding: 12px 15px;
    }
    
    .about-prime-visual .floating-feature i {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .about-prime-visual .floating-feature span {
        font-size: 0.9rem;
    }
    
    .main-image-wrapper::before {
        width: 350px;
        height: 350px;
    }
    
    .main-image-wrapper::after {
        width: 380px;
        height: 380px;
    }
}


/* Mobile Responsive - Loader */
@media (max-width: 768px) {
    .loader-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 25px;
    }

    .loader-spinner {
        width: 120px;
        height: 120px;
    }

    .loader-text {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .loader-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 0px;
    }

    .loader-spinner {
        width: 100px;
        height: 100px;
    }

    .loader-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}
