:root {
    --primary-color: #0D1B2A; /* Dark Blue */
    --secondary-color: #415A77; /* Shadow Blue */
    --accent-color: #E0E1DD; /* Platinum */
    --text-color: #E0E1DD;
    --highlight-color: #3498db; /* Bright Blue for highlights */
    --card-bg: #1B263B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--primary-color);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
}

/* Navigation */
nav {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.site-logo {
    height: 2.5rem;
    width: auto;
    margin-right: 0.7rem;
    vertical-align: middle;
    border-radius: 0.25rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--highlight-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(27, 38, 59, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Sections */
section {
    padding: 6rem 10%;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--highlight-color);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.approach-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

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

/* Contact Form */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #b0b0b0;
}

#contact-form button,
.engage-btn {
    display: inline-block;
    background: var(--highlight-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

#contact-form button:hover,
.engage-btn:hover {
    background: #2980b9;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

#contact-form button:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 4rem 10%;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

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

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 300px;
    border: 1px solid var(--secondary-color);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 1rem;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--highlight-color);
}

.team-member h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #ccc;
}

.team-member .bio {
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Or implement a hamburger menu */
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 4rem 5%;
    }

    h2 {
        font-size: 2rem;
    }
}
