:root {
    --primary-color: #4C6FFF;
    --secondary-color: #6B7280;
    --background-color: #F9FAFB;
    --text-color: #1F2937;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #4C6FFF 0%, #6D8DFF 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 32px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.platform-badges span {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 16px;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #ffffff;
    min-height: 100vh;
    display: block;
    position: relative;
    z-index: 1;
}

.features .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #2d3436;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #4a6cf7;
    display: block;
    opacity: 1 !important;
}

.feature-card * {
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74,108,247,0.1);
}

.feature-card .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .icon {
    background: #4a6cf7;
}

.feature-card:hover .icon i {
    color: white;
}

.feature-card .icon i {
    font-size: 35px;
    color: #4a6cf7;
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2d3436;
    font-size: 22px;
    font-weight: 600;
}

.feature-card p {
    color: #636e72;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 80px 0;
}

.contact-info {
    text-align: center;
}

.contact-details {
    margin-top: 32px;
}

.contact-details p {
    margin: 16px 0;
}

/* Animations */
.gsap-heading,
.gsap-text,
.gsap-badges,
.gsap-image,
.gsap-card {
    opacity: 0;
}

.gsap-heading, .gsap-text {
    opacity: 0;  /* Start invisible */
    transform: translateY(20px);  /* Start slightly below final position */
}

.gsap-badges {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

.dashboard-preview {
    background: white !important;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 20px;
    min-width: 500px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.dash-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.dash-controls i {
    margin-left: 15px;
    font-size: 1.2rem;
    color: #666;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-card i {
    font-size: 24px;
    color: #4a90e2;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Add these styles to override any conflicting styles */
.container {
    position: relative;
    z-index: 1;
}

.dashboard-preview {
    background: white !important;
    position: relative;
    z-index: 2;
}

.card {
    background: #f8f9fa !important;
    transition: transform 0.2s;
}

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

/* If there's a dark overlay or background causing visibility issues */
.hero-section {
    position: relative;
    background: transparent;
}

/* Ensure text is visible */
.text-primary {
    color: #0d6efd !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Enhance visibility of cards */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.modal-dialog {
    max-width: 500px;
}

.modal-content {
    padding: 20px;
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-body {
    padding-top: 20px;
}

#demoRequestForm .form-control {
    margin-bottom: 10px;
} 