/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
:root {
    --bg-primary: #FAF8F5;
    --text-primary: #0E0D0F;
    --text-secondary: #5A575F;
    --accent-pink: #FF4B6E;
    --accent-pink-light: #FFF0F2;
    --accent-yellow: #FFE895;
    --accent-yellow-dark: #FFD050;
    --accent-yellow-light: #FFFBF0;
    --accent-blue: #5EB2FF;
    --accent-blue-light: #F0F7FF;
    --accent-green: #3EC193;
    --accent-green-light: #EEFAF5;
    --white: #FFFFFF;

    /* Outlines & Borders */
    --border-dark: #0E0D0F;
    --border-light: rgba(14, 13, 15, 0.08);
    --border-medium: rgba(14, 13, 15, 0.2);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-alt: 'Inter', sans-serif;

    /* Shadows & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-neo: 4px 4px 0px #0E0D0F;
    --shadow-neo-lg: 8px 8px 0px #0E0D0F;
    --shadow-soft: 0px 10px 30px rgba(0, 0, 0, 0.04);

    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor to use custom cursor */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-primary);
    border-radius: var(--radius-full);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: var(--accent-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: none;
    /* Shown dynamically via JS */
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: var(--accent-yellow-dark);
}

/* ==========================================================================
   Reusable UI Components & Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-bounce);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-pink);
    color: var(--white);
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.btn-dark {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 2px solid var(--border-dark);
    box-shadow: 3px 3px 0px var(--border-dark);
}

.btn-dark:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px var(--border-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.btn-block {
    width: 100%;
}

/* Badge Outline */
.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--border-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--white);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-pink);
}

/* Highlights */
.text-highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    /* Prevents text-wrap highlight bugs */
    padding: 0 4px;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -2px;
    width: calc(100% + 4px);
    height: 18px;
    background-color: var(--highlight-bg, var(--accent-yellow));
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1.5deg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Section Header */
.section-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-pink);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Custom Background Colors */
.bg-pink-light {
    background-color: var(--accent-pink-light);
}

.bg-yellow-light {
    background-color: var(--accent-yellow-light);
}

.bg-blue-light {
    background-color: var(--accent-blue-light);
}

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

.text-pink {
    color: var(--accent-pink);
}

.text-yellow {
    color: var(--accent-yellow-dark);
}

.text-blue {
    color: var(--accent-blue);
}

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

/* ==========================================================================
   Header & Navbar Style
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--nav-bg, rgba(250, 248, 245, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-dark);
    padding: 20px 0;
    transition: var(--transition-smooth);

    /* Entry Slide Down Animation */
    animation: navbarSlideDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(-80px);
}

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

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-avatar {
    width: 46px;
    height: 46px;
    background-color: var(--accent-pink);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-dark);
    box-shadow: 3px 3px 0px var(--border-dark);
    transition: var(--transition-bounce);
}

.logo-wrapper:hover .logo-avatar {
    transform: scale(1.05) rotate(-10deg);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.logo-sub {
    color: var(--accent-pink);
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-pink);
    transition: var(--transition-smooth);
}

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

.btn-cta-nav {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--border-dark);
    transition: var(--transition-bounce);
}

.btn-cta-nav:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
    background-color: var(--accent-pink);
}

