/* General Styles */
:root {
    --primary-color: #00ffff; /* Cyan for primary accents */
    --secondary-color: #ff00ff; /* Magenta for secondary accents */
    --dark-bg: #1a1a1a; /* Dark background */
    --medium-bg: #2a2a2a; /* Slightly lighter dark background */
    --light-text: #e0e0e0; /* Light text color */
    --muted-text: #a0a0a0; /* Muted text color */
    --border-color: #00ffff; /* Border color for retro look */
    --glow-color: #00ffff; /* Glow effect color */
    --error-color: #ff4444;
    --success-color: #44ff44;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-shadow: 0 0 7px var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 40px;
    position: relative;
    display: block;
    color: var(--light-text); /* Ensure title text is visible */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--medium-bg);
    border-color: var(--medium-bg);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
    color: var(--primary-color);
}

.custom-btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.custom-btn-glow:hover::before {
    opacity: 0.3;
}

/* Navbar */
.navbar {
    background-color: var(--dark-bg);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 8px var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--medium-bg);
    color: var(--light-text);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    z-index: 1050; /* Above navbar */
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
}

.cookie-banner p {
    margin-bottom: 0;
    flex-grow: 1;
}

.cookie-banner .cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner .cookie-buttons .btn {
    margin-left: 10px;
    padding: 5px 15px;
    font-size: 0.8rem;
}

/* Cookie Modal */
.modal-content {
    background-color: var(--medium-bg);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.modal-header {
    border-bottom: 1px solid var(--primary-color);
}

.modal-title {
    color: var(--primary-color);
}

.modal-footer {
    border-top: 1px solid var(--primary-color);
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--light-text);
    padding-top: 200px; /* Offset for fixed navbar */
    padding-bottom: 48px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 0;
}

.hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    color: var(--light-text);
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--muted-text);
}

.statistic-box {
    background-color: var(--medium-bg);
    border: 2px solid var(--primary-color);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.statistic-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    display: block;
}

.statistic-label {
    font-size: 1.2rem;
    color: var(--light-text);
}

.trust-badges .badge {
    background-color: var(--medium-bg) !important;
    border: 1px solid var(--primary-color);
    color: var(--light-text) !important;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.trust-badges .badge i {
    color: var(--primary-color);
}

/* What is Crypto Arbitrage Section */
.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-secondary {
    background-color: var(--medium-bg) !important;
}

.custom-list-style li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--light-text);
}

.custom-list-style li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.block-image-style {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    filter: brightness(0.9) contrast(1.1);
}

