/* --- Global Styles & Variables --- */
:root {
    --dark-navy: #0A1931;
    --light-text: #EFEFEF;
    --accent-cyan: #20C2D3;
    --accent-blue: #3E6EEF;
    --accent-gradient: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
}

body {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-navy);
    color: var(--light-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- FINAL Header & Navigation CSS --- */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 5%;
    border-bottom: 1px solid rgba(239, 239, 239, 0.1);
}
.header-logo { margin-bottom: 25px; }
.header-logo img { height: 225px; width: auto; }
.main-navigation ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 40px; margin: 0; padding: 0; }
.main-navigation a { text-decoration: none; color: var(--light-text); font-weight: 600; font-size: 18px; padding: 10px; transition: color 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }
.main-navigation a:hover { color: var(--accent-cyan); }

/* --- Homepage Hero Section --- */
.hero { display: flex; justify-content: center; align-items: center; text-align: center; padding: 80px 5%; }
.hero-content { max-width: 800px; }
.hero-content h1 { font-size: 4rem; font-weight: 700; margin-top: 0; margin-bottom: 20px; }
.hero-content p { font-size: 1.25rem; font-weight: 400; line-height: 1.6; margin-bottom: 40px; opacity: 0.9; }
.hero-content .highlight { color: var(--accent-cyan); font-weight: 700; }
.hero-cta-button { text-decoration: none; color: white; background: var(--accent-gradient); padding: 18px 36px; border-radius: 5px; font-size: 1.1rem; font-weight: 700; transition: transform 0.3s ease; display: inline-block; }
.hero-cta-button:hover { transform: scale(1.05); }
.sdvosb-badge { margin-top: 40px; display: flex; justify-content: center; align-items: center; gap: 15px; opacity: 0.8; }
.sdvosb-badge img { height: 50px; }
.sdvosb-badge span { font-weight: 600; }