.btn-cta-icon {
    width: 20px;
    height: 20px;
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-cta-nav:hover .btn-cta-icon {
    transform: rotate(45deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section Style
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    padding-top: 170px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero .reveal-up {
    opacity: 1;
    transition: none;
}

/* Zero-FOUC Silky Smooth Hero Entrance Animations (Plays instantly on page load) */
@keyframes heroGreetingEntry {
    0% {
        opacity: 0;
        transform: translate3d(0, -25px, 0) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroSlideUpEntry {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroFrameEntry {
    0% {
        opacity: 0;
        transform: scale(0.85) rotate(-4deg);
    }

    70% {
        transform: scale(1.02) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroBadgePop {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroSparkleEntry {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

#heroGreetingBadge {
    animation: heroGreetingEntry 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

#heroMainTitle {
    animation: heroSlideUpEntry 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

#heroDescription {
    animation: heroSlideUpEntry 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

#heroCtaContainer {
    animation: heroSlideUpEntry 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-stats .stat-item:nth-child(1) {
    animation: heroSlideUpEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-stats .stat-item:nth-child(2) {
    animation: heroSlideUpEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.hero-stats .stat-item:nth-child(3) {
    animation: heroSlideUpEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
}

.hero-stats .stat-item:nth-child(4) {
    animation: heroSlideUpEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.64s both;
}

.image-frame-container {
    animation: heroFrameEntry 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

#badgeProjects {
    animation: heroBadgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

#badgeSatisfaction {
    animation: heroBadgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s both;
}

.sparkle-1 {
    animation: heroSparkleEntry 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.sparkle-2 {
    animation: heroSparkleEntry 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

.sparkle-3 {
    animation: heroSparkleEntry 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

/* Designer dot grid and blur glow blobs */
.hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 500px;
    height: 500px;
    /* Naturally soft gradient, NO CPU-heavy filter blur to prevent scroll lag! */
    background: radial-gradient(circle, rgba(255, 75, 110, 0.06) 0%, rgba(255, 75, 110, 0.02) 40%, rgba(255, 75, 110, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    /* Naturally soft gradient, NO CPU-heavy filter blur to prevent scroll lag! */
    background: radial-gradient(circle, rgba(255, 208, 80, 0.1) 0%, rgba(255, 208, 80, 0.03) 45%, rgba(255, 208, 80, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* GPU Layer Acceleration for butter-smooth GSAP Scroll scrubbing */
#heroGreetingBadge,
#heroMainTitle,
#heroDescription,
#heroCtaContainer,
.hero-stats .stat-item,
.image-frame-container,
.floating-badge,
.sparkle {
    will-change: transform, opacity;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-light) 1.8px, transparent 1.8px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-greeting {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-pink);
    font-weight: 800;
    margin-bottom: -15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.play-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--accent-pink-light);
    color: var(--accent-pink);
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.showreel-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px 6px 8px;
    border-radius: var(--radius-full);
}

.showreel-trigger:hover .play-icon-wrapper {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: rotate(10deg);
}

/* Stats Row Refined */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 16px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    background-color: var(--white);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neo);
    transition: var(--transition-bounce);
}

.stat-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px var(--border-dark);
    background-color: var(--accent-pink-light);
}

.stat-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-pink-light);
    color: var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-dark);
}

.stat-icon-box svg {
    width: 16px;
    height: 16px;
}

.stat-text-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Hero Portrait Frame */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: -15px;
    /* Shifted thoda down from -50px */
    margin-right: -10px;
    padding: 20px;
}

.image-frame-name {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 16px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 0px var(--shadow-color, var(--accent-yellow));
}

.image-frame-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.82 / 1;
}

/* Pink background circle behind the frame */
.image-frame-bg-circle {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 90%;
    height: 90%;
    background-color: var(--accent-pink-light);
    border-radius: 50%;
    z-index: 1;
    border: 2px dashed var(--border-medium);
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 30px 30px;
    /* Arch Shape */
    border: 3px solid var(--border-dark);
    background-color: var(--accent-yellow);
    /* Yellow fill behind transparent pic */
    overflow: hidden;
    z-index: 5;
    box-shadow: var(--shadow-neo-lg);
    display: flex;
    align-items: flex-end;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-pink-light), var(--accent-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.placeholder-initials {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(14, 13, 15, 0.05);
    font-weight: 800;
}

.hero-portrait {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 6;
    transition: opacity 0.5s ease;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background-color: var(--accent-yellow);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    box-shadow: 4px 4px 0px var(--border-dark);
    z-index: 10;
    transition: var(--transition-bounce);
}

.floating-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 6px 6px 0px var(--border-dark);
}

.badge-projects {
    bottom: 12%;
    left: -35px;
}

.badge-satisfaction {
    top: 12%;
    right: -35px;
}

.badge-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-dark);
}

.bg-pink {
    background-color: var(--accent-pink);
    color: var(--white);
}

.bg-yellow {
    background-color: var(--accent-yellow-dark);
    color: #0E0D0F; /* Forces dark icon color on bright yellow badge */
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0E0D0F;
}

.badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #5A575F;
}

/* Sparkles / Stars */
.sparkle {
    position: absolute;
    color: var(--text-primary);
    z-index: 8;
    animation: floatAnim 4s infinite ease-in-out;
}

.sparkle-1 {
    top: 5%;
    left: 0%;
    transform: scale(1.5);
}

.sparkle-2 {
    bottom: 15%;
    right: 0%;
    transform: scale(1.2);
    animation-delay: 1.5s;
}

.sparkle-3 {
    top: -8%;
    right: 15%;
    transform: scale(1.8);
    animation-delay: 0.7s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(10deg);
        opacity: 1;
    }
}

/* Custom CSS Scroll Reveal System (Hardware-accelerated silky smooth) */
.reveal-up {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/* ==========================================================================
   Services Section Style
   ========================================================================== */
.services.section-padding,
.graphics-section.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

.service-card {
    opacity: 1;
    visibility: visible;
    background-color: var(--white);
    border: 3px solid var(--border-dark);
    padding: 36px 28px 28px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neo);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--shadow-neo-lg);
}

/* Card color accent tops */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--border-dark);
}

.service-card.card-pink::before {
    background-color: var(--accent-pink);
}

.service-card.card-yellow::before {
    background-color: var(--accent-yellow-dark);
}

.service-card.card-blue::before {
    background-color: var(--accent-blue);
}

.service-card.card-green::before {
    background-color: var(--accent-green);
}

.service-card.card-purple::before {
    background-color: #9933CC;
}

.service-card.card-dark::before {
    background-color: var(--border-dark);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--border-dark);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover .service-number {
    opacity: 0.25;
    transform: scale(1.1);
}

.service-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.service-icon {
    width: 26px;
    height: 26px;
}

.service-tag-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-dark);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    width: 100%;
}

