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

:root {
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --light-bg: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --accent-green: #428F65;
    --accent-green-dark: #357050;
    --accent-green-light: #52a878;
    --text-dark: #1a1f2e;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-medium: #495057;
    --border-light: #dee2e6;
    --border-dark: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
}

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

.navbar {
    background-color: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-family: 'Baumans', cursive;
    color: var(--text-light);
}

.logo-caps {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-green-light);
}

.btn-nav {
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--accent-green-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    padding: 180px 20px 120px;
    background-color: var(--primary-dark);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

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

.hero-container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--accent-green-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-green-dark);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    background-color: rgba(0, 168, 84, 0.1);
}

.trusted-by {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.trust-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.solutions {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.solution-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 4px 20px rgba(66, 143, 101, 0.2);
    border-color: var(--accent-green);
}

.solution-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.solution-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 600;
}

.capabilities {
    padding: 100px 20px;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.capabilities-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.capabilities-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.approach-desc {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-point h4 {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.approach-point p {
    color: var(--text-medium);
    line-height: 1.6;
}

.capabilities-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability-box {
    background-color: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.capability-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 0;
}

.capability-box-content {
    flex: 1;
}

.capability-box h4 {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.capability-box p {
    color: var(--text-medium);
    line-height: 1.6;
}

.industries {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

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

.industry-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 4px 20px rgba(66, 143, 101, 0.2);
    transform: translateY(-2px);
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.industry-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.industry-metrics span {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.case-study {
    padding: 100px 20px;
    background-image: url('attached_assets/Untitled design (6)_1759605385870.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border-dark);
    position: relative;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.case-study .container {
    position: relative;
    z-index: 1;
}

.case-label {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.3;
    max-width: 900px;
}

.case-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.case-metric {
    text-align: left;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.trusted-by .case-title {
    color: #000;
}

.trusted-by .case-description {
    color: rgba(0, 0, 0, 0.7);
}

.trusted-by .metric-label {
    color: rgba(0, 0, 0, 0.6);
}

.about-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-indicators {
    padding: 80px 20px;
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.trust-item h4 {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.contact {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

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

.btn-primary-large {
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--accent-green-dark);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-block h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-block p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0.3rem 0;
}

.contact-info-block a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-info-block a:hover {
    color: var(--accent-green-dark);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(66, 143, 101, 0.1);
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-green);
    color: #000;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-family: 'Baumans', cursive;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-green-light);
}

.attributions-page {
    min-height: 60vh;
    padding: 8rem 0 4rem;
    background-color: #000;
}

.attributions-page h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.attributions-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.attribution-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.attribution-item {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2rem;
}

.attribution-item h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.attribution-item p {
    color: var(--text-medium);
    font-size: 1rem;
}

.attribution-item a {
    color: var(--accent-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.attribution-item a:hover {
    opacity: 0.8;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link .btn-primary {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-link .btn-primary:hover {
    background-color: #357a52;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 69px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 69px);
        background-color: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        border-left: 1px solid var(--border-dark);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .nav-links .btn-nav {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
        border-bottom: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
