@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Material Design - Light/Gray Theme */
    --bg-primary: #f0f2f5;
    --bg-secondary: #e4e6eb;
    --bg-tertiary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #717171;

    /* Liquid Glass Effects (Light) */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shine: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Material Design Accent Colors (Vibrant against Gray) */
    --accent: #FF3D00;
    /* Deep Orange from image */
    --accent-orange: #FF3D00;
    --accent-yellow: #C2F912;
    /* Lime Green matching previous highlights */
    --accent-yellow-real: #D9F99D;
    /* Light yellow/green for sticky */
    --accent-cyan: #00BCD4;
    --accent-purple: #9C27B0;
    --accent-red: #D50000;

    /* Typography */
    --font-main: 'Google Sans', 'Manrope', sans-serif;
    /* Fallback to Manrope */
    --font-heading: 'Manrope', sans-serif;
    /* Replaced Plus Jakarta Sans */
}

/* Sticky Note Styles */
.sticky-note {
    display: inline-block;
    padding: 0px 15px;
    color: #000;
    border-radius: 4px;
    /* Slight rounding like a paper note */
    transform: rotate(-2deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 0 5px;
    font-weight: 800;
    position: relative;
    line-height: 1.2;
}



.sticky-green {
    background-color: #00E676;
    /* Vivid Green */
    color: #003300;
    transform: rotate(-3deg);
}

.sticky-yellow {
    background-color: #C2F912;
    /* Lime/Yellow */
    color: #000;
    transform: rotate(2deg);
    z-index: 10;
}


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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    line-height: 1.6;
    position: relative;
}

/* Geometric Grid Background Pattern (Clean Gray Lines) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    color: #000;
}

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

/* Enhanced Glassmorphism - Light Material Design */
.glass-nav,
.glass-card,
.menu-items a:hover {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

/* Glass Shine Effect (Subtle highlight) */
.glass-nav::before,
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s;
    opacity: 0.5;
}

.glass-nav:hover::before,
.glass-card:hover::before {
    left: 100%;
}

/* Navigation - Liquid Glass Update */
nav.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1200px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Apple Style Glassmorphism */
    background: rgba(255, 255, 255, 0.15);
    /* High transparency */
    backdrop-filter: blur(40px) saturate(160%);
    /* strong blur */
    -webkit-backdrop-filter: blur(40px) saturate(160%);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    /* Inner light border */
    z-index: 1000;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-items a {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: var(--text-primary);
    font-weight: 500;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-items a:hover {
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.5);
}

.menu-items a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Solar System Header */
/* Solar System Header - Updated Layout */
#solar-header {
    position: relative;
    height: 100vh;
    min-height: 800px;
    /* Ensure space for layout */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#solar-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* New Creative Header Wrapper */
.header-creative-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Top Right Address Badge */
.header-address {
    position: absolute;
    top: 120px;
    right: 40px;
    background: #6D28D9;
    /* Purple */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.3);
    transform: rotate(-5deg);
    animation: floatBadge 6s ease-in-out infinite;
}