.service-pills span {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    background-color: rgba(14, 13, 15, 0.05);
    border: 1px solid rgba(14, 13, 15, 0.1);
    color: var(--text-primary);
}

.service-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 16px;
    border-top: 1.5px dashed var(--border-light);
    margin-top: auto;
}

.service-action-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-action-text {
    color: var(--accent-pink);
}

.service-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.service-card:hover .service-arrow {
    background-color: var(--accent-yellow);
    color: var(--border-dark);
    transform: rotate(-45deg) translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

/* ==========================================================================
   Portfolio Section Style
   ========================================================================== */
.portfolio-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.portfolio-header-wrapper .section-header {
    margin-bottom: 0;
}

.portfolio-tabs {
    display: flex;
    gap: 8px;
    background-color: var(--white);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-dark);
}

.tab-btn {
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--accent-pink);
}

.tab-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Portfolio Block Separation */
.portfolio.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(circle at center, #1c1c1e 0%, #000000 100%);
    border-top: 1px solid #2c2c2e;
    border-bottom: 1px solid #2c2c2e;
}

.portfolio .section-title,
.portfolio .phone-title {
    color: #ffffff;
}

.portfolio .text-highlight {
    color: var(--accent-yellow);
}

.portfolio .text-highlight::after {
    display: none;
    /* Remove yellow underline since text is now yellow */
}

.portfolio .section-subtitle {
    color: var(--accent-yellow);
}

.portfolio .section-desc,
.portfolio .phone-category {
    color: #a1a1aa;
}

.portfolio .slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio .slider-arrow:hover {
    background: var(--accent-pink);
    color: #fff;
    border-color: var(--accent-pink);
}

/* Portfolio Header Row Layout */
.portfolio-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    /* Increased spacing below heading */
    border-bottom: 2.5px solid var(--border-dark);
    padding-bottom: 20px;
}

.portfolio-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 60%;
}

.portfolio-title-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.portfolio-header-left .section-title {
    margin-bottom: 0;
}

.portfolio-header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.portfolio-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.portfolio-section-title i {
    color: var(--accent-pink);
    width: 20px;
    height: 20px;
}

/* Video Slider Controls */
.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--border-dark);
    transition: var(--transition-bounce);
    color: var(--text-primary);
}

.slider-arrow:hover {
    background-color: var(--accent-yellow-light);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.slider-arrow:active {
    transform: translate(0px, 0px);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.video-slider-container {
    position: relative;
    padding: 0 60px;
    /* Space for arrows */
}

.slider-arrow.prev-btn,
.slider-arrow.next-btn {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    /* Center vertically without transform override issues */
    z-index: 10;
}

.slider-arrow.prev-btn {
    left: 0;
}

.slider-arrow.next-btn {
    right: 0;
}

/* Video Slider Track & Viewport */
.video-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 4px;
}

.video-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Mobile Phone Mockup */
.phone-mockup-card {
    flex: 0 0 calc(25% - 18px);
    /* 4 columns on desktop */
    max-width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-frame {
    aspect-ratio: 9 / 18.2;
    /* Slightly wider aspect ratio */
    position: relative;
    width: 100%;
    background-color: #000000;
    border: 3px solid #2e2e32;
    /* Titanium metal edge */
    border-radius: 40px;
    /* iPhone curve */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 5px #000000,
        /* Black inner bezel */
        inset 0 0 0 5.5px rgba(255, 255, 255, 0.1),
        /* inner reflection */
        0 0 0 1.5px rgba(0, 0, 0, 0.9);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    z-index: 2;
    padding: 6px;
}

.phone-mockup-card:hover .phone-frame {
    border-color: var(--accent-pink);
    /* Accent color frame border */
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 75, 110, 0.35),
        /* Soft glow halo */
        inset 0 0 0 5px #000000,
        inset 0 0 0 5.5px rgba(255, 255, 255, 0.15),
        0 0 0 1.5px rgba(0, 0, 0, 0.9);
}

/* Physical iPhone Buttons */
.phone-btn {
    position: absolute;
    background-color: var(--border-dark);
    border: 1.5px solid var(--border-dark);
    border-radius: 3px;
    z-index: 2;
}

.phone-btn-vol-up {
    left: -7.5px;
    top: 75px;
    width: 4px;
    height: 38px;
    border-radius: 3px 0 0 3px;
}

.phone-btn-vol-down {
    left: -7.5px;
    top: 122px;
    width: 4px;
    height: 38px;
    border-radius: 3px 0 0 3px;
}

.phone-btn-power {
    right: -7.5px;
    top: 95px;
    width: 4px;
    height: 52px;
    border-radius: 0 3px 3px 0;
}

/* Dynamic Island Capsule */
.phone-dynamic-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.1), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.phone-dynamic-island::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #0f2d15;
    /* Camera lens glow reflection */
    border-radius: 50%;
    opacity: 0.85;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    background-color: #0c0c0e;
}

