/* General Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header & Navigation */
header {
    background: linear-gradient(to right, #001f3f, #003366);
    color: white;
    padding: 1rem 5%;
    text-align: center;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

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

nav ul li {
    margin-left: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #f0a500;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    background-color: #f0a500;
    color: #001f3f;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ffc107;
}

/* Main Content Sections */
main {
    padding: 40px 5%;
}

section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #001f3f;
}

/* Expertise Matrix */
.expertise-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.expert-card {
    background: #f9f9f9;
    border-left: 5px solid #003366;
    padding: 30px;
    border-radius: 8px;
    width: 45%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.expert-title h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #001f3f;
}

.expert-title p {
    font-style: italic;
    color: #555;
    margin-top: -10px;
    margin-bottom: 20px;
}

.ai-nexus {
    background: #eef3f8;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.ai-nexus h4 {
    color: #003366;
    margin-top: 0;
}

/* Centaur Doctrine/Hybrid Solution */
#centaur-doctrine .slogan {
    text-align: center;
    font-size: 2rem; /* Increased font size */
    font-weight: bold; /* Made text bold */
    color: #d9534f; /* Changed color to a shade of orange/red */
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    padding: 20px 10px;
    margin: -40px -40px 40px -40px; /* Adjusted margin to make it full-width */
    border-radius: 8px 8px 0 0;
}


.workflow-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    background-color: #003366;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h4 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 10px;
}

/* Contact Form */
#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form button {
    background-color: #003366;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #001f3f;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 5%;
    background: #001f3f;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .expert-card { width: 100%; }
    nav ul { display: none; } /* Basic responsive nav handling */
    #centaur-doctrine .slogan {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
}