.header-address .city {
    background: #4C1D95;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 5px;
    font-size: 0.8rem;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Satellite Antennae */
.satellite-antennae {
    position: absolute;
    bottom: 23px;
    left: -35px;
    width: 40px;
    height: 0;
    z-index: -1;
    transform: rotate(80deg);
}

.satellite-antennae span {
    position: absolute;
    bottom: -18px;
    width: 2px;
    height: 38px;
    background: #6D28D9;
    /* Match badge color */
    border-radius: 2px;
    transform-origin: top center;
    box-shadow: 0 0 5px rgba(109, 40, 217, 0.5);
}

.satellite-antennae span:nth-child(1) {
    left: 0;
    transform: rotate(25deg);
}

.satellite-antennae span:nth-child(2) {
    left: 10px;
    transform: rotate(0deg);
}

.satellite-antennae span:nth-child(3) {
    left: 20px;
    transform: rotate(-25deg);
}

/* Main Typography */
.creative-main-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.pre-title {
    font-family: var(--font-main);
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.creative-title {
    font-family: var(--font-main);
    /* Outfit for modern bold look */
    font-size: 7rem;
    /* BIG TEXT */
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    letter-spacing: -3px;
    text-transform: none;
    /* Keep Title Case if needed, or proper case */
}

.creative-title .line {
    display: block;
    margin-bottom: 10px;
}

.creative-highlight {
    background: #C2F912;
    /* Lime Green */
    color: #fff;
    padding: 0 30px;
    border-radius: 10px;
    display: inline-block;
    transform: skewX(-10deg);
}

.creative-highlight span {
    display: inline-block;
    transform: skewX(10deg);
    /* Counter skew */
}

/* Rotating Badge in Title */
.brand-icon {
    display: inline-flex;
    vertical-align: middle;
    width: 80px;
    height: 80px;
    background: #6D28D9;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    animation: spin 10s linear infinite;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.float-left {
    top: 15%;
    left: 40px;
    width: 250px;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(-15deg);
    animation: floatLeft 8s ease-in-out infinite;
}

.float-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    /* Blend image with green */
    opacity: 0.8;
}

.float-right {
    bottom: 20%;
    right: 40px;
    width: 300px;
    height: auto;
    background: #fff;
    padding: 10px 10px 30px;
    opacity: 0.8;
    border-radius: 20px;
    transform: rotate(5deg);
    animation: floatRight 9s ease-in-out infinite;
}

.float-right img {
    width: 100%;
    border-radius: 10px;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-12deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

/* Bottom Elements */
.header-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    text-align: left;
}

.bio-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #C2F912;
    overflow: hidden;
    flex-shrink: 0;
}

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

.bio-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.header-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 500;
}

.scroll-circle-btn {
    width: 40px;
    height: 40px;
    background: #6D28D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Redesign */
@media (max-width: 1024px) {
    .creative-title {
        font-size: 4rem;
    }

    .float-left,
    .float-right {
        display: none;
        /* Hide floating elements on smaller screens to avoid clutter */
    }

    .header-bottom-left {
        display: none;
    }

    .header-address {
        top: 100px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .creative-title {
        font-size: 2.8rem;
    }

    .brand-icon {
        width: 50px;
        height: 50px;
    }

    .header-address {
        display: none;
    }
}


/* Starfall Section */
#starfall-section {
    position: relative;
    min-height: 60vh;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#starfall-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.scrolling-text-wrapper {
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
    /* Removed blend mode for clarity on light bg */
    pointer-events: none;
    width: 120%;
    margin-left: -10%;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    font-size: 6rem;
    /* Larger as per example */
    font-weight: 700;
    font-family: var(--font-heading);
    opacity: 1;
    /* Subtle */
    animation: marquee 30s linear infinite;
    -webkit-text-stroke: 1px #000;
    /* Dark stroke */
    color: transparent;
}

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

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

/* Portfolio Section */
#portfolio {
    padding: 100px 20px;
    background: var(--bg-primary);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
}

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

/* Portfolio Card Redesign */
.portfolio-item {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    /* Static height removed to allow content flow, or fixed if grid requires it */
    height: auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-img-container {
    width: 100%;
    height: 250px;
    /* Fixed height for image area */
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    flex-grow: 1;
    /* Fill remaining space */
}

/* Tags */
.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    letter-spacing: 0.05em;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    /* Match reference */
}

.portfolio-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit description lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Remove old hover effects */
.portfolio-info {
    display: none;
    /* Safetynet if old JS runs */
}

