/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- Header --- */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-weight: 500;
    color: #555;
}

.nav-list a:hover {
    color: #0056b3;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    background-color: #fff;
    color: #0056b3;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    background-color: #eee;
}

/* --- Section Utilities --- */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

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

/* --- Services Card --- */
.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
    text-align: center;
}

.card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* --- Leadership / Founder Section --- */
.team {
    background-color: #fff;
}

.profile-card {
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.profile-name {
    font-size: 1.5rem;
    color: #222;
}

.profile-role {
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-outline {
    border: 2px solid #0077b5; /* LinkedIn Blue */
    color: #0077b5;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: #0077b5;
    color: white;
}

.link-text {
    color: #555;
    font-size: 0.95rem;
}

.link-text:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Contact Section --- */
.contact {
    background-color: #e9ecef;
    text-align: center;
}

.contact-box {
    margin-top: 20px;
    background: white;
    display: inline-block;
    padding: 30px 50px;
    border-radius: 8px;
}

.email-highlight {
    color: #0056b3;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
    background-color: #333;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

.font-bold {
	font-weight: bold;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .profile-card {
        width: 100%;
    }
}