body {
    background-color: #1a1a1a;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.hero-section {
    min-height: 100vh;
    padding: 80px 0;
}

.trading-features li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.trading-features i {
    color: #fff;
    margin-right: 15px;
    font-weight: bold;
}

.btn-light {
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
}

/* Customizing Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
} 
/* header styles */
.header-main {
    font-family: 'Segoe UI', Arial, sans-serif;
}

.top-bar {
    background-color: #fcfdfd !important;
}

.navbar-brand img {
    object-fit: contain;
}

.nav-link {
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107 !important; /* Yellow hover like logo */
}

/* The horizontal line separator effect from the image */
@media (min-width: 992px) {
    .navbar-nav {
        border-top: 1px solid #dee2e6;
        padding-top: 10px;
        margin-top: 10px;
    }
}

.text-warning {
    color: #fcd307 !important; /* Specific yellow from logo */
}

/* Why Wealth Trade Section */
/* Why Wealth Trade Section */
.why-wealth-section {
    background-color: #FFDD00; /* Faint Yellow */
}

.feature-card {
    background: #fff;
    padding: 50px 20px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Font Awesome Icon Styling */
.icon-wrapper i {
    color: #000; /* Solid Black Icons */
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.feature-card h5 {
    color: #000;
    line-height: 1.2;
}

.influencers-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-card img {
    width: 100%;
    height: 450px; /* Adjust height based on your needs */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

/* Gradient Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Play Button Styling */
.video-overlay i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-bottom: auto; /* Pushes text to bottom */
    margin-top: auto;
}

.video-card:hover .video-overlay i {
    color: #fff;
    transform: scale(1.1);
}

/* Text Caption Styling */
.video-caption {
    width: 100%;
    text-align: left;
}

.bg-purple {
    background-color: #a855f7; /* Matching the purple in your image */
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: normal;
    text-align: left;
}

.video-caption h4 {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Markets Section Styling */
.markets-section {
    background-color: #FFDD00; /* Faint purple background from screenshot */
    padding: 80px 0;
}

.market-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.market-icon i {
    color: #000; /* Matching the black icons in screenshot */
}

/* List Item Styling */
.market-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.market-list i {
    color: yellow; /* Purple checkmarks */
    font-size: 0.8rem;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .markets-section h2 {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
}

.trustpilot-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
}

/* Speech Bubble Styling */
.testimonial-bubble {
    background-color: #f1f3f5;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* The "Tail" of the bubble */
.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #f1f3f5;
}

.reviewer-info h5 {
    color: #000;
    font-size: 1.1rem;
}

.carousel-controls .btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Footer Styling */
.footer-section {
    background-color: black; /* Use #ffffff if you want light, or your deep purple from before */
    color: #333; /* Dark text for light background */
}

/* If you want the dark theme from your screenshot */
.footer-section.dark {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ffc107 !important; /* Gold hover from logo */
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.small {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Container and Section Spacing */
.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee; /* Light border around the whole group */
}

/* Individual Card Styling */
.service-card {
    flex: 1;
    min-width: 250px;
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Remove border on the last item for a cleaner look */
.service-card:last-child {
    border-right: none;
}

/* Icon Styling */
.service-icon {
    font-size: 40px;
    color: #444;
    margin-bottom: 25px;
}

/* Typography */
.service-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: #eee;
    margin: 0 auto 20px;
}

.service-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Hover Effect: Simple shadow to match modern UI */
.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    z-index: 1;
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 992px) {
    .service-card {
        flex: 50%;
        border-bottom: 1px solid #eee;
    }
    .service-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 100%;
        border-right: none;
    }
}

/* Service Card Hover */
.service-card {
    transition: background 0.3s ease;
}
.service-card:hover {
    background-color: #f8f9fa;
}

/* Step Icons & Line */
.step-container {
    padding-left: 10px;
}

.vertical-line {
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #FFDD00; /* Match your blue theme */
    opacity: 0.3;
}

.step-icon {
    position: absolute;
    left: -15px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: #FFDD00 !important; /* Lighter blue from your screenshot */
}

.step-item h4 {
    font-size: 1.25rem;
}
.service-icon i {
    color: #FFDD00; /* blue */
    font-size: 40px;
}