/* Footer */
footer {
    padding: 50px 20px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Loading */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.loader-content {
    color: #000;
    font-weight: 700;
    letter-spacing: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-nav {
        width: 95%;
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .menu-items {
        display: none;
        /* Hide original menu on mobile */
    }

    /* Detached Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        /* Deep dark overlay */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease;
    }

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

    .mobile-menu-overlay a {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        /* Large text */
        margin: 20px 0;
        color: #fff;
        font-weight: 700;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-menu-overlay.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .mobile-menu-overlay.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-menu-overlay.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-menu-overlay.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-toggle {
        z-index: 1001;
        /* Above overlay */
    }

    .overlay-close {
        position: absolute;
        top: 25px;
        right: 30px;
        z-index: 2000;
        display: flex !important;
        /* Force visible */
    }

    /* Change hamburger color to white when active if menu bg is dark */
    .mobile-toggle.active span {
        background: #fff;
        /* White X on dark bg */
    }

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

    .marquee-content {
        font-size: 2rem;
    }
}

/* EXPERTISE SECTION - Added per request */
#expertise-section {
    position: relative;
    max-width: 1400px;
    margin: 40px auto;
    background: #0a0a0a;
    /* Dark background matching reference */
    border-radius: 40px;
    padding: 60px 80px;
    color: #fff;
    overflow: hidden;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.expertise-header h2 {
    font-size: 2rem;
    font-weight: 600;
}

.expertise-header p {
    max-width: 400px;
    text-align: right;
    color: #888;
    font-size: 0.9rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.expertise-card {
    background: #1a1a1a;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-card.purple-card {
    background: #6D28D9;
    /* Vibrant Purple */
}

.card-top {
    padding: 30px;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-title-row h3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    max-width: 70%;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.expertise-card:hover .arrow-icon {
    transform: rotate(0deg);
}

.purple-card .arrow-icon {
    width: 60px;
    height: 60px;
    background: #C2F912;
    /* Lime Green */
    color: #000;
    font-size: 1.5rem;
    position: absolute;
    bottom: 200px;
    /* Positioned near image overlap */
    left: 20px;
    z-index: 10;
    border: 5px solid #6D28D9;
    /* Border matching card bg to simulate cutout */
}

.card-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 40px;
}

.purple-card .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.card-image-container {
    height: 220px;
    width: 90%;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.5s;
}

.purple-card .card-image-container img {
    filter: none;
    /* Color image for middle card */
}

.expertise-card:hover img {
    transform: scale(1.05);
}

/* BIG TYPOGRAPHY BANNER */
.impact-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 60px;
    position: relative;
}

.impact-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 70%;
    text-transform: uppercase;
    color: #C2F912;
    /* Lime Green */
}

.impact-text span {
    color: #fff;
}

.impact-text .gray-text {
    color: #444;
}

.impact-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.rotating-badge {
    width: 120px;
    height: 120px;
    position: relative;
    background: #6D28D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 10s linear infinite;
}

.badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-center-icon {
    font-size: 2rem;
    color: #C2F912;
}

.project-stats {
    text-align: right;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-number span {
    color: #6D28D9;
}

.stat-desc {
    color: #888;
    font-size: 0.9rem;
    max-width: 200px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        height: auto;
    }

    .impact-text {
        font-size: 2rem;
    }

    .impact-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

/* CUSTOM CONTACT SECTION */
#contact-custom {
    background: #000;
    color: #fff;
    padding: 100px 5% 40px;
    /* Top padding for space, bottom for footer */
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-grow: 1;
    align-items: center;
}

/* Form Styles */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Spacious gaps */
    max-width: 500px;
}

.contact-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.contact-input:focus {
    border-bottom-color: #fff;
}

.contact-textarea {
    min-height: 40px;
    resize: none;
}

/* Glitch Button */
.glitch-btn {
    position: relative;
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 40px;
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    overflow: hidden;
    transition: transform 0.2s;
}

.glitch-btn:hover {
    transform: scale(1.02);
}

.glitch-btn::before,
.glitch-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
    z-index: -1;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s;
}

.glitch-btn:hover::before {
    opacity: 1;
    transform: translate(-3px, 3px);
}

.glitch-btn:hover::after {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* Typography Column */
.contact-info-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    position: relative;
    margin-bottom: 40px;
}

.serif-text {
    font-family: 'Cinzel', serif;
    /* Or similar serif font */
    font-size: 6rem;
    font-weight: 400;
    color: #fff;
    position: relative;
    left: -40px;
    /* Offset "Contact" left */
}

.us-wrapper {
    position: relative;
    margin-top: -20px;
}

.glitch-text {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    font-style: italic;
    font-weight: 400;
    position: relative;
    right: -40px;
    /* Offset "Us" right */
    display: inline-block;
    color: #fff;
    text-shadow: 2px 2px 0px #00ffff, -2px -2px 0px #ff00ff;
}

