:root {
    /* New Palette from Image */
    --color-bg-pink: #EE74D3;
    --color-red: #E93826;
    --color-beige: #BCA07D;
    --color-purple: #6F2DBD;
    --color-yellow: #F9C246;
    --color-orange: #F08330;
    --color-blue: #3384F3;
    --color-dark-navy: #0D1B2A;

    /* User Requested Primary Colors */
    --brand-lime: #C9F269;
    --brand-dark-green: #003428;

    /* Mapping to functional variables */
    --primary-color: var(--brand-dark-green);
    --secondary-color: #fff;
    --accent-pink: var(--color-bg-pink);
    --accent-green: var(--brand-lime);
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Global Utility Classes */
.global-padding {
    padding-left: 5%;
    padding-right: 5%;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 400;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

/* Button Component Styles */
.site-btn {
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-body);
}

/* Sizes */
.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-md {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Theme: Light (For Light Backgrounds) */
.btn-light {
    background-color: var(--primary-color); /* Dark Green */
    color: #fff;
}

.btn-light:hover {
    background-color: var(--accent-green); /* Lime */
    color: var(--primary-color); /* Dark Green */
    border-color: var(--primary-color); /* Darker Border */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Theme: Dark (For Dark Backgrounds - Reverse) */
.btn-dark {
    background-color: var(--accent-green); /* Lime */
    color: var(--primary-color); /* Dark Green */
}

.btn-dark:hover {
    background-color: var(--primary-color); /* Dark Green */
    color: #fff; /* White */
    border-color: var(--accent-green); /* Lime Border */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specific overrides for Hero Button positioning */
site-button[href="#"] .site-btn.btn-lg {
    margin-left: 5%;
    margin-bottom: 6rem;
}

/* Header / Hero */
.hero {
    position: relative;
    padding-top: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    width: 100%; /* Full width */
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-small img {
    /* Removed border-radius: 50% as it might cut off the logo if it's not square */
    display: block;
}

.nav-logo {
    width: 120px; /* Bigger logo in nav */
    height: auto;
}

.footer-logo {
    width: 120px; /* Bigger logo in footer */
    height: auto;
}

.menu-btn {
    background: var(--accent-green);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero-content {
    text-align: left;
    margin-top: 12rem; /* Increased top margin */
}

.giant-text {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--primary-color);
    -webkit-text-stroke: 0;
    margin-bottom: 3rem; /* Reduced to make room for button */
    position: relative;
    z-index: 1;
    padding-left: 5%; /* Use percentage padding */
    max-width: 90%;
}

/* Removed old button classes as they are replaced by .site-btn component */
/* .hero-cta-btn, .nav-cta, .submit-btn, .footer-cta-btn styles removed */

.hero-image-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

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

.hero-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    color: #fff;
    text-align: left;
    z-index: 2;
}

.location {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 2.5rem;
    line-height: 1.1;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 4rem;
    max-width: 900px;
}

.about-description {
    max-width: 700px;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    border-top: 1px solid #eee;
    padding-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
}

.stat-text {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #505050;
}

/* Project Showcase */
.project-showcase {
    padding: 0; /* Remove padding to allow full-screen cards */
}

.project-card {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.project-card .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.project-header .project-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 130%;
}

.project-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.project-image {
    max-width: 100%;
}

.project-image img {
    border-radius: 20px;
    height: auto;
    max-height: 800px;
    width: 100%;
    object-fit: cover;
}

.project-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

.project-details .project-title {
    font-size: 3.5rem;
    line-height: 130%;
    margin-bottom: 0.5rem;
}

.project-meta {
    margin-bottom: 0;
}

.project-meta li {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-meta li svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    opacity: 0.8;
}

.project-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

.project-cta {
    margin-top: 1rem;
    border-radius: 100px;
}

.project-cta .view-all {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent-green);
    border-radius: 100px;
    transition: background-color 0.3s ease;
}

.project-cta .view-all:hover {
    background-color: var(--accent-green);
    color: var(--primary-color);
}

.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
}

.view-all {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-green);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #f5f5f5; /* Match Industries bg */
    color: var(--primary-color);
}

/* Industries Section */
.industries {
    padding: 0 0 6rem;
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Specific Sizing for Bento Effect */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .service-item.large {
        grid-column: span 2;
        grid-row: span 2;
        background-color: var(--primary-color);
        color: #fff;
    }
    
    .service-item.wide {
        grid-column: span 2;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-item.wide {
        grid-column: span 2;
    }
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Adjust text color for the dark card */
.service-item.large p {
    color: #f0f0f0;
    font-size: 1rem;
}

.industry-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-arrows .arrow-btn {
    background: none;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: auto;
    height: auto;
    cursor: pointer;
    margin-left: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 calc(50% - 1rem); /* Show 2 cards at a time with gap */
    min-width: calc(50% - 1rem);
    margin-right: 1rem;
    box-sizing: border-box;
    padding: 3rem;
    position: relative;
    border-radius: 20px;
}

.pink-card { background-color: var(--accent-pink); color: #000; }
.green-card { background-color: var(--color-beige); color: #000; }

/* Responsive for slider */
@media (max-width: 768px) {
    .card {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        margin-right: 1rem;
    }
}

.quote {
    font-size: 1.5rem;
    font-family: var(--font-body);
    margin-bottom: 2rem;
}

.author .name {
    font-weight: 600;
}

.author .role {
    font-size: 0.9rem;
    color: #666;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    font-family: serif;
    opacity: 0.2;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 16px;
    margin-top: 2rem;
    width: 100%;
}

.client-logos img {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    height: 80px; /* Fixed height forconsistency */
    width: 100%; /* Fill the grid cell */
    object-fit: contain;
}

.client-logos img:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* News Section */
.news {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.news-item img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.news-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-heading {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-sub {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input, .form-group textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
}

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

.full-width {
    width: 100%;
    margin-bottom: 2rem;
}

/* .submit-btn removed */

/* Footer */
.footer {
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
}

.footer-brand-col .footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0;
    color: #ccc;
}

/* .footer-cta-btn removed */

.footer-links-col h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
}

.footer-links-col ul li {
    margin-bottom: 1rem;
}

.footer-links-col ul li a {
    color: #aaa;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-green);
}

/* Giant Text Adjustment */
.giant-text-footer {
    font-size: 22vw;
    line-height: 0.8;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    opacity: 0.05; /* More subtle */
    width: 100%;
    display: block;
    position: absolute;
    bottom: 5rem; /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: var(--font-heading);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.company-deck {
    display: flex;
    align-items: center;
}

.deck-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.deck-btn .icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-green);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.deck-btn .text {
    display: flex;
    flex-direction: column;
}

.deck-btn .label {
    font-weight: 600;
    font-size: 1rem;
}

.deck-btn .sub {
    font-size: 0.8rem;
    color: #aaa;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
}

.socials-footer {
    display: flex;
    gap: 1rem;
}

.socials-footer a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.socials-footer a:hover {
    background: var(--accent-green);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .company-deck {
        margin-bottom: 1rem;
    }
}

/* Project Details Page */
.project-details-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.project-sidebar {
    position: sticky;
    top: 2rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 20px;
}

.sidebar-block {
    margin-bottom: 2rem;
}

.sidebar-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: block;
}

.sidebar-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-body);
}

.service-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: #555;
}

.project-main-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.project-main-content h2 {
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.project-main-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.project-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.project-main-content img {
    border-radius: 20px;
    margin: 2rem 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.project-main-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-main-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #444;
}

.share-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

@media (max-width: 900px) {
    .project-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-sidebar {
        position: relative;
        top: 0;
    }
}

/* Blog Details Page */
.blog-details-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: 8rem; /* Adjust based on nav height */
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 20px;
}

.toc-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.toc-list li {
    margin-bottom: 1rem;
}

.toc-list a {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--accent-green); /* Green highlight */
}

