/* style.css */

/* --- Variables and General Setup --- */
:root {
    --primary-color: #003366; /* Deep Navy Blue */
    --accent-color: #ffc72c;  /* Gold/Yellow for CTA */
    --text-color: #333333;
    --light-bg: #f0f0f0;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif; /* Using Roboto font for professionalism */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5em 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
}

.nav-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-bar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Main Content Sections --- */
.section {
    padding: 60px 5%;
    text-align: center;
}

.section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2em;
}

.hero {
    background-color: var(--light-bg);
    padding: 100px 5%;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* --- Call-to-Action (CTA) Button --- */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #ffd764;
    transform: translateY(-2px);
}

/* --- Key Features Section --- */
.features-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background-color: var(--white);
    border: 1px solid var(--light-bg);
    padding: 30px;
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2em 5%;
    font-size: 0.9em;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* --- Responsive Design (Basic Mobile adjustments) --- */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    .nav-bar {
        margin-top: 15px;
    }
    .nav-bar a {
        margin: 0 10px 0 0;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .features-container {
        flex-direction: column;
    }
    .feature-box {
        margin-bottom: 20px;
    }
}


/* --- Specific Page Styles (Added for clarity/organization) --- */

/* About Page Specific Styles */
.about-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}
.about-content h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}
.about-content p {
    margin-bottom: 25px;
    font-size: 1.15em;
}
.pillar-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
}
.pillar-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}


/* Solutions/Tracks Page Specific Styles */
.solutions-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 5% 40px;
    text-align: center;
}
.solutions-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}
.solutions-header p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
}
.track-section {
    padding: 50px 5%;
    border-bottom: 1px solid var(--light-bg);
    text-align: left;
}
.track-section:nth-child(odd) {
    background-color: var(--light-bg);
}
.track-section h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}
.track-section h3 {
    font-size: 1.5em;
    color: var(--text-color);
    margin-top: 15px;
    margin-bottom: 10px;
}
.track-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}
.tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 10px;
}


/* Contact Page Specific Styles */
.engagement-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.engagement-container h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}
.placeholder-box {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #ddd;
}
.placeholder-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.placeholder-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.social-links a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s;
}
.social-links a:hover {
    background-color: #004488;
}
.hero-image {
            max-width: 50%; /* Ensures image is responsive */
            height: auto;    /* Maintains aspect ratio */
            margin-top: 40px; /* Space below CTA */
            border-radius: 8px; /* Slightly rounded corners */
            box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* Subtle shadow */
			display: block; /* Treat the image as a block element */
			margin-left: auto; /* Push the left margin to the maximum */
			margin-right: auto; /* Push the right margin to the maximum */