.organic-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 150px;
    pointer-events: none;
    z-index: -1;
    /* Rotation animation? */
}

.contact-desc {
    max-width: 400px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 auto;
}

/* Footer Strip */
.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

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

.footer-col.right {
    align-items: flex-end;
    text-align: right;
}

.footer-col small {
    color: #666;
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.footer-col a,
.footer-col span {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .serif-text,
    .glitch-text {
        font-size: 4rem;
    }

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

    .contact-footer {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-col.right,
    .footer-col.center {
        align-items: center;
        text-align: center;
    }
}

/* 
  ========================================
  NEW CONTENT SECTIONS STYLES 
  ========================================
*/

/* General Section Styles */
.content-section {
    padding: 100px 20px;
    background: var(--bg-tertiary);
}

.dark-section {
    background: #0a0a0a;
    color: #fff;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 60px;
    color: #888;
    font-size: 1.1rem;
}

/* Hero Updates */
.hero-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin: 20px 0;
    line-height: 1.5;
}

.hero-manifesto {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid #C2F912;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s;
    text-decoration: none;
}

.hero-btn.primary {
    background: linear-gradient(180deg,
            rgba(80, 140, 230, 0.85) 0%,
            rgba(40, 100, 200, 0.9) 50%,
            rgba(30, 80, 180, 0.95) 100%);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 15px 35px -8px rgba(30, 80, 180, 0.4),
        0 5px 15px -3px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 0 rgba(255, 255, 255, 0.4),
        inset 0 -10px 20px -10px rgba(0, 0, 0, 0.15),
        inset 0 5px 15px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 40px -8px rgba(30, 80, 180, 0.5),
        0 8px 20px -3px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 0 rgba(255, 255, 255, 0.5),
        inset 0 -10px 20px -10px rgba(0, 0, 0, 0.2),
        inset 0 5px 15px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
    border: 2px solid #000;
    color: #000;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.contact-subtitle {
    font-size: 0.8rem;
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

/* Company Section */
.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.company-text .big-para {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

.company-sidebar {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
}

.company-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.sidebar-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.arrow-link {
    color: #6D28D9;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

/* Qualities Grid */
.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: 0.3s;
}

.quality-card:hover {
    border-color: #C2F912;
    transform: translateY(-5px);
}

.quality-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quality-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.advantage-item {
    border-left: 2px solid #ddd;
    padding-left: 20px;
}

.advantage-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
}

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

.service-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, background 0.3s ease;
    min-height: 250px;
}

.service-card h3,
.service-card p {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #C2F912;
    font-size: 1.1rem;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.service-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Icons Watermark */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.service-card:hover::after {
    opacity: 0.15;
    transform: scale(1.1) rotate(-5deg);
    bottom: -10px;
    right: -10px;
    filter: grayscale(0%);
}

/* 1. Brand Comms - Chat Bubbles */
.service-card:nth-child(1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'%3E%3C/path%3E%3C/svg%3E");
}

/* 2. Press - Mic */
.service-card:nth-child(2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z'%3E%3C/path%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'%3E%3C/path%3E%3Cline x1='12' y1='19' x2='12' y2='23'%3E%3C/line%3E%3Cline x1='8' y1='23' x2='16' y2='23'%3E%3C/line%3E%3C/svg%3E");
}

/* 3. Employee - Users */
.service-card:nth-child(3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

/* 4. Gov - Building */
.service-card:nth-child(4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='21' x2='21' y2='21'%3E%3C/line%3E%3Cline x1='5' y1='21' x2='5' y2='10'%3E%3C/line%3E%3Cline x1='19' y1='21' x2='19' y2='10'%3E%3C/line%3E%3Cpath d='M2 10h20'%3E%3C/path%3E%3Cpath d='M12 3a7 7 0 0 0-10 7'%3E%3C/path%3E%3Cpath d='M12 3a7 7 0 0 1 10 7'%3E%3C/path%3E%3C/svg%3E");
}

/* 5. Content - Pen Tool */
.service-card:nth-child(5)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19l7-7 3 3-7 7-3-3z'%3E%3C/path%3E%3Cpath d='M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z'%3E%3C/path%3E%3Cpath d='M2 2l7.586 7.586'%3E%3C/path%3E%3Ccircle cx='11' cy='11' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

/* 6. Crisis - Shield */
.service-card:nth-child(6)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3C/svg%3E");
}

/* 7. Celebrity - Star */
.service-card:nth-child(7)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

/* 8. Digital - Globe */
.service-card:nth-child(8)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
}

/* 9. SMM - Hashtag */
.service-card:nth-child(9)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300941d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='9' x2='20' y2='9'%3E%3C/line%3E%3Cline x1='4' y1='15' x2='20' y2='15'%3E%3C/line%3E%3Cline x1='10' y1='3' x2='8' y2='21'%3E%3C/line%3E%3Cline x1='16' y1='3' x2='14' y2='21'%3E%3C/line%3E%3C/svg%3E");
}