/* --- Trust Bar Section --- */
.trust-bar { padding: 30px 5%; background-color: rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(239, 239, 239, 0.1); border-bottom: 1px solid rgba(239, 239, 239, 0.1); }
.trust-bar .container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; padding: 0; }
.framework-item span { font-weight: 600; font-size: 1rem; color: var(--light-text); opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Problem / Solution Section --- */
.problem-solution-section { padding: 80px 0; }
.problem-solution-section .container { text-align: center; }
.problem-solution-section h2 { font-size: 2.5rem; margin-bottom: 50px; }
.columns-container { display: flex; justify-content: space-between; gap: 40px; text-align: left; }
.column { flex-basis: 48%; background-color: rgba(0, 0, 0, 0.2); padding: 30px; border-radius: 8px; border: 1px solid rgba(239, 239, 239, 0.1); }
.column h3 { font-size: 1.8rem; margin-top: 0; margin-bottom: 15px; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.column p { font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }

/* --- Services Overview / Card Styles --- */
.services-overview { padding: 80px 0; background-color: #061429; }
.services-overview h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background-color: var(--dark-navy); padding: 40px 30px; text-align: center; border: 1px solid rgba(239, 239, 239, 0.1); border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
.service-icon { width: 60px; height: 60px; margin: 0 auto 20px auto; color: var(--accent-cyan); }
.service-card h4 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { font-size: 1rem; line-height: 1.6; opacity: 0.8; }
.cta-button-outline { display: table; margin: 50px auto 0 auto; text-decoration: none; color: var(--light-text); border: 2px solid var(--accent-blue); padding: 14px 28px; border-radius: 5px; font-weight: 700; transition: background-color 0.3s ease, color 0.3s ease; }
.cta-button-outline:hover { background-color: var(--accent-blue); color: white; }

/* --- Differentiators Section --- */
.differentiators { padding: 80px 0; }
.differentiators h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 60px; }
.differentiator-row { display: flex; align-items: center; gap: 60px; margin-bottom: 60px; }
.differentiator-row:last-child { margin-bottom: 0; }
.differentiator-image, .differentiator-text { flex: 1; }
.differentiator-image img { width: 100%; max-width: 500px; height: auto; border-radius: 8px; display: block; }
.differentiator-text h3 { font-size: 2rem; margin-top: 0; margin-bottom: 15px; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.differentiator-text p { font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }
.differentiator-text .subsection-title { margin-top: 40px; }
.differentiator-row.full-width-blurb { text-align: center; }

/* --- Blog Teaser (Homepage) --- */
.blog-teaser { padding: 80px 0; background-color: #061429; }
.blog-teaser h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 15px; }
.blog-teaser .section-intro { text-align: center; max-width: 700px; margin: 0 auto 50px auto; font-size: 1.1rem; line-height: 1.7; opacity: 0.8; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background-color: var(--dark-navy); border: 1px solid rgba(239, 239, 239, 0.1); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
.blog-card img { width: 100%; height: 250px; object-fit: cover; display: block; border-bottom: 1px solid rgba(239, 239, 239, 0.1); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-category { display: inline-block; background-color: rgba(255, 255, 255, 0.1); padding: 5px 10px; border-radius: 5px; font-size: 0.8rem; font-weight: 700; margin-bottom: 15px; align-self: flex-start; }
.card-content h3 { font-size: 1.4rem; margin-top: 0; margin-bottom: 15px; }
.card-content h3 a { text-decoration: none; color: var(--light-text); transition: color 0.3s ease; }
.card-content h3 a:hover { color: var(--accent-cyan); }
.card-content p { font-size: 1rem; line-height: 1.6; opacity: 0.8; margin-bottom: 20px; flex-grow: 1; }
.read-more { text-decoration: none; color: var(--accent-cyan); font-weight: 700; }

/* --- Final CTA Section --- */
.final-cta { padding: 80px 5%; background: var(--accent-gradient); text-align: center; }
.final-cta h2 { font-size: 2.5rem; margin-top: 0; margin-bottom: 15px; color: white; }
.final-cta p { font-size: 1.25rem; line-height: 1.6; margin-bottom: 30px; color: white; opacity: 0.9; }

/* --- FINAL Footer Section --- */
.site-footer { background-color: #041023; padding: 60px 0 20px 0; border-top: 1px solid rgba(239, 239, 239, 0.1); }
.footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; align-items: start; }
.footer-col .logo { margin-bottom: 20px; }
.footer-col .logo img { height: 150px; width: auto; }
.footer-col h4 { font-size: 1.2rem; margin-top: 0; margin-bottom: 20px; color: var(--light-text); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: var(--light-text); opacity: 0.8; transition: opacity 0.3s ease; }
.footer-col a:hover { opacity: 1; color: var(--accent-cyan); }
.footer-col address { font-style: normal; line-height: 1.7; }
.social-links a { display: inline-block; width: 40px; height: 40px; }
.social-links svg { width: 100%; height: 100%; }
.footer-bottom { border-top: 1px solid rgba(239, 239, 239, 0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; opacity: 0.7; }
.footer-bottom p { margin: 5px 0; }

/* --- Services Page Specific Styles --- */
.page-hero { padding: 80px 0; text-align: center; background-color: #061429; border-bottom: 1px solid rgba(239, 239, 239, 0.1); }
.page-hero h1 { font-size: 3rem; margin-top: 0; margin-bottom: 15px; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; opacity: 0.9; line-height: 1.6; }
.frameworks-section { padding: 80px 0; }
.frameworks-section h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 50px; }
.frameworks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.framework-column { background-color: rgba(0,0,0,0.2); padding: 30px; border-radius: 8px; border: 1px solid rgba(239, 239, 239, 0.1); }
.framework-column h3 { font-size: 1.8rem; margin-top: 0; margin-bottom: 20px; border-bottom: 2px solid var(--accent-cyan); padding-bottom: 10px; }
.framework-column ul { list-style: none; padding: 0; margin: 0; }
.framework-column ul li { font-size: 1.1rem; margin-bottom: 15px; padding-left: 25px; position: relative; }
.framework-column ul li::before { content: ''; position: absolute; left: 0; top: 2px; height: 20px; width: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='%2320C2D3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.core-offerings { padding: 80px 0; background-color: #061429; }
.core-offerings h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 60px; }
.offering-row { display: flex; align-items: center; gap: 60px; margin-bottom: 60px; }
.offering-row:last-child { margin-bottom: 0; }
.offering-row:nth-child(even) { flex-direction: row-reverse; }
.offering-text, .offering-image { flex: 1; }
.offering-image img { width: 100%; max-width: 500px; height: auto; border-radius: 8px; display: block; }
.offering-text h3 { font-size: 2rem; margin-top: 0; margin-bottom: 15px; }
.offering-text p { font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }
.who-we-help { padding-top: 80px; padding-bottom: 80px; }

/* --- About Us Page Specific Styles --- */
.accomplishments-list { list-style: none; padding-left: 0; margin-top: 25px; }
.accomplishments-list li { padding-left: 35px; position: relative; font-size: 1.05rem; line-height: 1.6; margin-bottom: 15px; }
.accomplishments-list li::before { content: ''; position: absolute; left: 0; top: 5px; height: 24px; width: 24px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='%2320C2D3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.mission-section { padding: 80px 5%; background-color: #061429; text-align: center; }
.mission-section h2 { font-size: 2.5rem; margin-top: 0; margin-bottom: 30px; }
.mission-section p { font-size: 1.5rem; font-style: italic; line-height: 1.7; max-width: 900px; margin: 0 auto; opacity: 0.9; }
.experience-spectrum { padding-top: 80px; padding-bottom: 80px; background-color: var(--dark-navy); }
.certifications { padding: 80px 5%; background-color: #061429; }
.certifications h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 50px; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.cert-card { background-color: var(--dark-navy); padding: 30px; border-radius: 8px; border: 1px solid rgba(239, 239, 239, 0.1); text-align: center; }
.cert-card h4 { font-size: 1.4rem; margin-top: 0; margin-bottom: 10px; color: var(--accent-cyan); }
.cert-card span { font-family: monospace; font-size: 1rem; opacity: 0.8; }

/* --- REFACTORED Blog & Article Page Styles --- */
.featured-article { padding: 80px 0; }
.featured-card { display: flex; align-items: center; gap: 50px; background-color: #061429; border: 1px solid rgba(239, 239, 239, 0.1); border-radius: 8px; overflow: hidden; padding: 40px; }
.featured-image { flex-basis: 55%; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-content { flex-basis: 45%; }
.featured-content h2 { font-size: 2.2rem; margin-top: 0; margin-bottom: 20px; }
.featured-content h2 a { color: var(--light-text); text-decoration: none; transition: color 0.3s ease; }
.featured-content h2 a:hover { color: var(--accent-cyan); }
.featured-content p { font-size: 1.1rem; line-height: 1.7; opacity: 0.8; margin-bottom: 30px; }
.featured-content .cta-button-outline { display: inline-block; }
.latest-articles { padding: 80px 0; border-top: 1px solid rgba(239, 239, 239, 0.1); }
.latest-articles h2 { text-align: center; font-size: 2.5rem; margin-top: 0; margin-bottom: 50px; }
.article-header { padding: 0 5%; margin-bottom: 20px; }
.article-header .container { text-align: center; }
.article-header img { width: 100%; height: auto; object-fit: contain; display: block; margin-bottom: 20px; border-radius: 8px; }
.article-header h1 { font-size: 2.5rem; margin: 0 auto 10px auto; max-width: 1200px; }
.post-meta { font-size: 1rem; opacity: 0.7; font-weight: 600; }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding: 20px 0 40px 0; }
.article-content { background-color: #FFFFFF; color: #212529; padding: 40px 50px; border-radius: 8px; font-size: 1.1rem; line-height: 1.7; }
.article-content p { text-align: justify; margin-top: 0; margin-bottom: 1em; }
.article-content h2 { font-size: 1.6rem; text-align: left; margin-top: 1.5em; margin-bottom: 0.6em; color: #000000; }
.social-share { margin-top: 30px; padding-top: 20px; border-top: 1px solid #e0e0e0; display: flex; align-items: center; gap: 15px; }
.social-share span { font-weight: 600; color: #212529; }
.social-share a { width: 30px; height: 30px; color: #444444; }
.sidebar { display: flex; flex-direction: column; gap: 30px; }
.widget { background-color: #061429; padding: 25px; border-radius: 8px; border: 1px solid rgba(239, 239, 239, 0.1); }
.widget-title { font-size: 1.5rem; margin-top: 0; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(239, 239, 239, 0.1); }
.search-form { display: flex; }
.search-form input { flex-grow: 1; border: 1px solid rgba(239, 239, 239, 0.2); background-color: var(--dark-navy); padding: 10px; color: var(--light-text); border-radius: 5px 0 0 5px; }
.search-form button { border: none; background: var(--accent-gradient); color: white; padding: 0 15px; cursor: pointer; border-radius: 0 5px 5px 0; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { text-decoration: none; color: var(--light-text); opacity: 0.8; }
.category-list a:hover { opacity: 1; }
.cta-widget { text-align: center; }
.cta-widget .cta-button { margin-top: 15px; }

/* ---
   Responsive Styles
--- */
@media (max-width: 992px) {
    .services-grid, .blog-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .differentiator-row { flex-direction: column; text-align: center; }
    .differentiator-row:last-child .differentiator-image { order: -1; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .frameworks-grid { grid-template-columns: 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .featured-card { flex-direction: column; }
}

@media (max-width: 768px) {
    .header-logo img { height: 150px; }
    .main-navigation ul { gap: 15px 25px; }
    .main-navigation a { font-size: 16px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .trust-bar { gap: 20px; justify-content: space-around; }
    .framework-item span { font-size: 0.8rem; }
    .problem-solution-section h2, .differentiators h2 { font-size: 2rem; }
    .columns-container { flex-direction: column; }
    .services-grid, .blog-grid, .cert-grid { grid-template-columns: 1fr; }
    .differentiator-text h3 { font-size: 1.8rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-slogan { padding-right: 0; }
    .footer-col .logo img { margin: 0 auto; }
    .page-hero h1, .core-offerings h2, .mission-section h2, .certifications h2, .experience-spectrum h2, .latest-articles h2, .services-overview h2, .blog-teaser h2, .final-cta h2 { font-size: 2rem; }
    .offering-row, .offering-row:nth-child(even) { flex-direction: column; text-align: center; }
    .offering-row .offering-image { order: -1; }
    .offering-text h3 { font-size: 1.8rem; }
    .mission-section p { font-size: 1.2rem; }
    .article-header h1 { font-size: 2rem; }
    .featured-content { padding: 30px; }
    .featured-content h2 { font-size: 1.8rem; }
    .article-content { padding: 25px; }
    .article-content h2 { font-size: 1.6rem; }
}