/* Import Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', 'Garamond', 'Baskerville', 'Baskerville Old Face', 'Times New Roman', serif;
    font-weight: 600;
}

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

/* Header Styles */
.header {
    background: #141C29;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #F2F2F2;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

.cta-button {
    background: #147162;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #124F4E;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: #F2F2F2;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    font-weight: 500;
}

.primary-button {
    display: inline-block;
    background: #124F4E;
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.primary-button:hover {
    background: #06213D;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-heading p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card a {
    text-decoration: none;
}

.service-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-card .learn-more {
    font-family: 'Montserrat', sans-serif;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-card .learn-more:hover {
    color: #0052a3;
}

/* Additional Services Page Specific Styles */
.services-banner {
    background: #147162;
    padding: 160px 0 80px;
    color: white;
    text-align: center;
}

.services-banner h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.services-banner p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-intro {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.services-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.capability-card {
    text-align: left;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.methodology-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.methodology-step {
    text-align: center;
    position: relative;
}

.methodology-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0066cc;
    font-size: 24px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Footer Styles */
.footer {
    background: #141C29;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.footer-mission-statement {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.footer .logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Blog */

.article-tag-header {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0066cc;
    margin-bottom: 16px;
}

.blog-header {
    background: #f8f9fa;
    padding: 160px 0 80px;
    text-align: center;
}

.blog-header .container {
    max-width: 800px;
}

.blog-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.blog-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.blog-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 24px;
}

.blog-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.blog-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1a1a1a;
}

.blog-content h3 {
    font-size: 24px;
    margin: 36px 0 20px;
    color: #1a1a1a;
}

.blog-content a {
    color: #124F4E;
    font-weight: 800;
    text-decoration: none;
}

.blog-content a:hover {
    color: #124F4E;
    font-weight: 800;
    text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Featured Articles Section */
.featured-articles {
    padding: 100px 0;
    background: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-content a {
    text-decoration: none;
}

.article-tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0066cc;
    margin-bottom: 12px;
}

.article-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.article-preview {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.read-more {
    font-family: 'Montserrat', sans-serif;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #0052a3;
}

/* Page Banner */
.page-banner {
    background: #1a1a1a;
    color: #fff;
    padding: 100px 0 60px;
    margin-bottom: 60px;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-banner p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* About Page Specific */
.team-section {
    padding: 80px 0;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.founder-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.values-section {
    margin-bottom: 50px; /* or 4rem, or whatever value you prefer */
}

.value-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Blog Post Specific */
.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.article-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.article-content-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content-full p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.article-content-full h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.article-content-full img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
}

/* Strategic Services Page Styles */
.services-detailed {
    background: #f8f9fa;
}

.service-overview {
    text-align: center;
    padding: 80px 0;
}

.service-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-intro p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.service-card.expanded {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card.expanded:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #0066cc;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card > p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-details {
    list-style: none;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-weight: 500;
}

.service-details li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.process-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.process-step h3 {
    margin-bottom: 16px;
}

.cta-section {
    background: #0066cc;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 16px;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 40px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Client Logos Section */
.client-logos {
    background-color: #f4f4f4;
    text-align: center;
    padding: 120px 0; /* Increased vertical padding */
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-items: center;
    gap: 2rem;
}

.client-logo {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    text-align: center;
    padding: 120px 0;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #333;
}

.testimonial-content {
    flex-grow: 1;
    padding: 0 2rem;
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta {
    background-color: #06213D;
    color: white;
    text-align: center;
    padding: 120px 0;
    margin: 0;
}

.cta .container {
    max-width: 800px;  /* Constrain content width */
    margin: 0 auto;
    padding: 0 20px;  /* Add horizontal padding */
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: white;
}

.cta p {
    margin-bottom: 40px;  /* Increased space between paragraph and button */
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.outline-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.outline-btn:hover {
    background-color: white;
    color: #06213D;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

#schedule-btn {
    background-color: white;
    color: #06213D;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#schedule-btn:hover {
    background-color: #f0f0f0;
}

/* Call to Action Outline Button */
.outline-btn {
    background: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.outline-btn:hover {
    background-color: #0066cc;
    color: white;
}

/* Blockquote */

.styled-blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.blockquote-content {
    position: relative;
    padding: 2rem;
}

.quote-text {
    font-family: 'EB Garamond', 'Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.quote-attribution {
    margin-top: 1.5rem;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.quote-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.quote-text::before,
.quote-text::after {
    color: #0066cc;
    opacity: 0.2;
    font-size: 4rem;
    line-height: 0;
    position: absolute;
}

.quote-text::before {
    content: '"';
    left: -1rem;
    top: 2rem;
}

.quote-text::after {
    content: '"';
    right: -1rem;
    bottom: 1rem;
}

/* Expertise Card */
.expertise-card {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  
  .expertise-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #222;
  }
  
  .expertise-card p {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  .values-grid, .expertise-grid {
    display: grid;
    gap: 50px; /* Controls space *between* cards */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #141C29;
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        transition: right 0.3s ease;
    }

    .nav-list.active {
        right: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        order: -1;
    }

    .about-text .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .process-steps {
            grid-template-columns: 1fr;
        }

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;  /* Stack articles vertically on mobile */
        gap: 30px;
    }

    .article-card {
        width: 100%;  /* Ensure full width */
    }

    .article-image {
        height: 250px;  /* Slightly taller image on mobile */
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo {
        max-height: 60px;
        max-width: 120px;
    }

    .services-capabilities,
    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .methodology-step::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        margin-bottom: 20px;
    }

    .value-card:last-child {
        margin-bottom: 0;
    }

    .founder-section {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .founder-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about-text {
        text-align: center;
    }

    .about-text .stats {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        max-width: 300px;
        margin: 40px auto 0;
    }

    .stat-item {
        text-align: center;
    }

    .quote-text {
        font-size: 1.25rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 3rem;
    }
}