/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #333;
    color: white;
}

nav .logo {
    font-size: 1.5em;
}

nav ul {
    display: flex;
    gap: 1.5em;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.5); /* fallback for overlay effect */
    background-blend-mode: overlay;
}


.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.cta-button {
    margin-top: 1em;
    padding: 0.75em 1.5em;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e5c600;
}

/* Sections */
section {
    padding: 3em 2em;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    margin-bottom: 1em;
    font-size: 2em;
    color: #333;
}

/* Card Container */
.card-container {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card Styles */
.card {
    background-color: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonial {
    font-style: italic;
}

/* Contact Section */
#contact {
    background-color: #333;
    color: white;
    padding: 3em 2em;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}

