@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700&family=Inter:wght@400;700&display=swap');

/* General Styles */
:root {
    --primary-color: #0a0a23; /* Dark Blue/Almost Black */
    --secondary-color: #f5f6f7; /* Off-white */
    --accent-color: #4f46e5;   /* Indigo - Keeping for reference, but replacing usage */
    --text-color: #333;
    --heading-font: 'Exo 2', sans-serif;
    --body-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color); /* Changed from accent-color */
}

/* Main Content & Sections */
main {
    padding: 0 2rem;
}

section {
    padding: 2rem 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Hero Section */
#hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Legal Text */
#privacy-policy {
	text-align: left;
}

.legal-text {
	font-family: "Courier New", Courier, monospace;
}


/* Services Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Min-width increased */
    gap: 2rem;
    text-align: left;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color); /* Changed from accent-color */
}

/* Contact Section */
#contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color); /* Changed from accent-color */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #222; /* Darker shade for hover */
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background-color: #fff;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* Space between icons */
}

.linkedin-icon {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    color: #333; /* Default color for the SVG fill if not overridden */
}

.linkedin-icon:hover {
    filter: grayscale(0%); /* Color on hover */
}

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

    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 0.75rem;
    }

    main {
        padding: 0 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 1.5rem 0;
    }
}
