:root {
    --bg-color: #000000;
    /* Deep Black */
    --text-color: #ffffff;
    --text-muted: #888888;
    --primary-color: #FF5722;
    /* Orange */
    --primary-hover: #F4511E;
    --secondary-bg: #0a0a0a;
    --card-bg: #111111;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1300px;
    /* Wider container */
    --header-height: 90px;
    --gradient-primary: linear-gradient(45deg, #FF5722, #FFAB91);
    --accent-color: #FF5722;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    /* Lock horizontal scroll */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    /* Ensure full width within max */
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        /* Smaller padding on mobile */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 0;
    /* Sharp edges for Liko style */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-accent {
    background-color: white;
    color: black;
}

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

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: white;
    background: white;
    color: black;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-link:hover {
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background-color: var(--bg-color);
    text-align: center;
}

/* Hero Section */
.hero-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.4;
    /* Dimmed for text readability */
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    /* Blend particles with image */
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

.hero-content {
    width: 100%;
    z-index: 1;
}

.headline {
    font-size: 6rem;
    /* Huge typography */
    line-height: 0.9;
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.text-outline {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.text-gradient {
    color: var(--primary-color);
}

.sub-headline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Marquee Section */
.marquee-section {
    background: var(--primary-color);
    color: black;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.05);
    /* Tilted effect */
    margin: 50px 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.separator {
    margin: 0 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Intro Section */
.intro-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -1px;
}

.intro-text {
    max-width: 900px;
    margin-bottom: 80px;
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: transparent;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-top-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background-color: var(--secondary-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.project-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.project-image {
    height: 500px;
    /* Taller images */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
    /* B&W by default */
}

.project-card:hover .project-image {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Color on hover */
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, black, transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.project-info p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Workflow Section */
.workflow-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 80px;
    font-size: 1.2rem;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    line-height: 1;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.step-connector {
    display: none;
    /* Removed for this style */
}

/* Footer */
.footer {
    background-color: #000;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    /* Circular icons */
    transition: all 0.3s ease;
    padding: 0;
    /* Reset padding */
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Us Page Styles */
.page-hero {
    padding: 200px 0 100px;
    background-color: var(--bg-color);
    text-align: center;
}

.page-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.section-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
}

.section-heading.center {
    text-align: center;
}

.text-large {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.text-large strong {
    color: white;
    font-weight: 700;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

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

.team-card {
    background: transparent;
}

.team-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    filter: grayscale(0%);
}

.team-info h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo img {
    max-width: 100%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

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

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        /* Smaller header on mobile */
    }

    .headline {
        font-size: 2.8rem;
        /* Smaller headline */
        line-height: 1.1;
    }

    .sub-headline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
        /* Keep hidden for now as per current design */
    }

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

    .desktop-only {
        display: none !important;
    }

    .hero-section {
        padding-top: 100px;
        /* Adjust for header */
        text-align: center;
        /* Center align hero on mobile */
    }

    .cta-group {
        justify-content: center;
        /* Center buttons */
        flex-direction: column;
        /* Stack buttons */
        gap: 15px;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        text-align: center;
    }

    .workflow-steps {
        flex-direction: column;
    }

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

    .footer-col {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .content-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .intro-text {
        font-size: 1.1rem;
        text-align: center;
    }

    /* Lock sections */
    section {
        overflow: hidden;
        /* Prevent internal overflow */
        width: 100%;
    }

    .marquee-section {
        transform: rotate(-2deg) scale(1.05);
        /* Keep tilt but ensure no scroll */
        width: 105%;
        /* Compensate for rotation */
        margin-left: -2.5%;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2.2rem;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-content {
    z-index: 2;
}

.mission-statement {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.mission-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
}

.mission-art-placeholder {
    text-align: center;
    color: #666;
}

.mission-art-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}



@media (max-width: 768px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-visual {
        height: 300px;
        order: 0;
    }

    .project-image {
        height: 200px;
        /* Reduced height for 2-column layout */
    }

    .team-image {
        height: 300px;
    }
}