.services-footer {
    text-align: center;
    margin-top: 80px;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #333;
}

.services-footer .section-title {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

/* Portfolio Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark dim */
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 40px;
    color: #fff;
}

.modal-header h2 {
    font-size: 2.5rem;
    color: #C2F912;
    margin-bottom: 30px;
    font-weight: 700;
}

.modal-project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.modal-text h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.modal-text ul {
    list-style: none;
    padding: 0;
}

.modal-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #eee;
}

.modal-text li::before {
    content: '•';
    color: #C2F912;
    position: absolute;
    left: 0;
    top: 1px;
}

.modal-gallery {
    display: grid;
    gap: 20px;
}

.modal-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

@media (max-width: 768px) {
    .modal-project-details {
        grid-template-columns: 1fr;
    }
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-top: 20px;
    padding: 0;
}

.deliverables-list li {
    color: #fff;
    font-size: 0.95rem;
    position: relative;
}

.deliverables-list li::before {
    content: '•';
    color: #C2F912;
    margin-right: 10px;
}

/* Approach Steps */
.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 20px;
    font-size: 20px;
    color: #ddd;
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: #eee;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.approach-outro {
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 60px;
}

/* New Contact Form */
.contact-section {
    background: #f9f9f9;
}

.centered-title {
    text-align: center;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.modern-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group,
.form-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label,
.form-full label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

input,
select,
textarea {
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: #fbfcff;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #6D28D9;
    background: #fff;
}

.submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.7rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.info-block small {
    display: block;
    color: #888;
    margin-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.info-block a,
.info-block span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Footer New */
.footer-content-new {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #28a646;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #333;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 900px) {

    .company-content,
    .contact-wrapper-new {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-card:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
    }

    .step-card {
        margin-bottom: 30px;
    }
}

/* Se7en Style Qualities Section (Carousel Variant) */
#qualities {
    --accent-orange: #FF3D00;
    --curtain-bg: #050505;
    background: var(--curtain-bg);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

/* Orange Vertical Curtain Effect (Animated) */
#qualities::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0%,
            transparent 2%,
            rgba(255, 61, 0, 0.05) 4%,
            transparent 6%,
            transparent 12%),
        radial-gradient(circle at 10% 50%, rgba(255, 61, 0, 0.15), transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(255, 61, 0, 0.15), transparent 40%);
    background-size: 200% 100%;
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
    animation: curtainFlow 15s linear infinite;
}

@keyframes curtainFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Additional deep glow pulse */
#qualities::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 61, 0, 0.08), transparent 70%);
    transform: rotate(-15deg);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: rotate(-15deg) scale(1);
    }

    100% {
        opacity: 1;
        transform: rotate(-15deg) scale(1.1);
    }
}

#qualities .container {
    position: relative;
    z-index: 2;
    overflow: visible;
    /* Allow carousel to scroll nicely */
}

/* Typography */
#qualities .section-title {
    font-family: var(--font-heading, "Outfit", sans-serif);
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #d1d1d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* CAROUSEL CONTAINER */
.qualities-grid {
    display: flex;
    /* Horizontal Layout */
    overflow-x: auto;
    gap: 30px;
    padding: 20px 20px 60px 20px;
    /* Bottom padding for scrollbar/shadows */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    /* Hide Scrollbar but allow scroll */
    scrollbar-width: none;
    /* Firefox */
}

