/* Global Styles */
:root {
    --primary-color: #2563eb; /* Blue 600 */
    --primary-hover: #1d4ed8; /* Blue 700 */
    --text-dark: #1f2937; /* Gray 800 */
    --text-light: #6b7280; /* Gray 500 */
    --white: #ffffff;
    --background-light: #f9fafb; /* Gray 50 */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Navigation Styles */
.nav-container {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .nav-links a:hover {
        color: var(--primary-color);
    }

.login-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .login-button:hover {
        background-color: var(--primary-hover);
    }

/* Hero Section Styles */
.hero-section {
    padding-top: 5rem;
    background-color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--primary-color);
}

.hero-text {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

    .primary-button:hover {
        background-color: var(--primary-hover);
    }

.secondary-button {
    background-color: #dbeafe; /* Blue 100 */
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

    .secondary-button:hover {
        background-color: #bfdbfe; /* Blue 200 */
    }

/* Features Section Styles */
.features-section {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
}

/* Footer Styles */
.footer {
    background-color: #1f2937; /* Gray 800 */
    color: #9ca3af; /* Gray 400 */
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Services Page Styles */
.services-hero {
    background-color: var(--white);
    position: relative;
}

.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }

    .service-card h3 {
        color: var(--text-dark);
    }

    .service-card ul {
        list-style-type: none;
    }

        .service-card ul li {
            position: relative;
            padding-left: 1.5rem;
        }

            .service-card ul li:before {
                content: "•";
                position: absolute;
                left: 0;
                color: var(--primary-color);
            }

.nav-links .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-hero {
        padding-top: 6rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Pricing CSS */
.pricing-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }





.social-icons {
    display: inline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-icon svg {
    color: #507a95;
    width: 24px;
    height: 24px;
}