:root {
    --bizme-blue: #0066ff;
    --bizme-purple: #8b5cf6;
    --bizme-light: #f8fafc;
    --bizme-dark: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--bizme-dark);
}

/* Gradient Text */
.bizme-gradient-text {
    background: linear-gradient(135deg, var(--bizme-blue), var(--bizme-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Cards */
.bizme-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    border: none;
    border: 1px solid #ccc;
}

.bizme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--bizme-blue), var(--bizme-purple));
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, #0052cc, #7c3aed);
}

.btn-outline-primary {
    color: var(--bizme-blue);
    border-color: var(--bizme-blue);
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--bizme-blue);
    border-color: var(--bizme-blue);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bizme-blue), var(--bizme-purple));
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
}

.hero-blob-1 {
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    bottom: -100px;
    left: -100px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--bizme-light) 0%, #e2e8f0 100%);
}

/* Features Section */
.features-section {
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff29, #8b5cf62e);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 0.75rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Pricing Section */
.pricing-card {
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--bizme-blue);
}

.pricing-card:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6692f9 10%, #e5e5e5 100%);
    color: white;
}

.cta-section h2,
.cta-section .lead {
    color: white;
}

/* Footer */
.footer {
    background: var(--bizme-dark) !important;
}

.styleFooter
{
    border-top: 5px solid #374ed3;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Counter Animation */
.counter-card {
    opacity: 0;
    transform: translateY(20px);
}

.counter-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-blob {
        width: 200px;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover Effects */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sectionAuth
{
    border: 5px solid #2196f3;
    border-radius: 16px !important;
    padding: 30px;
    margin-top: 30px;
    overflow: hidden;
    background: #ffffff;
}