/* Real Glass Reflection Glare */
.phone-glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 50.1%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 8;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.phone-mockup-card:hover .phone-glass-glare {
    opacity: 0.45;
    /* Soften reflection glare slightly when hovered */
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    z-index: 10;
}

/* Play Overlay on Video */
.video-play-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 15, 0.55);
    transition: opacity 0.3s ease;
    z-index: 5;
    color: var(--white);
    opacity: 1;
}

.phone-mockup-card:hover .video-play-overlay {
    opacity: 0;
    /* Fade out play overlay when hover playing */
}

.play-icon-badge {
    width: 48px;
    height: 48px;
    background-color: var(--accent-pink);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(255, 75, 110, 0.4);
}

.play-icon-badge i {
    width: 18px;
    height: 18px;
}

.play-tag-text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.phone-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.phone-category {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Graphic Design Gallery Section (Light Theme + Masonry Grid) */
.graphics-section {
    background-color: var(--bg-primary);
    border-bottom: 2px solid var(--border-dark);
}

.graphics-section .section-title {
    color: var(--text-primary);
}

.graphics-section .section-subtitle {
    color: var(--accent-pink);
}

.graphics-tabs {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.graphics-tab-btn {
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
    transition: var(--transition-bounce);
    white-space: nowrap;
}

.graphics-tab-btn:hover {
    background-color: var(--accent-pink-light);
    color: var(--accent-pink);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.graphics-tab-btn.active {
    background-color: var(--accent-yellow);
    color: #0E0D0F;
    border-color: #0E0D0F;
    box-shadow: 4px 4px 0px #0E0D0F;
}

/* 3 Columns Grid (Horizontal Row Flow: 3 per row) */
.graphics-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 35px;
}

@media (max-width: 991px) {
    .graphics-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .graphics-masonry-grid {
        grid-template-columns: 1fr;
    }
}

.graphic-card {
    background-color: var(--white);
    border: 3px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-neo);
    transition: var(--transition-bounce);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.graphic-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-neo-lg);
}

.graphic-image-box {
    position: relative;
    width: 100%;
    height: auto;
    /* Natural Auto Height */
    display: block;
    overflow: hidden;
}

.graphic-img {
    width: 100%;
    height: auto;
    /* Auto size for different aspect ratios */
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.graphic-card:hover .graphic-img {
    transform: scale(1.04);
}



/* Shared components from previous mockups styling */
.project-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mockup-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.mockup-brand {
    background: linear-gradient(135deg, #0e0d0f, #2a282d);
}

.brand-badge {
    border: 2px solid var(--accent-yellow-dark);
    color: var(--accent-yellow-dark);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.brand-year {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.8rem;
}

.brand-circle {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.mockup-poster {
    background-color: #ffd050;
}

.poster-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 0.9;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 3px solid var(--text-primary);
    padding-bottom: 8px;
}

.poster-footer {
    position: absolute;
    bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mockup-packaging {
    background-color: var(--accent-pink-light);
    border: 2px dashed rgba(255, 75, 110, 0.2);
}

.pkg-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-align: center;
    border: 2px solid var(--border-dark);
    padding: 10px 16px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
}

/* Portfolio Responsive Media Queries */
@media (max-width: 1200px) {
    .phone-mockup-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    .graphics-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .phone-mockup-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .graphics-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .phone-mockup-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .graphics-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials Style
   ========================================================================== */
.testimonials {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 2px solid var(--border-dark);
    margin-top: 0;
}

.testimonials-slider-container {
    max-width: 1250px; /* Wider to accommodate 3 cards comfortably */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    position: relative;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        flex: 0 0 50%; /* Show 2 per view on mobile */
        width: 50%;
        padding: 8px; /* tighter spacing for mobile */
    }
    
    .testimonial-card {
        padding: 30px 20px !important; /* adjust padding for mobile */
    }
    
    .testimonial-text {
        font-size: 0.95rem !important; /* slightly smaller text to fit */
    }
    
    .client-name {
        font-size: 1rem !important;
    }
}

.testimonial-card {
    height: 100%;
    background: var(--white);
    border: 3px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-neo-lg);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 75, 110, 0.3);
}

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

.client-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.client-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.client-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-yellow-dark);
}