.qualities-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* CAROUSEL CARDS */
.quality-card {
    flex: 0 0 350px;
    /* Fixed Width */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    scroll-snap-align: center;
    /* Snap to center */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    /* Fixed Height */
    animation: cardFade 1s ease-out forwards;
    transform: translateY(0);
    /* Reset logic handled by layout */
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stickerFloat {

    0%,
    100% {
        transform: rotate(-3deg) translateY(10px);
    }

    50% {
        transform: rotate(-2deg) translateY(0px);
    }
}

/* Stagger animations */
.quality-card:nth-child(1) {
    animation-delay: 0.1s;
    border-color: rgba(255, 61, 0, 0.3);
}

/* First card highlight */
.quality-card:nth-child(2) {
    animation-delay: 0.2s;
}

.quality-card:nth-child(3) {
    animation-delay: 0.3s;
}

.quality-card:nth-child(4) {
    animation-delay: 0.4s;
}

.quality-card:nth-child(5) {
    animation-delay: 0.5s;
}

.quality-card:nth-child(6) {
    animation-delay: 0.6s;
}

.quality-card:nth-child(7) {
    animation-delay: 0.7s;
}

.quality-card:nth-child(8) {
    animation-delay: 0.8s;
}

/* Sticker Effect for First Card */
.quality-card:first-child {
    transform: rotate(-3deg) translateY(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    /* Use 'both' to keep final state, but stickerFloat needs to run infinitely.
       We use a comma separated list.
       Note: cardFade transforms to translateY(0). StickerFloat transforms from rotate...
       Transform conflict!
       Workaround: Wrap stickerFloat in a wrapper, or ensure cardFade only animates opacity if specific transform is needed.
       For now, let's simplify cardFade to ONLY opacity for the first child to avoid conflict
    */
    animation: cardFadeSimple 1s ease-out forwards 0.1s, stickerFloat 6s ease-in-out infinite;
}

@keyframes cardFadeSimple {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hover Effects */
.quality-card:hover {
    background: rgba(255, 61, 0, 0.08);
    border-color: rgba(255, 61, 0, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.quality-card:first-child:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
}

/* Typography inside Card */
.quality-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Icons styling - Circle wrapper like reference */
.quality-card::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FF3D00'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-card:hover::before {
    background-color: rgba(255, 61, 0, 0.2);
    border-color: #FF3D00;
}

/* Step Number removed to match clean card look */
.quality-card::after {
    display: none;
}

/* Qualities Marquee */
.qualities-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Mask edges for fade effect */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.qualities-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
    animation: scroll-left 50s linear infinite;
}

.qualities-marquee:hover .qualities-track {
    animation-play-state: paused;
}

/* Update Card for Marquee */
.quality-card {
    flex: 0 0 320px;
    /* Fixed width */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    /* Remove previous animations that might conflict */
    animation: none;
    opacity: 1;
    /* Reset opacity from previous fade-in logic */
}

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

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

/* --- CLEAN BLOCK DESIGN REFACTOR --- */

/* 1. Global Layout Updates */
body {
    background-color: #F0F0F0 !important;
    /* Light Gray Background */
    color: #111;
    /* Dark text for readability on white */
}

/* 2. Unified Block Section Class */
.block-section {
    background: #ffffff;
    border-radius: 40px;
    margin: 20px auto;
    padding: 80px 40px;
    width: 94%;
    max-width: 1400px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    /* Subtle premium lift */
    overflow: hidden;
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .block-section {
        padding: 50px 20px;
        border-radius: 25px;
        width: 96%;
    }

    .quality-card {
        margin: 0 10px;
        /* Small offset from edge */
    }
}

/* 3. Dark Block Variant (Preserving Qualities/Liquid Glass) */
.block-section.dark-block {
    background: #000000;
    color: #ffffff;
}

/* 4. Navigation Island Refactor */
nav.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1400px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;

    /* Apple Style Glassmorphism */
    background: rgba(255, 255, 255, 0.2);
    /* Much more transparent */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.glass-nav .logo {
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.glass-nav .menu-items a {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.glass-nav .menu-items a:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

/* Glass Button Styling */
.nav-btn {
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn.primary {
    background: linear-gradient(180deg,
            rgba(60, 60, 60, 0.7) 0%,
            rgba(30, 30, 30, 0.8) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 20px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 5px 0 rgba(0, 0, 0, 0.2);
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px -5px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 5px 0 rgba(0, 0, 0, 0.3);
}

.nav-btn.secondary {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(240, 240, 240, 0.8) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(200, 200, 200, 0.4);
    color: #000;
    box-shadow:
        0 6px 15px -3px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 0 rgba(255, 255, 255, 1),
        inset 0 -8px 15px -8px rgba(0, 0, 0, 0.06);
}

.nav-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 20px -3px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 0 rgba(255, 255, 255, 1),
        inset 0 -8px 15px -8px rgba(0, 0, 0, 0.08);
}

/* 5. Hero Block / Solar System - FULL WIDTH BACKGROUND */
header#solar-header {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 100px;
    /* Clear fixed nav */
    border-radius: 0;
    overflow: visible;
}

/* Solar Canvas positioned as full background */
#solar-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
}

/* Hero content wrapper positioned above solar */
.header-creative-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    /* Reduced from default for less spacing */
}

/* 6. Typography & Section Titles on White */
.block-section:not(.dark-block) .section-title {
    color: #28a646;
    text-shadow: none;
}

.block-section:not(.dark-block) .section-subtitle {
    color: #666;
}

.block-section:not(.dark-block) h3 {
    color: #000;
}

/* 7. Footer Block */
footer {
    background: #111;
    color: #fff;
    border-radius: 40px 40px 0 0;
    /* Bottom sheet look? Or full island? Let's go full island for unity */
    border-radius: 40px;
    margin: 20px auto 40px;
    width: 94%;
    max-width: 1400px;
    padding: 60px 40px;
}

/* 8. Portfolio Grid Adaptation for White Bg */
.portfolio-filters .filter-btn {
    border: 1px solid #ddd;
    color: #666;
}

.portfolio-filters .filter-btn.active,
.portfolio-filters .filter-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.portfolio-item .portfolio-info h3 {
    color: #000;
}

.portfolio-item .portfolio-info p {
    color: #666;
}

/* 9. Contact Form Adaptation */
.contact-section {
    color: #000;
}

.modern-form .form-group input,
.modern-form .form-group select,
.modern-form .form-full textarea,
.modern-form .form-full select {
    background: #f9f9f9;
    color: #000;
    border: 1px solid #eee;
}

.modern-form .form-group input:focus,
.modern-form .form-full textarea:focus {
    background: #fff;
    border-color: #000;
}

.modern-form label {
    color: #333;
}

.contact-info-side .info-block a,
.contact-info-side .info-block span {
    color: #000;
}

.contact-info-side .info-block small {
    color: #888;
}

/* 10. Service Cards on White */
/* If Services is a white block, cards might need borders or soft shadows */
.service-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #000;
}

.service-card h3 {
    color: #000;
}

.service-card p {
    color: #555;
    opacity: 1;
    /* reset from dark mode */
}

.service-card:hover {
    background: #fff;
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Partners Marquee */
#partners {
    background: #ffffff;
    color: #000;
    padding-bottom: 60px;
    overflow: hidden;
    /* Hide scrollbar */
}

.partners-marquee {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    padding-left: 20px;
}

.partners-marquee:hover .marquee-track {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
        /* Move half the length (since duplicate set) */
    }
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 8px 25px 8px 8px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    /* Prevent shrinking */
}

.partner-chip:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #ccc;
}

.partner-avatar {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 1px solid #eee;
}

.partner-name {
    font-size: 2rem;
    font-weight: 500;
    color: #000;
    border-bottom: 1.5px solid #000;
    line-height: 1.2;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .marquee-track {
        gap: 15px;
        animation-duration: 30s;
        /* Faster on mobile */
    }
}

/* Typewriter Cursor */
.typewriter-effect {
    border-right: 2px solid #fff;
    /* Cursor */
    animation: blink-caret 0.75s step-end infinite;
    display: inline-block;
    /* Keep cursor with text */
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange
    }
}