/* Global Resets & Theme Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #070301;
    --text-white: #ffffff;
    --text-gray: #b0a8a4;
    --orange-glow: #ff5100;
    --accent-orange: #ff7300;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: clip;
    position: relative;
}

/* SEO Helper */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Background Visual Setup */
.hero-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.65) contrast(1.1);
    transform: scale(1.02);
    animation: slow-pan 30s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, transparent 20%, rgba(7, 3, 1, 0.8) 70%, var(--bg-dark) 100%),
                linear-gradient(to bottom, rgba(7, 3, 1, 0.4) 0%, transparent 40%, rgba(7, 3, 1, 0.85) 90%, var(--bg-dark) 100%);
    pointer-events: none;
}

@keyframes slow-pan {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, 2%); }
}

/* Plus Decorations */
.grid-decor {
    position: absolute;
    z-index: 5;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    user-select: none;
}

/* Navbar & Header */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    opacity: 1;
}

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

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

.nav-num {
    font-size: 0.65rem;
    font-weight: 600;
    position: absolute;
    top: -4px;
    right: -14px;
    opacity: 0.8;
}

/* Glassmorphic Dev Card */
.dev-card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.dev-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.dev-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.dev-info {
    display: flex;
    flex-direction: column;
}

.dev-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 0.15rem;
}

.dev-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.dev-title {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.05rem;
}

.dev-card-dot {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--orange-glow);
}

/* Hero Content Area */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 10rem 4rem;
}

/* Left Side Intro Column */
.hero-intro {
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: flex-start;
    margin-bottom: 2rem;
}

.intro-headline {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
}

.highlight-text {
    color: var(--text-white);
    position: relative;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.explore-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.explore-btn:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

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

.explore-btn:hover .arrow-icon {
    transform: translate(2px, -2px);
}

.explore-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Focus Skill List */
.focus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.focus-list li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Massive Title at Bottom (SUJITH X) */
.massive-title-container {
    position: absolute;
    bottom: 1.5rem;
    right: 4rem;
    z-index: -1; /* Placed behind the intro text if they overlap, but aligned to the right */
    pointer-events: none;
}

.massive-title {
    font-size: 12.5vw;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text-white);
    font-family: var(--font-sans);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.1) 100%);
    -webkit-background-clip: text;
}

/* Footer Section */
.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
}

.bar-separator {
    color: rgba(255, 255, 255, 0.2);
}

.bar-indicator {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.25);
}

.bar-indicator:nth-child(4) {
    background-color: var(--accent-orange);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .navbar {
        padding: 2rem;
    }
    .hero-content {
        padding: 0 2rem 8rem 2rem;
    }
    .massive-title-container {
        right: 2rem;
    }
    .footer-bar {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        background: linear-gradient(to bottom, var(--bg-dark) 40%, transparent);
        padding: 1.5rem;
    }
    .nav-links {
        gap: 2rem;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .dev-card {
        align-self: stretch;
        justify-content: space-between;
    }
    .hero-content {
        justify-content: center;
        padding: 12rem 1.5rem 4rem 1.5rem;
        height: auto;
        min-height: 100vh;
    }
    .massive-title-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 4rem;
        z-index: 5;
    }
    .massive-title {
        font-size: 18vw;
        letter-spacing: -1px;
    }
    .footer-bar {
        position: relative;
        padding: 2rem 1.5rem;
        background-color: var(--bg-dark);
    }
}

/* Overview Section & Slanted Divider styling */
.overview-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    margin-top: 0;
    padding: 8rem 4rem 12rem 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(7, 3, 1, 0.7);
    border: 1px solid rgba(7, 3, 1, 0.12);
    box-shadow: 0 15px 35px rgba(7, 3, 1, 0.08);
    padding: 2rem;
    text-align: center;
}

.placeholder-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070301;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-hint {
    font-size: 0.8rem;
    color: rgba(7, 3, 1, 0.5);
    opacity: 0.8;
}

/* Header line in Overview section matching the design */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    padding: 2rem 0 1rem 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: #070301;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.sec-title {
    opacity: 0.7;
}

/* Big statement (like "Design-forward impressive agency...") */
.statement-container {
    margin-bottom: 6rem;
    max-width: 92%;
}

