:root {
    --navy: #0A1A3A;
    --charcoal: #2D3748;
    --cyan: #00D1FF;
    --amber: #FFB224;
    --dark-bg: #0F1419;
    --light: #F7FAFC;
    --gray: #718096;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--charcoal);
    line-height: 1.6;
}

header {
    background-color: var(--navy);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.logo-accent {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-cta {
    background-color: var(--amber);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

section {
    padding: 4rem 2rem 4rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--light);
}

.hero {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-bg) 100%);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,209,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,209,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    display: none;
}

.btn-primary {
    background-color: var(--cyan);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--amber);
}

.btn-secondary {
    border: 2px solid var(--cyan);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    //border-top: 4px solid var(--cyan);
    transition: transform 0.3s;
}

.service-card.path a {
    color: #013395;
    text-decoration: none;
}

.service-card.path a:hover {
    text-decoration: underline;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.about-list {
    list-style: none;
}

.about-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

p.description {
    color: #000;
}

footer {
    background-color: var(--navy);
    color: var(--light);
    padding: 3rem 2rem;
    text-align: center;
}

@media(max-width:768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }
        /* Footer */
        footer {
            background-color: var(--navy);
            color: var(--light);
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--cyan);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        /* Footer Social Icons */
        .footer-social {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .footer-social a {
            color: var(--light);
            font-size: 1.6rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            color: var(--cyan);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        #pricing {
            padding-top: 4.5rem;
        }