.blog-social-share {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-label {
    font-weight: 600;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.blog-social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.blog-social-icon:hover {
    color: var(--accent-green);
}

.blog-main-content {
    max-width: 100%;
}

.blog-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    background-color: #fff;
    padding: 2px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    position: relative;
    padding-left: 2rem;
}

.blog-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #ddd;
}

@media (max-width: 600px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-date {
        padding-left: 0;
    }
    
    .blog-date::before {
        display: none;
    }
}

.blog-featured-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-body p {
    margin-bottom: 2rem;
}

.blog-body h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.blog-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.blog-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .blog-details-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .giant-text { font-size: 15vw; }
    .project-content { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .item-1, .item-2, .item-3, .item-4, .item-5 { grid-column: auto; grid-row: auto; }
    .testimonial-cards { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 1rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    color: #000;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    height: 30px;
    width: auto;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: #000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.close-menu-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}

/* Base style for links and the button */
.mobile-link-item:not(.has-submenu), 
.mobile-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Specific styles for the container of the submenu */
.mobile-link-item.has-submenu {
    display: block; /* Stack button and submenu */
    border-bottom: 1px solid #eee;
    padding: 0;
}

/* Remove border from button inside submenu container to avoid double border */
.mobile-link-item.has-submenu .mobile-link-btn {
    border-bottom: none;
}

.mobile-link-item:hover, .mobile-link-btn:hover {
    color: #666;
}

.arrow-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    padding: 1rem 0 2rem;
    background: #f9f9f9;
}

.mobile-submenu.active {
    display: block;
}

.mobile-service-category {
    margin-bottom: 1.5rem;
}

.mobile-service-category h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.mobile-service-category ul {
    list-style: none;
    padding-left: 1rem;
}

.mobile-service-category li {
    margin-bottom: 0.8rem;
}

.mobile-service-category a {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-service-category a:hover {
    color: #000;
    text-decoration: underline;
}

/* Navigation Component */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background: transparent;
    border-bottom: rgb(238, 238, 238) 1px solid;
}

.site-nav.scrolled-bg {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.site-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 1rem 5%;
    margin: 0 auto;
}

/* Left Section */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 30px;
    width: auto;
}

/* Center Section */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-item:hover {
    color: #000;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Mega Menu */
.has-mega-menu {
    position: static; /* Allow mega menu to be full width relative to nav */
}

.mega-menu-trigger {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.mega-menu-trigger:hover {
    color: #000;
}

.mega-menu-trigger:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.mega-menu-trigger .chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    stroke-width: 2.5;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 2.5rem 5%;
    z-index: 998;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-column h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mega-column-desc {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin-bottom: 0.35rem;
}

.mega-column a {
    font-size: 0.9rem;
    color: var(--primary-color);
    background-color: #f9f9f9;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mega-column a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.mega-column a:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: -2px;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* .nav-cta removed */

.menu-btn-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-center {
        display: none; /* Hide links on tablet/mobile */
    }
    
    .menu-btn-mobile {
        display: flex;
    }
    
    .nav-cta {
        display: none; /* Optional: hide CTA on mobile if space is tight */
    }
}

/* FAQ Component Styles */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-cta-col {
    position: sticky;
    top: 6rem;
}

.faq-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.faq-cta-card {
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-cta-card .avatars {
    margin-bottom: 1.5rem;
}

.faq-cta-card .avatar-group {
    height: 40px;
    width: auto;
    border-radius: 20px;
}

.faq-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

.faq-list-col {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #000;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-cta-col {
        position: static;
    }
}