.statement-text {
    font-family: var(--font-sans);
    font-size: 5.25vw;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #070301;
}

/* Why Work With Me Grid */
.benefits-container {
    width: 100%;
}

.grid-section-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(7, 3, 1, 0.5);
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    border-top: 1px solid rgba(7, 3, 1, 0.15);
    padding-top: 3rem;
}

.grid-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.item-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(7, 3, 1, 0.4);
    font-weight: 600;
}

.item-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: #070301;
}

.item-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(7, 3, 1, 0.7);
}

/* Make footer absolute inside layout instead of fixed so it scrolls away */
.footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bar .copyright {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for new section */
@media (max-width: 1024px) {
    .overview-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .statement-text {
        font-size: 6vw;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
        clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
    }
    .statement-text {
        font-size: 8vw;
        letter-spacing: -1px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bar {
        padding: 2rem 1.5rem;
        position: relative;
        background-color: var(--bg-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* 3rd Section: Details, Strategy & Metrics styling */
.metrics-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 6rem 4rem 12rem 4rem;
}

.metrics-container {
    display: flex;
    gap: 6rem;
    max-width: 100%;
}

.metrics-image-col {
    flex: 1;
    max-width: 440px;
}

.metrics-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(7, 3, 1, 0.7);
    border: 1px solid rgba(7, 3, 1, 0.12);
    box-shadow: 0 15px 35px rgba(7, 3, 1, 0.08);
    padding: 2rem;
    text-align: center;
}

.placeholder-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070301;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-hint {
    font-size: 0.8rem;
    color: rgba(7, 3, 1, 0.5);
    opacity: 0.8;
}

.metrics-content-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.metrics-row {
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(7, 3, 1, 0.15);
    padding-top: 2rem;
}

.row-label {
    width: 140px;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: #070301;
}

.row-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(7, 3, 1, 0.85);
}

.metrics-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(7, 3, 1, 0.1);
}

.metric-name {
    font-weight: 600;
    color: #070301;
}

.metric-value {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-orange);
}

.row-cta {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.explore-btn-dark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #070301;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.explore-btn-dark:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.explore-btn-dark:hover .arrow-icon {
    transform: translate(2px, -2px);
}

.explore-line-dark {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(7, 3, 1, 0.2);
}

/* Responsive updates for metrics */
@media (max-width: 1024px) {
    .metrics-section {
        padding: 4rem 2rem 10rem 2rem;
    }
    .metrics-container {
        gap: 4rem;
    }
    .metrics-image-col {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .metrics-section {
        padding: 4rem 1.5rem 8rem 1.5rem;
    }
    .metrics-container {
        flex-direction: column;
        gap: 3rem;
    }
    .metrics-image-col {
        max-width: 100%;
    }
    .metrics-row {
        flex-direction: column;
        gap: 1rem;
    }
    .row-label {
        width: auto;
    }
}

/* Tech Logo Marquee Styling */
.tech-marquee-wrapper {
    margin-top: 8rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background-color: #ffffff;
    padding: 3rem 0;
}

.tech-marquee-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(7, 3, 1, 0.4);
    text-align: center;
    margin-bottom: 2.5rem;
}

.tech-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    width: 100%;
}

/* Linear fade effect on the edges of the marquee */
.tech-marquee::before,
.tech-marquee::after {
    content: "";
    height: 100%;
    width: 15%;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.tech-marquee::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.tech-marquee::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.tech-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

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

.tech-card {
    width: 200px;
    height: 100px;
    background-color: #f7f7f7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: #070301;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 0 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(7, 3, 1, 0.03);
}

.tech-card:hover {
    background-color: #f0edea;
    border-color: rgba(7, 3, 1, 0.1);
    transform: translateY(-2px);
}

/* Portfolio Scroll Container & Sticky Section */
.portfolio-scroll-container {
    position: relative;
    height: 400vh; /* gives room to scroll and trigger animations */
    background-color: #ffffff;
}

.portfolio-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 0 4rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-header {
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    padding: 2rem 0 1rem 0;
    margin-bottom: 0;
    flex-shrink: 0;
}

.portfolio-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 120px);
    position: relative;
    width: 100%;
}

.portfolio-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    height: fit-content;
    background-color: transparent;
    z-index: 10;
}

