/* ==================== GENERAL STYLES ==================== */
:root {
    --primary: #0a2540;
    --accent: #0066ff;
    --dark: #111827;
    --light: #f8fafc;
    --gray: #64748b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #a5b4fc;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 520px;
    color: #cbd5e1;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
    flex: 1;
    text-align: center;
}


/* ==================== TRUST / LOGO BAR ==================== */
.trust-bar {
    background: #f8fafc;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.logo-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.85;
}

.logo-carousel img {
    height: 45px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-carousel img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.about-content h2 {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-content p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.features {
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.feature i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 5px;
}

.feature h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 90px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 90px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border-color: var(--accent);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 25px 25px 10px;
    color: var(--primary);
}

.service-card p {
    padding: 0 25px 25px;
    color: #475569;
    line-height: 1.7;
}

.service-card .btn {
    margin: 0 25px 30px;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 90px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 90px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 16px;
    border-left: 5px solid var(--accent);
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonial-card strong {
    color: var(--primary);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
    padding: 90px 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.portfolio-content h2 {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

.portfolio-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 15px 0 20px;
}
.team-section {
    padding: 90px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border-color: var(--accent);
}

.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 30px 25px;
}

.team-info h3 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.team-role {
    display: inline-block;
    background: #e0e7ff;
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}
.strategies-section {
    padding: 90px 0;
    background: #f8fafc;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.strategy-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.strategy-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}
.market-section {
    padding: 90px 0;
    background: white;
}

.tradingview-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border: 1px solid #e2e8f0;
}

/* Make TradingView responsive */
.tradingview-widget-container {
    width: 100% !important;
}

.businesses-section {
    padding: 90px 0;
    background: #f8fafc;
}

.businesses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.businesses-content h2 {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.businesses-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.businesses-content p {
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.7;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.business-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.business-item i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.business-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.business-item p {
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* Images Grid */
.businesses-images .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.businesses-images .image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}

.businesses-images .image-item:hover {
    transform: scale(1.02);
}

.businesses-images .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Make the third image span full width on the bottom */
.businesses-images .image-item:last-child {
    grid-column: 1 / -1;
}
.site-footer {
    background: #0a2540;
    color: #cbd5e1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0066ff;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-vision {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #0066ff;
    font-size: 1.3rem;
    margin-top: 4px;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-item a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    background: #081b32;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.legal-links a {
    color: #94a3b8;
    margin: 0 8px;
}

.legal-links a:hover {
    color: #fff;
}

.separator {
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-bottom: 10px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .businesses-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .businesses-images .image-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .businesses-images .image-grid {
        grid-template-columns: 1fr;
    }

    .businesses-images .image-item:last-child {
        grid-column: auto;
    }
}
@media (max-width: 768px) {
    .tradingview-container {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 992px) {

    .hero-container,
    .about-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 15px;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .steps-grid,
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .hero-section {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 280px;
    }
}