/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: -0.025em;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.25);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.btn-secondary {
    background: rgba(248, 250, 252, 0.8);
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: -0.025em;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 1.5px solid #8b5cf6;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: -0.025em;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    border-radius: 14px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    margin-right: 0.75rem;
}

.nav-brand .brand-text {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 8rem 0 8rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3.5rem;
    color: #475569;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-subtitle div {
    margin-bottom: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    background: white;
    color: #4a5568;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
}

/* Product Section */
.products {
    padding: 6rem 0;
    background: white;
}

.product-hero {
    max-width: 1000px;
    margin: 0 auto;
}

.product-main {
    text-align: center;
    margin-bottom: 4rem;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.product-icon-large svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.product-main h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.product-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4a5568;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: rgba(248, 250, 252, 0.6);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.feature-item h4 {
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: #64748b;
    font-size: 0.925rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.product-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value h4 {
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-visual {
    text-align: center;
}

.visual-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.visual-placeholder svg {
    color: #8b5cf6;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.15));
}

@keyframes float {

    0%,
    100% {
        transform: rotate(0deg) translate(0, 0);
    }

    33% {
        transform: rotate(120deg) translate(10px, -10px);
    }

    66% {
        transform: rotate(240deg) translate(-10px, 10px);
    }
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #5b21b6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: white;
    color: #7c3aed;
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta .btn-outline:hover {
    background: white;
    color: #7c3aed;
    border-color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes the logo white */
}

.footer-brand h3 {
    color: white;
    margin: 0;
}

.footer-brand p {
    color: #a0aec0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

.footer-legal a:hover {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-brand .logo {
        height: 50px;
        margin-right: 0.5rem;
    }

    .nav-brand .brand-text {
        font-size: 1.25rem;
    }

    .footer-logo-img {
        height: 24px;
    }

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

    .cta h2 {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-main h3 {
        font-size: 2rem;
    }

    .product-cta {
        flex-direction: column;
        align-items: center;
    }



    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-content {
        padding: 6rem 0 3rem;
    }

    .legal-body {
        padding: 0 1rem;
    }

    .legal-body h2 {
        font-size: 1.3rem;
    }
}

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

/* Legal Pages */
.legal-content {
    padding: 8rem 0 4rem;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-style: italic;
    margin: 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-body h2 {
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.legal-body h3 {
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.contact-info p {
    margin: 0.5rem 0;
    color: #2d3748;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #64748b;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.close:hover {
    color: #0f172a;
    background-color: #f1f5f9;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-body p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    color: #374151;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.form-actions .btn-secondary,
.form-actions .btn-primary {
    min-width: 120px;
}

#submitLoader i {
    margin-right: 0.5rem;
}


/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 80vh;
    }

    .modal-header,
    .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
    }
}

/* Add this CSS to your styles.css file */

/* Replace your existing True Insights background CSS with this: */

.feature-item:last-child {
    background: linear-gradient(
        rgba(248, 250, 252, 0.3), 
        rgba(248, 250, 252, 0.4)
    ), url('../assets/performance_view.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Enhance text readability with better contrast */
.feature-item:last-child h4 {
    position: relative;
    z-index: 2;
    color: #0f172a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.feature-item:last-child p {
    position: relative;
    z-index: 2;
    color: #1e293b;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

/* Adjust the hover overlay to be more subtle */
.feature-item:last-child::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.feature-item:last-child:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
}
/* Updated hero-stats container */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Fixed size stat boxes */
.stat {
    text-align: center;
    padding: 0; /* Remove all padding */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
    
    /* Absolutely fixed dimensions */
    width: 180px !important;
    height: 120px !important;
    min-width: 180px;
    max-width: 180px;
    min-height: 120px;
    max-height: 120px;
    flex: none; /* Prevent flex growing/shrinking */
    
    /* Perfect centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.5rem; /* Slightly smaller to ensure it fits */
    font-weight: 800;
    color: #8b5cf6;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem; /* Smaller to fit within fixed height */
    color: #64748b;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-align: center;
    margin: 0.5rem 0 0 0;
    padding: 0 0.5rem; /* Small padding only on sides for text */
}

/* Image Carousel Section */
.image-carousel {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 2rem;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel dots/indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b5cf6;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

/* Optional: Add a subtle overlay for branding */
.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .carousel-container {
        height: 200px;
        margin: 0 1rem;
    }
    
    .image-carousel {
        padding: 2rem 0;
    }
}

.products {
    padding: 6rem 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.85)
    ), url('../assets/missions_view.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Optional: Add a subtle overlay pattern for better text readability */
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content stays above the background */
.products .container {
    position: relative;
    z-index: 2;
}

.hero {
    padding: 8rem 0 8rem;
    background: linear-gradient(
        rgba(248, 250, 252, 0.85), 
        rgba(241, 245, 249, 0.9)
    ), url('../assets/sprint_view.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Keep the existing gradient overlay but make it more subtle */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure hero content appears above the background */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Add this CSS to your styles.css file to set the background image for the About/Mission section */

.about {
    padding: 6rem 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0.9), 
        rgba(248, 250, 252, 0.85)
    ), url('../assets/performance_view.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Add a subtle overlay for better readability */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure about content appears above the background */
.about-content {
    position: relative;
    z-index: 2;
}

/* Make sure the visual placeholder also appears above background */
.about-visual {
    position: relative;
    z-index: 2;
}