.project-large-title {
    font-size: 8.5vw;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    color: #070301;
    font-family: var(--font-sans);
}

.project-cta {
    width: fit-content;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #070301;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid #070301;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.project-btn:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* Center window containing moving track */
.portfolio-center-window {
    flex: 2;
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

.portfolio-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.track-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* covers previous slide mockup card */
}

/* Mockup Browser styling */
.browser-mockup {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 1.6 / 1;
    background-color: #0d0602;
    border-radius: 8px;
    border: 1px solid rgba(7, 3, 1, 0.15);
    box-shadow: 0 25px 60px rgba(7, 3, 1, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.browser-header {
    height: 32px;
    background-color: #160e0a;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-header .dot.red { background-color: #ff5f56; }
.browser-header .dot.yellow { background-color: #ffbd2e; }
.browser-header .dot.green { background-color: #27c93f; }

.browser-url {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 2rem;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 2px 1rem;
    border-radius: 4px;
    width: 220px;
    text-align: center;
}

.browser-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Custom UI mocks inside browser mockup */
.shootside-ui {
    background: radial-gradient(circle at top right, #1a0b04, #050201);
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mock-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    background-color: var(--accent-orange);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    width: fit-content;
}

.shootside-ui h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0.5rem;
    letter-spacing: -0.5px;
}

.shootside-ui p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.mock-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mock-box {
    flex: 1;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.automation-ui {
    background-color: #0b0c10;
    display: flex;
    color: #fff;
    height: 100%;
}

.mock-sidebar {
    width: 50px;
    background-color: #12141c;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mock-nav {
    height: 12px;
    background-color: #12141c;
    border-radius: 4px;
    margin-bottom: 2rem;
    width: 60%;
}

.flow-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.flow-node {
    background-color: #1a1d29;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-node.highlight {
    background-color: rgba(255, 115, 0, 0.08);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.flow-connector {
    color: rgba(255, 255, 255, 0.2);
}

.wp-ui {
    background-color: #f7f7f7;
    color: #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.wp-mock-header {
    height: 16px;
    background-color: #0073aa;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    width: 100%;
}

.wp-ui .mock-flex-panels {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wp-ui .mock-card-small {
    flex: 1;
    background-color: #fff;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #dcdde1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mock-card-small span {
    font-size: 0.6rem;
    color: #6c757d;
}

.mock-card-small h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0073aa;
}

.wp-mock-line {
    height: 8px;
    background-color: #e2e4e7;
    margin-bottom: 0.5rem;
    border-radius: 2px;
}

.project-footer-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 640px;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: #070301;
}

.proj-index {
    color: var(--accent-orange);
}

.proj-name {
    opacity: 0.8;
}

/* Right Side float element */
.portfolio-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}

.see-all-card {
    background-color: #ffffff;
    border: 1px solid rgba(7, 3, 1, 0.08);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(7, 3, 1, 0.06);
    transition: transform 0.3s ease;
}

.see-all-card:hover {
    transform: translateY(-2px);
}

.thumb-preview {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
}

.preview-shootside {
    background: radial-gradient(circle at top right, #1a0b04, #050201);
}
.preview-corporate {
    background: radial-gradient(circle at center, #1e293b, #0f172a);
}

.preview-ecommerce {
    background-color: #0b3c5d;
}

.preview-selling {
    background-color: #27160c;
}

.see-all-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #070301;
}

/* Responsive updates for portfolio */
@media (max-width: 1024px) {
    .portfolio-section {
        padding: 4rem 2rem 10rem 2rem;
    }
    .portfolio-center-window {
        padding: 0 1.5rem;
        height: 450px;
    }
    .track-item {
        height: 450px;
    }
    .project-large-title {
        font-size: 10vw;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 4rem 1.5rem 8rem 1.5rem;
    }
    .portfolio-container {
        flex-direction: column;
        gap: 2.5rem;
        height: auto;
        min-height: auto;
        position: relative;
        padding: 2rem 0;
    }
    .portfolio-left {
        gap: 1.5rem;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .project-large-title {
        font-size: 16vw;
        letter-spacing: -2px;
    }
    .portfolio-center-window {
        padding: 0;
        width: 100%;
        height: 380px;
    }
    .track-item {
        height: 380px;
    }
    .portfolio-right {
        justify-content: center;
        width: 100%;
    }
}

/* 5th Section: Dark Premium SEO Services styling */
.services-section {
    position: relative;
    background-color: #070301;
    color: #ffffff;
    z-index: 6;
    padding: 8rem 4rem 12rem 4rem;
}

.services-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.services-header span {
    color: #ffffff !important;
}

.services-container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.services-image-col {
    flex: 0.8;
    max-width: 280px;
}

.small-image-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070301;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.services-content-col {
    flex: 3;
}

.services-statement {
    font-family: var(--font-sans);
    font-size: 4.8vw;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
}

.highlight-white {
    color: #ffffff;
}

.highlight-dim {
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive updates for services */
@media (max-width: 1024px) {
    .services-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .services-container {
        gap: 4rem;
    }
    .services-image-col {
        max-width: 200px;
    }
    .services-statement {
        font-size: 5.5vw;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .services-container {
        flex-direction: column;
        gap: 3rem;
    }
    .services-image-col {
        max-width: 160px;
    }
    .services-statement {
        font-size: 8vw;
        letter-spacing: -1px;
    }
}

/* 6th Section: Parallax Services List styling */
.services-list-section {
    position: relative;
    background-color: #070301;
    color: #ffffff;
    z-index: 6;
    padding: 6rem 4rem 12rem 4rem;
}

.services-list-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.explore-more-label {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
}

.explore-line-light {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.plus-markers {
    display: flex;
    gap: 2rem;
}

.plus-marker {
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-mono);
    font-size: 1.25rem;
}

.services-items-container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.service-item-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: sticky;
    top: 100px;
    background-color: #070301;
    min-height: calc(100vh - 100px);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-number {
    font-family: var(--font-sans);
    font-size: 9.5vw;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: #ffffff;
    flex: 0.8;
}

.service-image-window {
    flex: 1.5;
    max-width: 420px;
    aspect-ratio: 1.5 / 1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-parallax-image {
    width: 100%;
    height: 130%;
    position: absolute;
    top: -15%;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
    filter: brightness(0.6) contrast(1.05);
}

/* Digital Grid Accent inside Parallax placeholders */
.service-parallax-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 115, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 115, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 2;
}

/* Custom Backgrounds for unique Services */
.img-1 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_1.jpg'); }
.img-2 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_2.jpg'); }
.img-3 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_3.jpg'); }
.img-4 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_4.jpg'); }
.img-5 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_5.jpg'); }
.img-6 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_6.jpg'); }
.img-7 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_7.jpg'); }
.img-8 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_8.jpg'); }
.img-9 { background-image: linear-gradient(rgba(7, 3, 1, 0.45), rgba(7, 3, 1, 0.45)), url('images/service_9.jpg'); }

.service-details {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-item-title {
    font-family: var(--font-sans);
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.75px;
    margin-top: 0.25rem;
}

.service-sublabel {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
}

.service-item-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-top: 0.75rem;
    max-width: 92%;
}

/* Responsive updates for services list */
@media (max-width: 1024px) {
    .services-list-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .service-item-block {
        gap: 3rem;
    }
    .service-number {
        font-size: 12vw;
    }
    .service-item-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-list-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .services-items-container {
        gap: 5rem;
    }
    .service-item-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .service-number {
        font-size: 20vw;
        letter-spacing: -3px;
    }
    .service-image-window {
        max-width: 100%;
        width: 100%;
    }
    .service-item-title {
        font-size: 1.65rem;
    }
}

/* Premium Contact Footer Styling */
.contact-footer {
    position: relative;
    background-color: #070301;
    color: #ffffff;
    z-index: 6;
    padding: 10rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1.5;
}

.contact-label {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.contact-email {
    font-family: var(--font-sans);
    font-size: 4.8vw;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -2px;
    transition: color 0.3s ease;
    width: fit-content;
    line-height: 1;
}

.contact-email:hover {
    color: var(--accent-orange);
}

.footer-cta-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 440px;
    margin-top: 2rem;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact-btn:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.footer-explore-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-nav-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: right;
}

.footer-nav-item {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.65;
    position: relative;
    padding-right: 1.5rem;
    transition: opacity 0.3s ease;
}

.footer-nav-item:hover {
    opacity: 1;
}

.footer-plus {
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    font-size: 1.5rem;
    font-family: var(--font-mono);
    pointer-events: none;
    user-select: none;
}

.pt-f1 { top: 35%; }
.pt-f2 { top: 55%; }
.pt-f3 { top: 45%; }

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    width: 100%;
}

.footer-massive-title {
    font-size: 13vw;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -4px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: var(--font-sans);
}

.footer-copyright-col {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    padding-bottom: 0.5rem;
}

/* Responsive updates for footer */
@media (max-width: 1024px) {
    .contact-footer {
        padding: 8rem 2rem 3rem 2rem;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .contact-footer {
        padding: 6rem 1.5rem 2rem 1.5rem;
        gap: 4rem;
    }
    .footer-top-row {
        flex-direction: column;
        gap: 4rem;
    }
    .footer-nav {
        text-align: left;
        align-self: flex-start;
    }
    .footer-nav-col {
        justify-content: flex-start;
    }
    .contact-email {
        font-size: 7.5vw;
    }
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* 7th Section: Skill Progression Roadmap styling */
.roadmap-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 8rem 4rem 12rem 4rem;
}

.roadmap-header {
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    color: #070301 !important;
}

.roadmap-header span {
    color: #070301 !important;
}

.roadmap-title-area {
    margin-bottom: 5rem;
}

.roadmap-main-title {
    font-family: var(--font-sans);
    font-size: 4vw;
    font-weight: 800;
    letter-spacing: -2px;
    color: #070301;
    margin-bottom: 0.5rem;
}

.roadmap-subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: rgba(7, 3, 1, 0.6);
    max-width: 700px;
    line-height: 1.5;
}

.roadmap-container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.roadmap-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 320px;
    width: 100%;
}

.roadmap-graphic-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #070301;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(7, 3, 1, 0.12);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 0.4s ease;
}

.roadmap-graphic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 115, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 115, 0, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.graphic-label-wrapper {
    z-index: 2;
    text-align: center;
}

.graphic-label {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(255, 115, 0, 0.3);
}

.slider-nav-btns {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    border: 1px solid rgba(7, 3, 1, 0.15);
    background-color: #ffffff;
    color: #070301;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
    background-color: #070301;
    color: #ffffff;
    border-color: #070301;
}

.roadmap-right {
    flex: 2.2;
    min-height: 380px;
    position: relative;
}

.slider-slides-wrapper {
    width: 100%;
    position: relative;
}

.roadmap-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
}

.roadmap-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 3;
}

.slide-quote {
    font-family: var(--font-sans);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #070301;
    letter-spacing: -1.5px;
    margin-bottom: 2.5rem;
}

.slide-divider {
    height: 1px;
    background-color: rgba(7, 3, 1, 0.12);
    margin-bottom: 2.5rem;
}

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

.meta-card {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.meta-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: #070301;
}

.meta-desc {
    font-size: 0.85rem;
    color: rgba(7, 3, 1, 0.5);
}

.meta-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-val {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(7, 3, 1, 0.5);
}

/* Responsive updates for roadmap */
@media (max-width: 1024px) {
    .roadmap-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .roadmap-container {
        gap: 4rem;
    }
    .roadmap-left {
        max-width: 240px;
    }
    .graphic-label {
        font-size: 2.8rem;
    }
    .slide-quote {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .roadmap-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .roadmap-main-title {
        font-size: 8vw;
    }
    .roadmap-container {
        flex-direction: column;
        gap: 3rem;
    }
    .roadmap-left {
        max-width: 100%;
        align-items: center;
    }
    .roadmap-graphic-card {
        max-width: 240px;
    }
    .slide-quote {
        font-size: 1.7rem;
    }
    .slide-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* 8th Section: Experience Archive Table styling */
.archive-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 8rem 4rem 12rem 4rem;
    border-top: 1px solid rgba(7, 3, 1, 0.08);
}

.archive-header {
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    color: #070301 !important;
}

.archive-header span {
    color: #070301 !important;
}

.archive-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.archive-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(7, 3, 1, 0.08);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.archive-year {
    flex: 0.8;
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(7, 3, 1, 0.5);
    padding-top: 0.65rem;
}

.archive-content-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-company {
    font-family: var(--font-sans);
    font-size: 4vw;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: #070301;
    transition: transform 0.3s ease;
}

.archive-row:hover .archive-company {
    transform: translateX(4px);
}

.archive-role-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out, margin-top 0.3s ease;
}

/* Hover reveal effect */
.archive-row:hover .archive-role-details {
    max-height: 350px;
    opacity: 1;
    margin-top: 1rem;
}

.archive-role-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.archive-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-bullets li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(7, 3, 1, 0.7);
    position: relative;
    padding-left: 1.25rem;
}

.archive-bullets li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.archive-image-col {
    flex: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.company-logo-placeholder {
    width: 130px;
    height: 65px;
    background-color: #fcfcfc;
    border: 1px solid rgba(7, 3, 1, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(7, 3, 1, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.archive-row:hover .company-logo-placeholder {
    background-color: #070301;
    color: #ffffff;
    border-color: #070301;
    transform: scale(1.03);
}

/* Responsive updates for archive */
@media (max-width: 1024px) {
    .archive-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .archive-company {
        font-size: 5vw;
    }
}

@media (max-width: 768px) {
    .archive-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .archive-row {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }
    .archive-year {
        padding-top: 0;
    }
    .archive-company {
        font-size: 8vw;
    }
    .archive-image-col {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    .archive-role-details {
        /* Always show details on mobile/touch viewports since hover is not reliable */
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 0.75rem !important;
    }
}

/* 9th Section: Wide Visual Profile Teaser styling */
.teaser-section {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 6;
    background-color: #ffffff;
    padding: 3rem;
    box-sizing: border-box;
}

.teaser-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #070301;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.teaser-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}

.teaser-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teaser-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(7, 3, 1, 0.6) 80%, #070301 100%),
                linear-gradient(to bottom, transparent, rgba(7, 3, 1, 0.85) 90%, #070301 100%);
    pointer-events: none;
}

.teaser-plus {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    pointer-events: none;
    user-select: none;
}

.teaser-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 5;
}

.teaser-massive-text {
    font-family: var(--font-sans);
    font-size: 7.8vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: -3px;
    text-align: center;
    position: absolute;
    width: 90%;
    max-width: 1200px;
    pointer-events: none;
    line-height: 1;
}

.teaser-profile-card {
    width: 230px;
    aspect-ratio: 3 / 4;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-profile-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.teaser-card-photo-placeholder {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.photo-placeholder-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070301;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-placeholder-hint {
    font-size: 0.8rem;
    color: rgba(7, 3, 1, 0.5);
    opacity: 0.8;
}

.teaser-cta {
    position: absolute;
    bottom: 10%;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 280px;
}

.teaser-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.teaser-contact-btn:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.teaser-btn-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive updates for teaser */
@media (max-width: 1024px) {
    .teaser-massive-text {
        font-size: 9vw;
    }
    .teaser-profile-card {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .teaser-massive-text {
        font-size: 12vw;
    }
    .teaser-profile-card {
        width: 220px;
    }
    .teaser-plus {
        display: none;
    }
    .teaser-section {
        padding: 1.5rem;
    }
}

/* 10th Section: FAQ Accordion styling */
.faq-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 8rem 4rem 12rem 4rem;
    border-top: 1px solid rgba(7, 3, 1, 0.08);
}

.faq-header {
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    color: #070301 !important;
}

.faq-header span {
    color: #070301 !important;
}

.faq-container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
    max-width: 440px;
    width: 100%;
}

.faq-video-card {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fbfbfb;
    border: 1px solid rgba(7, 3, 1, 0.08);
    box-shadow: 0 15px 35px rgba(7, 3, 1, 0.06);
}

.faq-video-thumbnail {
    width: 100%;
    aspect-ratio: 1.7 / 1;
    background: linear-gradient(135deg, #1d0a03 0%, #050201 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.faq-video-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 115, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 115, 0, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
}

.faq-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #070301;
}

.meta-play {
    cursor: pointer;
    color: var(--accent-orange);
    transition: transform 0.2s ease;
}

.meta-play:hover {
    transform: scale(1.05);
}

.meta-label {
    color: rgba(7, 3, 1, 0.45);
    font-weight: 500;
}

.faq-right {
    flex: 1.8;
}

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

.faq-item {
    border-bottom: 1px solid rgba(7, 3, 1, 0.08);
    padding: 1.75rem 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.faq-question {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: #070301;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.6rem;
    color: rgba(7, 3, 1, 0.35);
    font-family: var(--font-mono);
    margin-left: 2rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(7, 3, 1, 0.65);
    max-width: 90%;
}

/* Responsive updates for FAQ */
@media (max-width: 1024px) {
    .faq-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .faq-container {
        gap: 4rem;
    }
    .faq-left {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .faq-container {
        flex-direction: column;
        gap: 3rem;
    }
    .faq-left {
        max-width: 100%;
    }
    .faq-question {
        font-size: 1.2rem;
    }
}

/* 9th Section: Infrastructure & Continuous Growth styling */
.growth-section {
    position: relative;
    background-color: #ffffff;
    color: #070301;
    z-index: 6;
    padding: 8rem 4rem 12rem 4rem;
    border-top: 1px solid rgba(7, 3, 1, 0.08);
}

.growth-header {
    border-bottom: 1px solid rgba(7, 3, 1, 0.15);
    color: #070301 !important;
}

.growth-header span {
    color: #070301 !important;
}

.growth-container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.growth-left-col, .growth-right-col {
    flex: 1;
}

.growth-meta-title-area {
    margin-bottom: 3.5rem;
}

.growth-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.growth-column-title {
    font-family: var(--font-sans);
    font-size: 3.2vw;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #070301;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.growth-column-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(7, 3, 1, 0.55);
    max-width: 90%;
    line-height: 1.4;
}

.cloud-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cloud-card {
    background-color: #fafafa;
    border: 1px solid rgba(7, 3, 1, 0.06);
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cloud-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(7, 3, 1, 0.05);
}

.cloud-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cloud-card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 750;
    color: #070301;
}

.cloud-status-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 700;
    white-space: nowrap;
}

.certified {
    background-color: rgba(0, 150, 0, 0.06);
    color: green;
    border: 1px solid rgba(0, 150, 0, 0.15);
}

.progress-badge {
    background-color: rgba(255, 115, 0, 0.06);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 115, 0, 0.15);
}

.learning-badge {
    background-color: rgba(0, 100, 255, 0.06);
    color: #0066ff;
    border: 1px solid rgba(0, 100, 255, 0.15);
}

.cloud-card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(7, 3, 1, 0.65);
}

.learning-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(7, 3, 1, 0.06);
}

.learning-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.learning-num {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.learning-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.learning-item-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 750;
    color: #070301;
}

.learning-item-desc {
    font-size: 0.88rem;
    color: rgba(7, 3, 1, 0.55);
}

/* Responsive updates for growth */
@media (max-width: 1024px) {
    .growth-section {
        padding: 6rem 2rem 10rem 2rem;
    }
    .growth-container {
        gap: 4rem;
    }
    .growth-column-title {
        font-size: 4.5vw;
    }
}

@media (max-width: 768px) {
    .growth-section {
        padding: 5rem 1.5rem 8rem 1.5rem;
    }
    .growth-container {
        flex-direction: column;
        gap: 4rem;
    }
    .growth-column-title {
        font-size: 8vw;
    }
    .cloud-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Medium-Large screens responsive adjustments for header and hero */
@media (max-width: 1400px) and (min-width: 1025px) {
    .navbar {
        padding: 2rem 2.5rem;
    }
    .nav-links {
        gap: 1.75rem;
    }
    .logo {
        font-size: 1.35rem;
    }
    .dev-card {
        padding: 0.6rem 0.85rem;
        gap: 0.65rem;
    }
    .dev-avatar {
        width: 2.3rem;
        height: 2.3rem;
    }
    .hero-content {
        padding: 0 2.5rem 6rem 2.5rem;
    }
    .hero-intro {
        max-width: 24rem;
        gap: 1.5rem;
    }
    .intro-headline {
        font-size: 1.25rem;
    }
    .massive-title {
        font-size: 11vw;
    }
}

html {
    scroll-behavior: smooth;
}

/* Reveal scroll animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}