/* Our Team Section */
.team-member-card {
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.team-member-card h4 {
    color: var(--light-text);
}

.team-member-card .text-muted {
    color: var(--muted-text) !important;
}

.team-member-card .btn-outline-light {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.team-member-card .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Our Services Section */
.service-card {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background-color: var(--medium-bg);
    padding: 25px;
}

.service-card h3 {
    color: var(--light-text);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.problem-card {
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.problem-card .service-icon {
    color: #ff4444;
    text-shadow: 0 0 10px #ff4444;
}

.solution-card {
    border-color: #44ff44;
    box-shadow: 0 0 15px rgba(68, 255, 68, 0.3);
}

.solution-card .service-icon {
    color: #44ff44;
    text-shadow: 0 0 10px #44ff44;
}

/* Pricing Plans Section */
.pricing-card {
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.pricing-card .card-header {
    background-color: var(--medium-bg);
    border-bottom: 1px solid var(--primary-color);
    padding: 15px;
}

.pricing-card .card-header h4 {
    color: var(--primary-color);
}

.pricing-card .card-body {
    padding: 25px;
}

.pricing-card-title {
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--secondary-color);
}

.pricing-card ul li {
    padding: 5px 0;
    color: var(--light-text);
}

.pricing-card ul li i.bi-check-lg {
    color: var(--primary-color);
}

.pricing-card ul li i.bi-x-lg {
    color: var(--muted-text);
}

/* Key Statistics Section */
.horizontal-timeline {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: translateY(-50%);
    z-index: 0;
}

.stat-point {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.stat-circle {
    width: 120px;
    height: 120px;
    background-color: var(--medium-bg);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px var(--secondary-color);
}

.stat-number {
    color: var(--light-text);
    text-shadow: 0 0 8px var(--light-text);
    font-size: 2rem; /* Adjusted for smaller circles */
}

.stat-description {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Adjust stat-point positioning for timeline effect */
.horizontal-timeline .row > div {
    margin-top: -60px; /* Pull circles up to align with line */
    padding-top: 60px; /* Add padding back */
}

/* Frequently Asked Questions Section */
.custom-accordion .accordion-item {
    background-color: var(--dark-bg);
    border: 1px solid var(--primary-color);
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.custom-accordion .accordion-button {
    background-color: #545252;
    color: var(--light-text);
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 1px solid var(--primary-color);
    transition: background-color 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.custom-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
    border-color: var(--primary-color);
}

.custom-accordion .accordion-body {
    background-color: var(--dark-bg);
    color: var(--muted-text);
    padding: 20px;
    border-top: 1px dashed var(--muted-text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) .faq-icon {
    color: var(--dark-bg);
}

/* Contact Us Section */
.form-container {
    background-color: var(--medium-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    padding: 30px;
}

.form-label {
    color: var(--light-text);
    font-weight: 600;
}

.form-control {
    background-color: var(--dark-bg);
    border: 1px solid var(--muted-text);
    color: var(--light-text);
    padding: 10px 15px;
    border-radius: 5px;
}

.form-control:focus {
    background-color: var(--dark-bg);
    color: var(--light-text);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
}

.form-control::placeholder {
    color: var(--muted-text);
    opacity: 0.7;
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.85rem;
}

.valid-feedback {
    color: var(--success-color);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg) !important;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.3);
    color: var(--light-text);
}

.footer-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 8px var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-img-footer {
    height: 30px; /* Adjust as needed */
    margin-right: 8px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.footer-links li a {
    color: var(--muted-text);
    display: inline-block;
    margin-bottom: 5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.social-icons .social-icon {
    font-size: 1.8rem;
    color: var(--light-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-bg);
        border-top: 1px solid var(--primary-color);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .statistic-number {
        font-size: 2.5rem;
    }

    .statistic-label {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges .badge {
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .horizontal-timeline .stat-point {
        margin-bottom: 30px;
    }

    .horizontal-timeline .row > div {
        margin-top: 0; /* Reset for smaller screens */
        padding-top: 0; /* Reset for smaller screens */
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .footer-brand {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner .cookie-buttons {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .cookie-banner .cookie-buttons .btn {
        margin-left: 0;
        flex-grow: 1;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .statistic-box {
        padding: 15px 20px;
    }

    .statistic-number {
        font-size: 2rem;
    }

    .statistic-label {
        font-size: 0.9rem;
    }

    .footer-links {
        padding-left: 0;
    }
    .horizontal-timeline .row > div {
        margin-top: 30px; /* Reset for smaller screens */

}
/* Styles for the main content block */
.trustPillarUnit {
    padding: 60px 20px; /* Top/bottom and left/right padding for the section */
    margin: 0 auto; /* Center the block if it has a max-width */
    max-width: 1200px; /* Optional: Constrain content width for readability */
}

/* Headings within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 2.2rem; /* Moderate size for main headings */
    margin-bottom: 25px; /* Space below heading */
    color: var(--primary-color); /* Primary accent color for headings */
    font-weight: 700; /* Bold font weight */
}

.trustPillarUnit h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    margin-bottom: 20px;
    color: var(--light-text); /* Light text color for sub-headings */
    font-weight: 600;
}

.trustPillarUnit h3 {
    font-size: 1.5rem; /* Standard heading size */
    margin-bottom: 18px;
    color: var(--light-text);
    font-weight: 600;
}

.trustPillarUnit h4 {
    font-size: 1.2rem; /* Smaller heading size */
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 500;
}

.trustPillarUnit h5 {
    font-size: 1.1rem; /* Smallest heading size */
    margin-bottom: 12px;
    color: var(--muted-text); /* Muted color for less emphasis */
    font-weight: 500;
}

/* Paragraphs within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 15px; /* Space below paragraphs */
    line-height: 1.7; /* Improved readability for text blocks */
    color: var(--light-text); /* Light text color for content */
}

/* Unordered lists within .trustPillarUnit */
.trustPillarUnit ul {
    list-style: disc; /* Default disc bullet */
    padding-left: 25px; /* Indent list items */
    margin-bottom: 20px; /* Space below the list */
    color: var(--light-text); /* Inherit text color */
}

/* List items within .trustPillarUnit */
.trustPillarUnit li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 8px; /* Space between list items */
    color: var(--light-text); /* Light text color for list items */
}

/* Optional: Custom bullet color for lists if desired */
/* This requires a bit more advanced CSS for older browsers,
   but for modern browsers, you can use: */
.trustPillarUnit ul li::marker {
    color: var(--primary-color); /* Primary color for list markers */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .trustPillarUnit {
        padding: 40px 15px; /* Reduce padding on smaller screens */
    }

    .trustPillarUnit h1 {
        font-size: 1.8rem; /* Adjust h1 for mobile */
        margin-bottom: 20px;
    }

    .trustPillarUnit h2 {
        font-size: 1.5rem; /* Adjust h2 for mobile */
        margin-bottom: 15px;
    }

    .trustPillarUnit h3 {
        font-size: 1.3rem; /* Adjust h3 for mobile */
        margin-bottom: 12px;
    }

    .trustPillarUnit p,
    .trustPillarUnit li {
        font-size: 0.95rem; /* Slightly smaller text for better fit on mobile */
    }
}
.accordion-button.collapsed .accordion-button::after {

}