.star-icon.fill-current {
    fill: var(--accent-yellow-dark);
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    font-style: italic;
}

.quote-bg-icon {
    position: absolute;
    bottom: -15px;
    right: 30px;
    font-size: 10rem;
    color: rgba(14, 13, 15, 0.05);
    font-family: serif;
    line-height: 1;
    font-weight: 900;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-pink);
    transform: scale(1.2);
}

/* ==========================================================================
   Contact Section Style
   ========================================================================== */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-neo-lg);
}

.contact-info-panel {
    background-color: #0E0D0F; /* Always dark to ensure text visibility */
    color: #ffffff;
    border-right: 2px solid var(--border-dark);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
}

.contact-panel-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-panel-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    color: #ffffff;
}

.detail-icon-box {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.social-links-container {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    transition: var(--transition-bounce);
}

.social-link svg {
    stroke: #ffffff;
}

.social-link:hover {
    background-color: var(--text-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-panel {
    background-color: var(--white);
    padding: 60px 48px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-primary);
    transition: var(--transition-smooth);
}

.form-input:focus {
    background-color: var(--white);
    box-shadow: 3px 3px 0px var(--accent-pink);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-status-msg {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.form-status-msg.success {
    color: var(--accent-green);
}

.form-status-msg.error {
    color: var(--accent-pink);
}

/* ==========================================================================
   Premium Footer Style
   ========================================================================== */
.footer {
    background-color: #0E0D0F; /* Keep dark to contrast with white text in both modes */
    color: #ffffff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-huge-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-huge-title .text-stroke {
    -webkit-text-stroke: 1.5px var(--accent-pink);
    color: transparent;
}

.footer-brand .footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin-bottom: 30px;
}

.footer-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow-dark);
    display: inline-block;
    transition: var(--transition-bounce);
}

.footer-email:hover {
    transform: translateX(10px);
}

.footer-nav-groups {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-pink);
    transition: var(--transition-smooth);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-logo-bottom {
    color: #ffffff;
    font-size: 1.8rem;
}

.footer-logo-bottom .logo-dot {
    background-color: var(--accent-pink);
}

.copyright-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-massive-text {
    position: absolute;
    bottom: -8vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.footer-mountain-art {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    z-index: 0;
    pointer-events: none;
}

.footer-mountain-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

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

    .footer-nav-groups {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-huge-title {
        font-size: 3rem;
    }

    .footer-nav-groups {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   Video Lightbox Modal Style
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 15, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: fit-content;
    max-width: 960px;
    max-height: 95vh;
    background-color: var(--text-primary);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    z-index: 10;
    box-shadow: var(--shadow-neo-lg);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 120;
    transition: var(--transition-bounce);
}

.video-modal-close:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.video-title-bar {
    padding: 18px 24px;
    background-color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.video-player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.modal-video {
    max-width: 100vw;
    max-height: calc(95vh - 60px);
    width: auto;
    height: auto;
    object-fit: contain;
    background-color: #000;
    display: block;
}

/* ==========================================================================
   Image Lightbox Modal Style
   ========================================================================== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.image-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 15, 0.95);
    backdrop-filter: blur(10px);
}

.image-modal-content {
    position: relative;
    width: fit-content;
    max-width: 95vw;
    max-height: 95vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.image-player-container {
    border: 3px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-neo-lg);
    background-color: var(--white);
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 120;
    transition: var(--transition-bounce);
}

.image-modal-close:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.image-slider-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 2px 2px 0px var(--border-dark);
    z-index: 20;
    flex-shrink: 0;
}

.image-slider-arrow:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--border-dark);
}

.image-slider-arrow:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 0px var(--border-dark);
}

@media (max-width: 768px) {
    .image-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }
    
    .image-prev {
        left: -20px;
    }
    
    .image-next {
        right: -20px;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-content {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .hero-greeting {
        font-size: 1.2rem;
        margin-bottom: 0px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3rem);
        letter-spacing: -1px;
        margin-top: 8px;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        font-size: 0.98rem;
        max-width: 540px;
        margin: 0 auto 28px auto;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 36px;
    }

    .hero-image-wrapper {
        order: 1;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 15px 0;
        width: 100%;
    }

    .image-frame-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 2px solid var(--border-dark);
        padding: 50px 30px;
    }

    .contact-form-panel {
        padding: 50px 30px;
    }

    /* Mobile Header & Nav for Tablets/Mobile */
    .btn-cta-nav {
        display: none !important;
        /* Hide CTA button on mobile/tablets */
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 32px;
        padding-bottom: 80px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        border-top: 2px solid var(--border-dark);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default;
        /* Disable custom cursor on touch/mobile */
    }

    .custom-cursor {
        display: none !important;
    }

    .hero {
        padding-top: 200px;
        padding-bottom: 70px;
        position: relative;
    }

    .hero-container {
        gap: 24px;
        padding: 0 20px;
    }

    .hero-image-wrapper {
        order: 1;
        margin: 0 auto 10px auto;
        padding: 6px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Balanced, crisp image frame on mobile */
    .image-frame-container {
        max-width: 265px;
        width: 82%;
        margin: 0 auto;
    }

    .image-frame-name {
        font-size: 1.35rem;
        margin-top: 10px;
        margin-bottom: 4px;
        text-align: center;
        position: relative;
        z-index: 5;
        letter-spacing: -0.5px;
    }

    /* Badges positioned cleanly outside arch and never blocking face or name */
    .floating-badge {
        padding: 7px 12px;
        gap: 8px;
        border-radius: 10px;
        box-shadow: 3px 3px 0px var(--border-dark);
        z-index: 15;
    }

    .badge-icon-box {
        width: 30px;
        height: 30px;
    }

    .badge-icon-box svg {
        width: 13px;
        height: 13px;
    }

    .badge-num {
        font-size: 0.92rem;
    }

    .badge-label {
        font-size: 0.54rem;
    }

    /* Top-Right Badge: Outside top curve, clear of face and cap */
    .badge-satisfaction {
        top: 18px;
        right: -20px;
        transform: scale(0.9);
        transform-origin: center right;
    }

    /* Bottom-Left Badge: Outside mid-left curve, clear of HOMELANDER text */
    .badge-projects {
        top: auto;
        bottom: 24%;
        left: -20px;
        transform: scale(0.9);
        transform-origin: center left;
    }

    .sparkle-1 {
        left: -10px;
        top: -6px;
        transform: scale(0.8);
    }

    .sparkle-2 {
        right: -10px;
        bottom: 18%;
        transform: scale(0.75);
    }

    .sparkle-3 {
        right: 12px;
        top: -12px;
        transform: scale(0.8);
    }

    /* Mobile Hero Content: Left-Aligned for Modern Editorial Look */
    .hero-content {
        order: 2;
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .hero-greeting {
        font-size: 0.95rem;
        margin-bottom: 4px;
        text-align: left;
        align-self: flex-start;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.25rem);
        line-height: 1.18;
        letter-spacing: -0.5px;
        margin-top: 4px;
        margin-bottom: 12px;
        text-align: left;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: 100%;
        margin: 0 0 20px 0;
        text-align: left;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0 0 22px 0;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .showreel-trigger {
        justify-content: center;
        padding: 7px 16px 7px 10px;
    }

    /* Clean, well-spaced 2x2 stats grid with full visibility */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
    }

    .stat-item {
        min-width: unset;
        padding: 10px 10px;
        gap: 8px;
        border-radius: 12px;
        box-shadow: 3px 3px 0px var(--border-dark);
        border: 2px solid var(--border-dark);
        background-color: var(--white);
        display: flex;
        align-items: center;
        text-align: left;
    }

    .stat-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .stat-icon-box svg {
        width: 14px;
        height: 14px;
    }

    .stat-num {
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.1;
    }

    .stat-label {
        font-size: 0.54rem;
        font-weight: 700;
        color: var(--text-secondary);
        letter-spacing: 0.2px;
        text-transform: uppercase;
    }

    .stat-divider {
        display: none;
    }

    .marquee-strip {
        margin: 15px 0 35px 0;
        transform: rotate(-1deg) scale(1.01);
        padding: 12px 0;
    }

    .portfolio-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-wrapper {
        gap: 8px;
    }

    .logo-avatar {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
        box-shadow: 2px 2px 0px var(--border-dark);
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.58rem;
    }

    .mobile-toggle {
        width: 22px;
        height: 16px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .image-frame-container {
        max-width: 250px;
        width: 80%;
    }

    .badge-satisfaction {
        top: 15px;
        right: -16px;
        transform: scale(0.82);
    }

    .badge-projects {
        bottom: 24%;
        left: -16px;
        transform: scale(0.82);
    }

    .sparkle-1 {
        left: -6px;
        top: -5px;
        transform: scale(0.72);
    }

    .sparkle-2 {
        right: -6px;
        bottom: 16%;
        transform: scale(0.68);
    }

    .sparkle-3 {
        right: 10px;
        top: -12px;
        transform: scale(0.72);
    }

    .hero-stats {
        max-width: 100%;
        gap: 8px;
    }

    .stat-item {
        padding: 9px 8px;
        gap: 7px;
    }

    .stat-icon-box {
        width: 28px;
        height: 28px;
    }

    .stat-icon-box svg {
        width: 13px;
        height: 13px;
    }

    .stat-num {
        font-size: 0.98rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Full width contact section on mobile */
    .contact-section .container {
        padding: 0;
    }
    
    .contact-box {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 40px 20px;
    }
    
    .contact-panel-title {
        font-size: 2.2rem;
    }
    
    .contact-panel-desc {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Infinite Scrolling Marquee Strip
   ========================================================================== */
.marquee-strip {
    background-color: var(--accent-yellow-dark);
    border-top: 3px solid var(--border-dark);
    border-bottom: 3px solid var(--border-dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    width: 100%;
    transform: rotate(-1.5deg) scale(1.02);
    /* Slight premium slant! */
    margin: -10px 0 30px 0;
    /* overlaps hero and services slightly, looks incredibly stylized */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    flex-shrink: 0;
    /* Prevents text elements from shrinking and overlapping */
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0E0D0F;
    text-transform: uppercase;
    padding: 0 25px;
    letter-spacing: -0.5px;
}

.marquee-bullet {
    color: var(--accent-pink);
    font-size: 1.8rem;
    line-height: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ==========================================================================
   About Me Section Styles
   ========================================================================== */
.about-section {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-dark);
    position: relative;
    z-index: 5;
    padding-top: 75px;
    /* Added breathing room padding */
    padding-bottom: 45px;
    /* Reduced to pull Tools section closer */
}

.about-section .section-header {
    margin-bottom: 24px;
    /* Added breathing room between header and bio text */
}

.highlight-inline {
    color: var(--text-primary);
    font-weight: 800;
    background-color: var(--accent-yellow-light);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgba(14, 13, 15, 0.1);
    display: inline-block;
    line-height: 1.2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    /* Wider right column to fit title */
    gap: 50px;
    /* Added breathing room between columns */
    align-items: flex-start;
}

.about-bio-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}

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

.about-timeline-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 45px;
    /* Shunted thoda right as requested */
}

.about-timeline-panel .section-title {
    white-space: nowrap;
    /* Forces title onto a single line */
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    /* Fits column width perfectly */
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 22px;
    /* Added breathing room for timeline list */
}

.timeline-item {
    position: relative;
    padding-left: 22px;
    border-left: 2px dashed var(--border-dark);
    padding-bottom: 10px;
    /* Added breathing room */
    transition: var(--transition-bounce);
}

.timeline-item:hover {
    transform: translateX(4px);
    /* Premium hover slide */
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-yellow-dark);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    transition: var(--transition-bounce);
}

.timeline-item:hover::before {
    background-color: var(--accent-pink);
    transform: scale(1.3);
}

.timeline-date {
    font-size: 0.76rem;
    /* A bit larger */
    font-weight: 700;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    display: inline-block;
    background-color: var(--accent-pink-light);
    /* Premium pill badge background */
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 75, 110, 0.15);
}

.timeline-degree {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* Larger, premium sizing */
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.timeline-school {
    font-size: 0.82rem;
    /* Larger school text */
    font-weight: 600;
    color: var(--text-secondary);
}

/* Responsive about */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-timeline-panel {
        padding-left: 0;
        /* Reset on mobile screen */
    }

    .about-timeline-panel .section-title {
        white-space: normal;
        /* Allow wrap on smaller mobile screens */
    }
}

/* ==========================================================================
   Tools & Software Section Styles
   ========================================================================== */
.tools-section {
    background-color: var(--bg-primary);
    border-bottom: 2px solid var(--border-dark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 columns for a single row on desktop */
    gap: 16px;
    margin-top: 35px;
}

.tool-card {
    background-color: var(--white);
    border: 3px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 24px 12px;
    box-shadow: var(--shadow-neo);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    position: relative;
}

.tool-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 8px 8px 0px var(--border-dark);
    border-color: var(--accent-color, var(--border-dark));
}

.tool-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-bounce);
}

.tool-card:hover .tool-icon-wrapper {
    background-color: var(--white);
    border-color: var(--accent-color);
    transform: scale(1.05) rotate(-3deg);
}

.tool-logo-svg {
    transition: var(--transition-bounce);
}

.tool-name {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text-primary);
}

.tool-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Tool Brand Tags match colors */
.tag-premiere {
    background-color: rgba(0, 229, 255, 0.1);
    color: #008899;
}

.tag-davinci {
    background-color: rgba(255, 90, 0, 0.1);
    color: #CC4400;
}

.tag-ae {
    background-color: rgba(211, 108, 255, 0.1);
    color: #9933CC;
}

.tag-ps {
    background-color: rgba(0, 170, 255, 0.1);
    color: #0077BB;
}

.tag-illustrator {
    background-color: rgba(255, 170, 0, 0.1);
    color: #CC8800;
}

.tag-figma {
    background-color: rgba(10, 207, 131, 0.1);
    color: #008855;
}

/* Secondary Toolbox List (Pills) */
.secondary-toolbox {
    margin-top: 45px;
    text-align: center;
    border: 3px solid var(--border-dark);
    border-radius: var(--radius-md);
    background-color: var(--white);
    padding: 25px 20px;
    box-shadow: var(--shadow-neo);
}

.secondary-toolbox-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.toolbox-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pill-item {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    transition: var(--transition-bounce);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.pill-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--border-dark);
    background-color: var(--accent-yellow-light);
}

/* Responsive tools */
@media (max-width: 991px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on tablets */
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
        gap: 12px;
    }
}

