<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* DK Cartwright LLC - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

/* Header Styles */
header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 44px;
    width: auto;
    vertical-align: middle;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger-menu:hover span {
    background: #399df0;
}

/* Close Button */
.close-btn-container {
    display: none;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #399df0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #399df0;
}

/* Active page indicator for desktop */
.nav-links a.active {
    color: #399df0;
    font-weight: 600;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

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

/* Hero Section */
.hero {
    background: url("../images/hero-background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: left;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    &amp;.slim {
        min-height: 30vh;
    }
}

/* Keyframe animation for sliding in from left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to hero content */
.hero .container {
    animation: slideInLeft 1s ease-out;
}

/* Scroll animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.animate {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-left.animate {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(30px);
}

.fade-right.animate {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.8);
}

.scale-in.animate {
    transform: scale(1);
}

/* Stagger animation for grid items */
.portfolio-item,
.testimonial,
.client-logo {
    transition: all 0.6s ease-out;
}

.portfolio-item.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Delay classes for staggered animations */
.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}
.delay-5 {
    animation-delay: 0.5s;
}
.delay-6 {
    animation-delay: 0.6s;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-block;
    background: #399df0;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #399df0;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: transparent;
    color: #399df0;
    border: 2px solid #399df0;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section:nth-child(even):not(.hero) {
    background: #242424;
}

section:nth-child(odd):not(.hero) {
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f5f5f5;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Technologies Grid - 3 columns */
#technologies .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Services section specific grid */
#services .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Process section specific grid - 3 columns */
@media (min-width: 769px) {
    #process .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.portfolio-item {
    background: #2a2a2a;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #399df0;
}

.portfolio-content {
    padding: 2rem;
    background: #2a2a2a;
}

.portfolio-content h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.portfolio-content p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.portfolio-meta {
    background: #333333;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #399df0;
}

.portfolio-meta strong {
    color: #e0e0e0;
    font-weight: 600;
}

.portfolio-meta {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #f5f5f5;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #e0e0e0;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #399df0;
}

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

/* Service Icons */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(57, 157, 240, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.service-icon:hover {
    background: rgba(57, 157, 240, 0.2);
    transform: translateY(-5px);
}

.service-icon svg {
    transition: all 0.3s ease;
}

.portfolio-item:hover .service-icon svg {
    transform: scale(1.1);
}

/* Dark theme specific improvements */
.portfolio-item:hover {
    box-shadow: 0 8px 25px rgba(57, 157, 240, 0.2);
}

/* Ensure proper contrast for all text elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f5f5f5;
}

p {
    color: #e0e0e0;
}

/* Style for any links in content */
a:not(.btn):not(.nav-links a) {
    color: #399df0;
    text-decoration: none;
}

a:not(.btn):not(.nav-links a):hover {
    color: #5bb3f5;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0f1419;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Testimonials */
#testimonials {
    background: #2a2a2a;
    padding: 4rem 0;

    .section-title {
        color: #e0e0e0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: #333333;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444444;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(57, 157, 240, 0.25);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.testimonial-author strong {
    display: block;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #399df0;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #399df0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Clients Section */
#clients {
    padding: 4rem 0;
    background: #2a2a2a;
    overflow: hidden;

    .section-title {
        color: #e0e0e0;
    }
}

.clients-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200% + 40px);
    padding: 1rem;
}

.client-logo {
    flex: 0 0 200px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid#fff;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(57, 157, 240, 0.25);
}

.client-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1) brightness(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* Technologies Section */
#technologies {
    background: #1a1a1a;
    padding: 4rem 0;
}

#technologies .portfolio-item {
    background: #2a2a2a;
    border: 2px solid #404040;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#technologies .portfolio-content {
    padding: 2rem;
}

#technologies .portfolio-content h3 {
    color: #399df0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#technologies .portfolio-content p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #399df0 0%, #2980d9 100%);
    color: white;
    padding: 4rem 0;

    .section-title {
        color: white;
        margin-bottom: 1rem;
    }

    p {
        font-size: 1.2rem;
        opacity: 0.9;
        color: white;
    }

    .btn {
        color: white;
        text-decoration: none;
        font-weight: bold;
        background: #1a1a1a;

        &amp;:hover {
            background: transparent;
            border-color: #1a1a1a;
            color: 1a1a1a !important;
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    /* Hide hamburger when menu is open */
    body.menu-open .hamburger-menu {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        border-left: 1px solid #333;
    }

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

    .close-btn-container {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 1.5rem;
        padding: 0.5rem;
    }

    .close-btn {
        background: rgba(57, 157, 240, 0.1);
        border: 1px solid rgba(57, 157, 240, 0.3);
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
        transition: all 0.3s ease;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-btn:hover {
        background: rgba(57, 157, 240, 0.2);
        border-color: #399df0;
        color: #399df0;
        transform: scale(1.1);
    }

    .nav-links li:not(.close-btn-container) {
        text-align: left;
        margin: 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .nav-links li:not(.close-btn-container):hover {
        background: rgba(57, 157, 240, 0.1);
        transform: translateX(5px);
    }

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 1rem 1.5rem;
        color: #e0e0e0;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .nav-links a:hover {
        color: #399df0;
        border-left-color: #399df0;
        background: rgba(57, 157, 240, 0.05);
    }

    /* Active page indicator */
    .nav-links a.active {
        color: #399df0;
        border-left-color: #399df0;
        background: rgba(57, 157, 240, 0.1);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        backdrop-filter: blur(2px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    /* Technologies and services responsive - 1 column on mobile */
    #technologies .portfolio-grid,
    #services .portfolio-grid,
    #process .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        margin: 0 auto;
        max-width: 500px;
    }

    .portfolio-content {
        padding: 2rem;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
    }

    .portfolio-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .client-logo {
        flex: 0 0 150px;
        height: 100px;
        margin: 0 10px;
    }

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

    .clients-track {
        animation-duration: 25s;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.text-link {
    color: #4a9eff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #66b3ff;
    text-decoration: none;
}

/* Portfolio Controls */
.portfolio-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-container {
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #e0e0e0;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #399df0;
}

.filter-container {
    width: 100%;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #eee;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    background-color: white;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.filter-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.filter-btn.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

@media (max-width: 768px) {
    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
</pre></body></html>