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

:root {
    --primary-color: #0274be;
    --text-color: #54595f;
    --heading-color: #000000;
    --light-gray: #f4f5f7;
    --border-color: #e6e7e8;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
nav {
    background: var(--white);
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo a {
    display: block;
    line-height: 0;
}

nav .logo img {
    height: 150px !important;  /* Adjust this size as needed */
    width: auto !important;
    max-height: 150px !important;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 24px;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: var(--white);
    padding: 180px 20px 100px;
    text-align: center;
    margin-top: 61px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 100px 20px;
}

section.gray-bg {
    background: var(--light-gray);
}

section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

section .subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: var(--light-gray);
    padding: 140px 20px 50px;
    text-align: center;
    margin-top: 61px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--heading-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Clients Section */
.clients-section {
    background: var(--heading-color);
    padding: 10px 20px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.client-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);  /* Makes any logo white */
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

/* Responsive */
@media (max-width: 968px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .client-logo img {
        max-width: 150px;
    }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h2,
.blog-card h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}

.blog-card h2 a,
.blog-card h3 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.blog-content p {
    color: var(--text-color);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    width: 100%;
    height: 900px;
    background: #ddd;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text h2 {
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Experience Grid */
.experience-grid,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.experience-item,
.reason-item {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
}

.experience-item h3,
.reason-item h3 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.experience-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.reason-item p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
}

/* Service Detail Pages */
.service-detail-item {
    padding: 50px 20px;
}

.service-detail-item:first-of-type {
    padding-top: 0px;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.service-detail-content h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin: 30px 0 15px;
    font-weight: 700;
}

.service-detail-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-info {
    padding: 5px 20px 100px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    font-size: 16px;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question span {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 300;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 15px;
}

.faq-answer.active {
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.contact-info h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.contact-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    border: 2px solid var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.7;
}

/* Blog Post Styles */
.blog-post {
    margin-top: 61px;
}

.post-header {
    background: var(--light-gray);
    padding: 100px 20px 60px;
    text-align: center;
}

.post-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.post-header h1 {
    font-size: 48px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    color: var(--text-color);
    font-size: 14px;
}

.post-meta span {
    margin: 0 10px;
}

.post-content {
    padding: 80px 20px;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
}

.post-body .lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.post-body h2 {
    font-size: 32px;
    color: var(--heading-color);
    margin: 50px 0 20px;
    font-weight: 700;
    text-align: left;
}

.post-body p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0 20px 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.post-body ul li,
.post-body ol li {
    margin-bottom: 10px;
}

.post-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-body strong {
    font-weight: 700;
    color: var(--heading-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.post-navigation span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.post-navigation a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.post-navigation a:hover {
    color: var(--primary-color);
}

.post-cta {
    background: var(--light-gray);
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.post-cta h3 {
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 20px;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section .subtitle {
    color: var(--white);
    opacity: 0.9;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .cta-button:hover {
    background: transparent;
    color: var(--white);
}

/* Footer */
footer {
    background: var(--heading-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 40px;
    }

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

    .services-grid,
    .experience-grid,
    .reasons-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 140px 20px 80px;
    }

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

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 60px 20px;
    }

    section h2,
    .page-header h1 {
        font-size: 32px;
    }

    .post-header h1 {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
        gap: 30px;
    }

    .nav-next {
        text-align: left;
    }
}