/* Floating Background Elements in Tools Section */
.tools-section {
    position: relative;
    overflow: hidden;
}

.tool-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    animation: floatSlow 12s ease-in-out infinite alternate;
}

.tool-bg-shape-1 {
    top: 15%;
    left: 8%;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-yellow-dark);
    border-radius: 50%;
}

.tool-bg-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 30px;
    height: 30px;
    background-color: var(--accent-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation-delay: 2s;
}

.tool-bg-shape-3 {
    top: 60%;
    left: 88%;
    width: 25px;
    height: 25px;
    background-color: var(--accent-blue);
    border-radius: 4px;
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

/* Floating Background Elements in Portfolio Section */
.portfolio {
    position: relative;
    overflow: hidden;
}

.portfolio-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    animation: floatSlow 14s ease-in-out infinite alternate;
}

.portfolio-bg-shape-1 {
    bottom: 8%;
    right: 5%;
    width: 45px;
    height: 45px;
    background-color: var(--accent-pink);
    border-radius: 4px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

.portfolio-bg-shape-2 {
    bottom: 12%;
    left: 4%;
    width: 50px;
    height: 50px;
    border: 3.5px solid var(--accent-blue);
    border-radius: 50%;
    animation-delay: 3s;
}

/* Responsive adjustments for Portfolio Flex Row Header */
@media (max-width: 991px) {
    .portfolio-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .portfolio-header-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .portfolio-title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   Dark Mode Styles
   ========================================================================== */
[data-theme="dark"] {
    --bg-primary: #0F0E11;
    --text-primary: #F8F7F9;
    --text-secondary: #A3A0AA;
    --accent-pink: #FF6B8B;
    --accent-pink-light: #3A1C23;
    --accent-yellow: #FFE895;
    --accent-yellow-dark: #FFD050;
    --accent-yellow-light: #382D16;
    --accent-blue: #5EB2FF;
    --accent-blue-light: #182C40;
    --accent-green: #3EC193;
    --accent-green-light: #163628;
    --white: #1A191D;
    --nav-bg: rgba(15, 14, 17, 0.9);
    --highlight-bg: var(--accent-yellow-light);
    --shadow-color: #000000;

    /* Outlines & Borders */
    --border-dark: #F8F7F9;
    --border-light: rgba(248, 247, 249, 0.1);
    --border-medium: rgba(248, 247, 249, 0.3);
}



/* Theme Switch Button */
.theme-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin-right: 8px;
}

.switch-track {
    width: 60px;
    height: 32px;
    background-color: var(--accent-pink-light);
    border-radius: 32px;
    position: relative;
    transition: background-color 0.4s ease;
    border: 2px solid var(--border-dark);
    box-shadow: 2px 2px 0px var(--border-dark);
}

.switch-thumb {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.switch-thumb i {
    position: absolute;
    width: 14px;
    height: 14px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    color: var(--border-dark);
}

/* Light Mode State */
html:not([data-theme="dark"]) .switch-thumb {
    transform: translateX(0);
}
html:not([data-theme="dark"]) .switch-thumb .moon-icon {
    transform: translateY(0);
    opacity: 1;
}
html:not([data-theme="dark"]) .switch-thumb .sun-icon {
    transform: translateY(24px);
    opacity: 0;
}

/* Dark Mode State */
[data-theme="dark"] .switch-track {
    background-color: var(--accent-yellow-light);
}
[data-theme="dark"] .switch-thumb {
    transform: translateX(28px);
    background-color: var(--accent-yellow-dark);
}
[data-theme="dark"] .switch-thumb .moon-icon {
    transform: translateY(-24px);
    opacity: 0;
}
[data-theme="dark"] .switch-thumb .sun-icon {
    transform: translateY(0);
    opacity: 1;
}