﻿
/* Stats Highlight Styles */
.stats-highlight {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(5px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}


/* Software Section Styles */
.software-section {
    background-color: #e6f2f5; /* Light blue-gray background */
    padding: 70px 0;
}

.software-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
}

@media (max-width: 768px) {
    .software-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Section Styles */
.passion-section {
    background-color: #00afd7;
    color: white;
    padding: 60px 0;
}

.section-headline h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-headline h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.section-padding {
    padding: 70px 0;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
}

/* Software Section Styles */
.software-section {
    background-color: #e6f2f5; /* Light blue-gray background */
}

/* Facts Section Styles */
.facts-section {
    background-color: #ffffff;
}

.facts-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

    .facts-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

        .facts-list li:before {
            content: "→";
            color: #5cb85c;
            position: absolute;
            left: 0;
            top: 0;
        }

/* Team Section Styles */
.team-section {
    background-color: #f0f6e6; /* Light green-gray background */
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

    .feature-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
    }

        .feature-list li:before {
            content: "→";
            color: #5cb85c;
            position: absolute;
            left: 0;
            top: 0;
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-headline h1 {
        font-size: 2.2rem;
    }

    .section-headline h3 {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}


/* Call to Action Section */
.cta-section {
    background-color: #00afd7; /* Matching the teal/blue from your image */
    color: white;
}

/* Get Started Section */
.get-started-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.divider {
    height: 3px;
    width: 120px;
    background-color: #dee2e6;
    margin: 0 auto;
}

.btn-primary {
    background-color: #00afd7;
    border-color: #00afd7;
}

    .btn-primary:hover {
        background-color: #0095b6;
        border-color: #0095b6;
    }

.btn-outline-primary {
    color: #00afd7;
    border-color: #00afd7;
}

    .btn-outline-primary:hover {
        background-color: #00afd7;
        border-color: #00afd7;
    }