/* Clean styles for Merchant Fund Express */

/* Remove any dark themes - keep it clean and professional */
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Basic section styling */
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Funding cards styling */
.funding-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.funding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.funding-icon {
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.funding-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.funding-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.funding-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.funding-features li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.funding-features li:before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.funding-features li:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.hero-stats .stat p {
    margin: 0;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-main {
    height: 40px;
    width: auto;
}

/* Tech and Marketing Cards */
.tech-card, .marketing-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tech-card:hover, .marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tech-icon, .marketing-icon {
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tech-card h4, .marketing-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.tech-card p, .marketing-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-features, .marketing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li, .marketing-features li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before, .marketing-features li:before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-features li:last-child, .marketing-features li:last-child {
    border-bottom: none;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
    padding: 5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #FF6B35;
    margin-top: 0.25rem;
}

.benefit-item h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.btn-white {
    background: white;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: white;
    color: #333;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 5rem 0;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #333;
    text-decoration: none;
}

.contact-card a:hover {
    color: #FF6B35;
}

.contact-card small {
    color: #666;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e9ecef;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD23F;
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    color: #666;
    font-size: 0.9rem;
}

.footer-divider {
    margin: 2rem 0 1rem;
    opacity: 0.1;
}

.copyright, .made-by {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Visual Effects */
.hero-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.particle-2 {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.particle-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #FFD23F, #FF6B35);
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    box-shadow: 0 0 25px rgba(255, 210, 63, 0.5);
}

.particle-4 {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #764ba2, #667eea);
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    box-shadow: 0 0 12px rgba(118, 75, 162, 0.5);
}

.particle-5 {
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #FF6B35, #667eea);
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.3);
}

.particle-6 {
    width: 22px;
    height: 22px;
    background: linear-gradient(45deg, #FFD23F, #764ba2);
    top: 10%;
    left: 60%;
    animation-delay: 5s;
    box-shadow: 0 0 22px rgba(255, 210, 63, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 210, 63, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.service-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: serviceFloat 8s ease-in-out infinite;
}

.service-float:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.service-2 {
    top: 35%;
    right: 5%;
    animation-delay: 2s;
}

.service-3 {
    bottom: 35%;
    right: 15%;
    animation-delay: 4s;
}

.service-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.service-icon {
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-float span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.service-float small {
    color: #666;
    font-size: 0.85rem;
}

/* Floating Headers */
.floating-headers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-header {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: floatHeader 10s ease-in-out infinite;
    white-space: nowrap;
}

.header-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(255, 210, 63, 0.9));
    color: white;
}

.header-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
}

.header-3 {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(255, 210, 63, 0.9), rgba(255, 107, 53, 0.9));
    color: white;
}

.header-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 6s;
    background: linear-gradient(45deg, rgba(118, 75, 162, 0.9), rgba(102, 126, 234, 0.9));
    color: white;
}

.header-5 {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 8s;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
}

@keyframes floatHeader {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

/* Enhanced Particles with Better Visibility */
.particle-1, .particle-2, .particle-3, .particle-4, .particle-5, .particle-6 {
    z-index: 2;
    filter: brightness(1.2);
}

/* Make sure floating elements are visible */
.floating-particles, .floating-headers, .luxury-overlay {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Professional Industries Section Hover Effects */
.industries-section .col-lg-3:hover > div,
.industries-section .col-md-4:hover > div,
.industries-section .col-sm-6:hover > div {
    transform: translateY(-4px);
    border-color: #d1d9e0 !important;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1) !important;
}

.industries-section .col-lg-3:hover h5,
.industries-section .col-md-4:hover h5,
.industries-section .col-sm-6:hover h5 {
    color: #1a252f !important;
}