/* 
posters
motiongraphics
longformedits
photography
uxdesign
reels
*/
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #FF8C42;
    /* Orange */
    --secondary-color: #1a1a1a;
    /* Dark Background */
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Performance hints */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Use will-change sparingly for known animated elements */
.hero-image,
.gallery-card img,
.reveal {
    will-change: transform, opacity;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.logo span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .made-by {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.logo-text .name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.nav-menu {
    background-color: #1a1a1a;
    padding: 8px 10px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu a {
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a.active-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.header-arrow {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

/* Hero Section */
.hero {
    padding-top: clamp(80px, 12vh, 109px);
    padding-bottom: 0;
    position: relative;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1000px;
    /* Enable 3D space for paradox effect */
}

.hero .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(15px, 2.5vh, 20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Paradox: Content moves up when hovering hero */
.hero:hover .hero-content {
    transform: translateY(-10px);
}

.hello-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: clamp(15px, 2.5vh, 20px);
}

.hello-badge {
    border: 1px solid #333;
    padding: clamp(6px, 1vh, 8px) clamp(20px, 4vw, 30px);
    border-radius: 30px;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
    background: white;
    display: inline-block;
    transition: all 0.5s ease;
}

/* Paradox: Badge rotates opposite direction */
.hero:hover .hello-badge {
    display: none;
    /* transform: rotate(-5deg) scale(1.05); */
}

.hello-curve {
    position: absolute;
    top: clamp(-25px, -3vh, -30px);
    right: clamp(-35px, -4vw, -45px);
    width: clamp(50px, 6vw, 70px);
    height: clamp(40px, 5vh, 50px);
    /* slower subtle motion to reduce CPU / GPU work */
    animation: floatCurve 6s ease-in-out infinite;
    transition: transform 0.5s ease;
}

/* Paradox: Curve moves opposite to badge */
.hero:hover .hello-curve {
    /* transform: rotate(15deg) translateX(5px); */
    display: none;
}

@keyframes floatCurve {

    0%,
    100% {
        transform: translateY(0px);
    }

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

.hero h1 {
    font-size: clamp(32px, 7vw, 80px);
    line-height: 1.1;
    margin-bottom: clamp(15px, 2vh, 20px);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h2 {
    padding: 2%;
    font-size: clamp(32px, 7vw, 50px);
    line-height: 1.1;
    margin-bottom: clamp(15px, 2vh, 20px);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero title - visible by default, hidden on hover */
.hero-title {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

/* Hero location - hidden by default, visible on hover */
.hero-location {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    margin-bottom: clamp(15px, 2vh, 20px);
}

.hero-location i {
    margin-right: 10px;
}

/* Swap visibility on hover */
.hero:hover .hero-title {
    opacity: 0;
    visibility: hidden;
}

.hero:hover .hero-location {
    opacity: 1;
    visibility: visible;
}

/* Paradox: Heading scales down while moving up */
.hero:hover h1 {
    transform: scale(0.98) translateY(-5px);
    letter-spacing: 1px;
}

.hero h1 span {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: clamp(-150px, -20vh, -218px);
    padding-bottom: clamp(0px, 0vh, 0px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Paradox: Visuals move down when content moves up */
.hero:hover .hero-visuals {
    transform: translateY(5px);
}

.hero-bg-circle {
    position: absolute;
    top: clamp(50px, 10vh, 100px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(280px, 60vw, 700px);
    height: clamp(280px, 60vw, 700px);
    background-color: #FFB07C;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Paradox: Background circle zooms IN while image zooms OUT */
.hero:hover .hero-bg-circle {
    transform: translateX(-50%) scale(1.1) rotate(10deg);
    background-color: #FFB07C;
    box-shadow: 0 0 60px rgba(255, 176, 124, 0.4);
}

.hero-image {
    max-width: min(100%, 600px);
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Create a wrapper effect for image swap */
.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: clamp(-150px, -20vh, -218px);
    padding-bottom: clamp(0px, 0vh, 0px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visuals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 600px);
    height: 100%;
    background-image: url('assets/1000244653.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.8s ease;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Show hover image on hero hover */
.hero:hover .hero-visuals::before {
    opacity: 1;
}

/* Paradox: Image zooms OUT while background zooms IN */
.hero:hover .hero-image {
    /* enlarge noticeably and lift up; ensure it sits above the hover pseudo-image */
    transform: scale(1.15) translateY(-10px);
    filter: brightness(1.05) contrast(1.05);
    opacity: 0;
    /* keep the original image visible and larger on hover */
    z-index: 4;
    /* bring above .hero-visuals::before */
}

.experience-badge {
    position: absolute;
    right: clamp(0%, 0%, 30%);
    top: clamp(50%, 55%, 60%);
    text-align: center;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Move experience badge outside the circle on hover */
.hero:hover .experience-badge {
    transform: translate(80px, 0px);
    /* right: clamp(15%, 15%, 15%); */
    top: clamp(25%, 30%, 35%);
}

.page-header {
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* small helper for coming-soon text used on UI/UX page */
.coming-soon {
    margin-top: 8px;
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

/* Works page: grid and list view styles */
.view-controls {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.view-controls button {
    border: 1px solid #ddd;
    background: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.view-controls button[aria-pressed="true"] {
    background: var(--primary-color);
    color: white;
    border-color: transparent;
}

.works {
    display: grid;
    gap: 20px;
    align-items: start;
    margin-bottom: 60px;
}

/* grid view: responsive columns */
.works.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.work-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.work-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.work-meta {
    padding: 12px 14px;
}

.work-meta h2 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.work-meta p {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

.work-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

/* list view: single column, horizontal layout */
.works.list-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.works.list-view .work-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.works.list-view .work-item img {
    width: 160px;
    height: 110px;
    flex: 0 0 160px;
    border-radius: 8px;
}

@media (max-width: 720px) {
    .works.list-view .work-item {
        flex-direction: column;
        align-items: stretch;
    }

    .works.list-view .work-item img {
        width: 100%;
        height: 140px;
        flex: none;
    }
}


.stars {
    color: var(--primary-color);
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 5px;
    transition: transform 0.5s ease;
}



.experience-badge h3 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
}

.experience-badge p {
    font-size: clamp(13px, 1.5vw, 16px);
    color: #333;
    font-weight: 500;
}

.quote-badge {
    position: absolute;
    left: clamp(0%, 0%, 30%);
    top: clamp(50%, 55%, 60%);
    max-width: clamp(180px, 25vw, 250px);
    text-align: left;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Move quote badge outside the circle on hover */
.hero:hover .quote-badge {
    transform: translate(-80px, 0px);
    /* right: clamp(5%, 10%, 15%); */
    top: clamp(5%, 0%, 35%);
}

.quote-icon {
    font-size: clamp(30px, 4vw, 40px);
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}



.quote-badge p {
    font-size: clamp(12px, 1.3vw, 14px);
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.hero-cta-container {
    position: absolute;
    bottom: clamp(0px, 0vh, 10px);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0 clamp(15px, 3vw, 20px);
}

.hero-cta {
    background: rgba(30, 30, 30, 0.8);
    padding: clamp(5px, 1vh, 8px);
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-portfolio,
.btn-hire {
    padding: clamp(10px, 1.5vh, 14px) clamp(24px, 4vw, 35px);
    border-radius: 30px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: clamp(14px, 1.3vw, 16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    /* Touch target minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-portfolio {
    background: linear-gradient(135deg, #FF8C42 0%, #FF7019 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-portfolio:hover::before {
    left: 100%;
}

.btn-portfolio:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

.btn-portfolio:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 140, 66, 0.4);
}

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

.btn-hire:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-hire:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
}

/* Icon animation */
.btn-portfolio i {
    transition: transform 0.3s ease;
}

.btn-portfolio:hover i {
    transform: translateY(3px);
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Services Section */
.services {
    background: linear-gradient(-45deg, #050505, #1c1c1c, #2d2d2d, #0a0a0a);
    background-size: 400% 400%;
    /* slow the background gradient to reduce frequent repaints */
    animation: gradientBG 60s ease infinite;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    margin-top: -50px;
    z-index: 5;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    overflow: hidden;
    /* Contain the moving blobs */
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.05) 0%, transparent 40%);
    /* slower rotation to reduce continuous GPU work */
    animation: rotateBlob 60s linear infinite;
    z-index: -1;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    animation: rotateBlob 80s linear infinite reverse;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateBlob {
    0% {
        transform: rotate(0deg) translate(100px) rotate(0deg);
    }

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

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

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

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
}

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

.section-desc {
    max-width: 450px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* Services Card Fan Effect */
.services-carousel-wrapper {
    position: relative;
    /* padding: 40px 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.services-carousel {
    display: inline-grid;
    counter-reset: service-card 0;
    grid-template-columns: repeat(6, 0);
    gap: 0;
    transition: 400ms ease-out;
    position: relative;
}

/* Fan out on hover */
.services-carousel:hover {
    grid-template-columns: repeat(6, 24vmin);
    gap: 2.5vmin;
}

.service-card {
    position: relative;
    height: 32vmin;
    counter-increment: service-card;
    min-width: 0;
    border: none;
    background: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 24vmin;
    height: 30vmin;
    transform-origin: 50% 100%;
    transform: translateX(-50%) rotate(calc((var(--card-index) * 12deg) - 30deg));
    border-radius: 1.5vmin;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(10px);
    transition: 400ms ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Straighten cards on hover */
.services-carousel:hover .service-card::before {
    transform: translateX(-50%) rotate(0);
}

/* Lift card on individual hover */
.services-carousel:hover .service-card:hover::before {
    transform: translateX(-50%) rotate(0) translateY(-15%);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.4);
}

/* Service card content */
.service-tab {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24vmin;
    transform: translateX(-50%);
    background: transparent;
    padding: 2vmin;
    border-radius: 1.5vmin 1.5vmin 0 0;
    z-index: 2;
    pointer-events: none;
    transition: 400ms ease-out;
    text-align: center;
}

.service-tab h3 {
    font-size: clamp(14px, 2.2vmin, 22px);
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content {
    position: absolute;
    top: 5vmin;
    left: 50%;
    width: 21vmin;
    height: 21vmin;
    transform: translateX(-50%);
    background: white;
    border-radius: 1vmin;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5vmin;
    z-index: 1;
    pointer-events: none;
}

.service-content::before {
    display: none;
}

.service-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8vmin;
}

.service-arrow {
    position: absolute;
    bottom: 1vmin;
    right: 1vmin;
    width: 5vmin;
    height: 5vmin;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5vmin;
    transform: rotate(45deg);
    transition: 400ms ease-out;
    z-index: 3;
    border: 0.3vmin solid rgba(255, 140, 66, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.services-carousel:hover .service-card:hover .service-arrow {
    opacity: 1;
}

/* Carousel Navigation - Hidden for fan effect */
.carousel-nav {
    display: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 20px;
}

/* Experience Section */
.experience {
    /* padding: 0 0 100px; */
    background-color: white;
}

.experience-banner {
    background: var(--primary-color);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-3deg) scale(1.1);
    margin-bottom: 80px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.banner-items {
    display: inline-block;
    color: white;
    font-size: 28px;
    font-weight: 600;
    animation: marquee 30s linear infinite;
    letter-spacing: 0.5px;
}

.banner-items span {
    margin: 0 25px;
}

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

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

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-header h2 {
    font-size: 56px;
    color: #333;
    font-weight: 600;
}

.experience-header h2 span {
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    border-left: 2px dashed #ccc;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 2;
    top: 5px;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #ccc;
}

.timeline-dot.orange {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-dot.dark {
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px #1a1a1a;
}

.timeline-left {
    width: 45%;
    text-align: right;
    padding-right: 40px;
}

.timeline-right {
    width: 45%;
    padding-left: 40px;
}

.company-name {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.date {
    color: #888;
    font-size: 14px;
}

.role-title {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.role-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why Hire Me */
/* Why Hire Me Section */
.why-hire-me {
    background-color: #f5f5f7;
    /* padding: 100px 0; */
    position: relative;
}

.hire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image wrapper with decorative circles */
.hire-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hire-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-decorative-circle.circle-1 {
    width: 350px;
    height: 450px;
    background-color: #FFB07C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    opacity: 1;
    /* Always visible */
}

.hire-decorative-circle.circle-2 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    top: 10%;
    right: 5%;
    opacity: 0;
    transform: translate(0, 0);
}

.hire-decorative-circle.circle-3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    bottom: 15%;
    left: 0%;
    opacity: 0;
    transform: translate(0, 0);
}

/* Paradox Effect on Hover */
.hire-grid:hover .hire-decorative-circle.circle-2 {
    opacity: 1;
    transform: translate(20px, -20px) rotate(10deg);
}

.hire-grid:hover .hire-decorative-circle.circle-3 {
    opacity: 1;
    transform: translate(-20px, 20px) rotate(-10deg);
}

.hire-image {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.hire-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Content styling */
.hire-content {
    background-color: #F5F5F7;
    padding: 60px 50px;
    border-radius: 30px;
    position: relative;
}

.hire-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.hire-content h2 span {
    color: var(--primary-color);
}

.hire-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 15px;
}

.stats-row {
    display: flex;
    gap: 80px;
    margin: 35px 0 40px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.hire-btn {
    padding: 14px 45px;
    background-color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.hire-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Brands */
.brands {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.brands h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.brands h2 span {
    color: var(--primary-color);
}

.brands-desc {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    position: relative;
}

/* Illumination effect overlay */
.brands-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 140, 66, 0.15) 0%,
            rgba(255, 140, 66, 0.05) 30%,
            transparent 60%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brands-grid:hover::before {
    opacity: 1;
}

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    overflow: hidden;
}

/* Individual card glow on hover */
.brand-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 140, 66, 0.2) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.3);
}

.brand-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #333;
    text-transform: uppercase;
}

.brand-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: brightness(1.1);
}

.brand-card p {
    font-size: 14px;
    color: #888;
    position: relative;
    z-index: 3;
}

.brand-card.red {
    background: #D32F2F;
    color: white;
}

.brand-card.red h3,
.brand-card.red p {
    color: white;
}

.brand-card.green {
    background: #004D40;
    color: white;
}

.brand-card.green h3,
.brand-card.green p {
    color: white;
}

.brand-card.dark {
    background: #1a1a1a;
    color: white;
}

.brand-card.dark h3,
.brand-card.dark p {
    color: white;
}

.brand-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #ccc;
    z-index: 3;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-arrow {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: rotate(45deg);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 50px,
            rgba(255, 140, 66, 0.03) 50px,
            rgba(255, 140, 66, 0.03) 100px);
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-header h2 span {
    color: var(--primary-color);
}

.gallery-header p {
    color: #ccc;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.see-all-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.see-all-btn:hover {
    background: #ff7019;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 250px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card.large {
    grid-row: span 2;
    height: auto;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.3);
}

.gallery-card-content {
    position: relative;
    z-index: 2;
}

/* make images fill the card */
.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    pointer-events: none;
}

/* subtle overlay to improve text contrast */
.gallery-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 70%);
    z-index: 2;
    opacity: 0.9;
}

.gallery-card .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* hover zoom on image */
.gallery-card:hover img {
    transform: scale(1.06);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card .gallery-card-content {
    padding: 18px;
}

.gallery-card-content h3 {
    color: #fff;
}

.gallery-card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-card .gallery-card-content {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.gallery-card.large img {
    object-position: center top;
}

.gallery-card.large {
    height: 520px;
}

.gallery-card-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #D32F2F;
    margin-bottom: 5px;
}

.gallery-card-content p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 56px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.contact h2 span {
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    gap: 15px;
}

.form-group i {
    color: var(--primary-color);
    font-size: 20px;
}

.form-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
}

.form-group input::placeholder {
    color: #999;
}

.send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    background: #ff7019;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-top h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-text .made-by {
    color: var(--text-light);
}

.footer-logo .logo-text .name {
    color: var(--text-light);
}

.footer-desc {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #ff7019;
    transform: rotate(45deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    color: #999;
    font-size: 13px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal span {
    color: #666;
}

.hire-me-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.hire-me-btn:hover {
    background: #ff7019;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.hire-me-btn i {
    transition: var(--transition);
}

.hire-me-btn:hover i {
    transform: translateY(3px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    color: white;
    font-size: 24px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active-btn {
    color: var(--primary-color);
}

/* Responsive & Polish */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }

    .hero h1 {
        font-size: clamp(50px, 6vw, 70px);
    }

    .hero-bg-circle {
        width: 600px;
        height: 600px;
    }

    .section-title {
        font-size: clamp(42px, 5vw, 56px);
    }

    .experience-header h2,
    .hire-content h2,
    .brands h2,
    .contact h2,
    .gallery-header h2 {
        font-size: clamp(38px, 4.5vw, 48px);
    }

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

    .footer-right {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    header {
        padding: 15px 20px;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .logo-text .made-by {
        font-size: 11px;
    }

    .logo-text .name {
        font-size: 15px;
    }

    .nav-menu {
        padding: 6px 8px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-visuals {
        padding-bottom: 0px;
        margin-top: -120px;
    }

    .experience-badge {
        right: 0%;
        top: 15%;
    }

    .quote-badge {
        left: 0%;
        top: 12%;
    }

    .services {
        padding: 80px 0 60px;
    }

    .services-carousel-wrapper {
        padding: 30px 10px;
        min-height: 450px;
    }

    .services-carousel:hover {
        grid-template-columns: repeat(6, 20vmin);
        gap: 2vmin;
    }

    .service-card {
        height: 28vmin;
    }

    .service-card::before {
        width: 20vmin;
        height: 26vmin;
    }

    .service-tab {
        width: 20vmin;
        padding: 1.5vmin;
    }

    .service-tab h3 {
        font-size: clamp(13px, 2vmin, 20px);
    }

    .service-content {
        width: 17vmin;
        height: 17vmin;
        top: 4.5vmin;
    }

    .section-title {
        font-size: clamp(38px, 4.5vw, 48px);
    }

    .section-desc {
        font-size: 13px;
        max-width: 400px;
    }

    .experience {
        padding: 60px 0;
    }

    .experience-banner {
        margin-bottom: 70px;
    }

    .experience-header {
        margin-bottom: 70px;
    }

    .timeline {
        max-width: 800px;
    }

    .hire-grid {
        gap: 30px;
    }

    .hire-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .stats-row {
        gap: 50px;
    }

    .brands {
        padding: 60px 0;
    }

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

    .brand-card {
        padding: 30px;
        height: 160px;
    }

    .gallery {
        padding: 60px 0;
    }

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

    .gallery-card {
        height: 220px;
        padding: 25px;
    }

    .contact {
        padding: 60px 0;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-main {
        gap: 60px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

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

    .logo-text .made-by {
        font-size: 10px;
    }

    .logo-text .name {
        font-size: 14px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 85vh;
        padding-top: 80px;
    }

    .hero-visuals {
        padding-bottom: 0px;
        margin-top: -80px;
        flex-direction: column;
        align-items: center;
    }

    .experience-badge {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 20px;
        transform: none !important;
    }

    .quote-badge {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 20px;
        transform: none !important;
        text-align: center;
        max-width: 100%;
    }

    .hero:hover .experience-badge,
    .hero:hover .quote-badge {
        transform: none !important;
    }



    .hero-cta-container {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        padding-bottom: 20px;
    }

    .hero-cta {
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px;
    }

    .btn-portfolio,
    .btn-hire {
        min-width: 140px;
        padding: 12px 28px;
    }

    .services {
        padding: 60px 0 40px;
        margin-top: -70px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(32px, 6vw, 40px);
    }

    .section-desc {
        max-width: 100%;
        font-size: 14px;
    }

    /* Disable fan effect on mobile, use simple horizontal scroll */
    .services-carousel-wrapper {
        padding: 20px 0;
        min-height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
    }

    .services-carousel-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .services-carousel-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .services-carousel-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .services-carousel {
        display: flex;
        gap: 20px;
        grid-template-columns: none;
        padding: 10px 20px 20px;
    }

    .services-carousel:hover {
        grid-template-columns: none;
        gap: 20px;
    }

    .service-card {
        min-width: 260px;
        height: 320px;
        flex-shrink: 0;
    }

    .service-card::before {
        transform: translateX(-50%) rotate(0);
        width: 260px;
        height: 320px;
        border-radius: 20px;
    }

    .services-carousel:hover .service-card::before {
        transform: translateX(-50%) rotate(0);
    }

    .services-carousel:hover .service-card:hover::before {
        transform: translateX(-50%) rotate(0) translateY(-10px);
    }

    .service-tab {
        width: 260px;
        padding: 12px 20px;
        border-radius: 20px 20px 0 0;
    }

    .service-tab h3 {
        font-size: 18px;
    }

    .service-content {
        width: 240px;
        height: 240px;
        top: 50px;
        border-radius: 15px;
    }

    .service-content img {
        border-radius: 12px;
    }

    .service-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border: 4px solid rgba(255, 140, 66, 0.3);
        bottom: 10px;
        right: 10px;
        opacity: 1;
    }

    .experience {
        padding: 50px 0;
    }

    .experience-banner {
        margin-bottom: 50px;
        padding: 18px 0;
    }

    .banner-items {
        font-size: 20px;
    }

    .experience-header {
        margin-bottom: 50px;
    }

    .experience-header h2 {
        font-size: clamp(30px, 5.5vw, 36px);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .timeline-left {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-right {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
        transform: none;
    }

    .company-name,
    .role-title {
        font-size: 16px;
    }

    .date,
    .role-desc {
        font-size: 13px;
    }

    .why-hire-me {
        padding: 50px 0;
    }

    .hire-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hire-image-wrapper {
        order: 1;
    }

    .hire-decorative-circle.circle-1 {
        width: 280px;
        height: 350px;
        border-radius: 20px;
    }

    .hire-decorative-circle.circle-2 {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 10%;
    }

    .hire-decorative-circle.circle-3 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 5%;
    }

    .hire-image {
        max-width: 100%;
    }

    .hire-content {
        order: 2;
        padding: 40px 30px;
    }

    .hire-content h2 {
        font-size: clamp(30px, 5.5vw, 36px);
        margin-bottom: 20px;
    }

    .hire-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .stats-row {
        gap: 40px;
        margin: 30px 0;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .hire-btn {
        padding: 12px 40px;
        font-size: 14px;
    }

    .brands {
        padding: 50px 0;
    }

    .brands h2 {
        font-size: clamp(30px, 5.5vw, 36px);
    }

    .brands-desc {
        font-size: 14px;
        margin-bottom: 40px;
    }

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

    .brand-card {
        padding: 25px;
        height: 150px;
    }

    .gallery {
        padding: 50px 0;
    }

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

    .gallery-card {
        height: 200px;
        padding: 12px;
    }

    .gallery-card.large {
        grid-row: span 1;
        height: 360px;
    }

    .gallery-card-content h3 {
        font-size: 24px;
    }

    .gallery-card-content p {
        font-size: 13px;
    }

    .contact {
        padding: 50px 0;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer-top h3 {
        font-size: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
        margin-bottom: 25px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .newsletter-form {
        margin-top: 12px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 8px 12px;
    }

    .newsletter-form button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-legal {
        gap: 8px;
    }

    .footer-legal a {
        font-size: 11px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }


    header {
        padding: 10px 15px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-text .made-by {
        font-size: 9px;
    }

    .logo-text .name {
        font-size: 13px;
    }

    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }

    .hero-visuals {
        padding-bottom: 20%;
        margin-top: -50px;
    }

    .hero-content {
        padding-bottom: 20%;
    }

    .hero-cta-container {
        bottom: 20px;
        padding: 0 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        width: min(90%, 320px);
        border-radius: 30px;
    }

    .btn-portfolio,
    .btn-hire {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px;
        /* Larger touch target on mobile */
        font-weight: 600;
    }

    .btn-portfolio {
        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    }

    .services {
        padding: 40px 0 30px;
        margin-top: -50px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.2;
    }

    .section-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .services-carousel-wrapper {
        padding: 15px 0;
    }

    .services-carousel {
        padding: 10px 20px 15px;
        gap: 15px;
    }

    .service-card {
        min-width: 240px;
        height: 300px;
    }

    .service-card::before {
        width: 240px;
        height: 300px;
        border-radius: 18px;
    }

    .service-tab {
        width: 240px;
        padding: 10px 18px;
        border-radius: 18px 18px 0 0;
    }

    .service-tab h3 {
        font-size: 16px;
    }

    .service-content {
        width: 220px;
        height: 220px;
        top: 45px;
    }

    .service-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border: 3px solid rgba(255, 140, 66, 0.3);
    }

    .experience {
        padding: 40px 0;
    }

    .experience-banner {
        padding: 15px 0;
        margin-bottom: 40px;
    }

    .banner-items {
        font-size: 16px;
    }

    .banner-items span {
        margin: 0 15px;
    }

    .banner-items i {
        font-size: 14px;
    }

    .experience-header {
        margin-bottom: 40px;
    }

    .experience-header h2 {
        font-size: clamp(24px, 6.5vw, 28px);
    }

    .timeline {
        padding: 0 10px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        margin-bottom: 35px;
    }

    .timeline-left,
    .timeline-right {
        padding-left: 40px;
    }

    .timeline-dot {
        left: 15px;
        width: 16px;
        height: 16px;
        border: 3px solid white;
    }

    .company-name,
    .role-title {
        font-size: 15px;
    }

    .date,
    .role-desc {
        font-size: 12px;
    }

    .why-hire-me {
        padding: 40px 0;
    }

    .hire-content h2 {
        font-size: clamp(24px, 6.5vw, 28px);
        margin-bottom: 18px;
    }

    .hire-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin: 25px 0;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .hire-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .brands {
        padding: 40px 0;
    }

    .brands h2 {
        font-size: clamp(24px, 6.5vw, 28px);
        margin-bottom: 15px;
    }

    .brands-desc {
        font-size: 13px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-card {
        padding: 20px;
        height: 130px;
    }

    .brand-card img {
        max-width: 80px;
        max-height: 40px;
        margin-bottom: 12px;
    }

    .brand-card p {
        font-size: 11px;
    }

    .brand-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: 15px;
        right: 15px;
    }

    .gallery {
        padding: 40px 0;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-header h2 {
        font-size: clamp(26px, 7vw, 32px);
        margin-bottom: 15px;
    }

    .gallery-header p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .see-all-btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-card {
        height: 180px;
        padding: 12px;
    }

    .gallery-card.large {
        grid-row: span 1;
        height: 360px;
    }

    .gallery-card-content h3 {
        font-size: 22px;
    }

    .gallery-card-content p {
        font-size: 12px;
    }

    .contact {
        padding: 40px 0;
    }

    .contact h2 {
        font-size: clamp(26px, 7vw, 32px);
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .form-group {
        padding: 5px 5px 5px 18px;
        gap: 10px;
    }

    .form-group i {
        font-size: 18px;
    }

    .form-group input {
        font-size: 13px;
    }

    .send-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-top {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .footer-top h3 {
        font-size: 24px;
    }

    .hire-me-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .footer-main {
        gap: 35px;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }

    .footer-logo {
        gap: 12px;
        margin-bottom: 18px;
    }

    .footer-desc {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 12px;
        justify-content: center;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .newsletter-form {
        margin-top: 12px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 8px 12px;
    }

    .newsletter-form button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-legal {
        gap: 8px;
    }

    .footer-legal a {
        font-size: 11px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: clamp(24px, 9vw, 32px);
    }

    .hello-badge {
        padding: 4px 18px;
        font-size: 12px;
    }

    .hero-bg-circle {
        width: 280px;
        height: 280px;
    }

    .section-title {
        font-size: clamp(22px, 8vw, 28px);
    }

    .service-card {
        min-width: 220px;
        height: 280px;
    }

    .service-card::before {
        width: 220px;
        height: 280px;
    }

    .service-tab {
        width: 220px;
        padding: 8px 16px;
    }

    .service-tab h3 {
        font-size: 15px;
    }

    .service-content {
        width: 200px;
        height: 200px;
        top: 42px;
    }

    .service-arrow {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .experience-header h2,
    .hire-content h2,
    .brands h2,
    .contact h2,
    .gallery-header h2 {
        font-size: clamp(22px, 7vw, 26px);
    }

    .brand-card {
        height: 120px;
        padding: 18px;
    }

    .brand-card img {
        max-width: 70px;
        max-height: 35px;
    }

    .gallery-card {
        height: 160px;
        padding: 15px;
    }

    .footer-top h3 {
        font-size: 22px;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children if needed */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-10px);
    }

    .service-card:active .service-tab {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .service-card:active .service-arrow {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .brand-card:active {
        transform: translateY(-5px);
    }

    .brand-card:active .brand-arrow {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Compact Adjustments */
.hero {
    padding-bottom: 0;
}

.services {
    padding-top: 40px;
    padding-bottom: 20px;
}

.experience-banner {
    margin-bottom: 50px;
    padding: 15px 0;
}

.experience-header {
    margin-bottom: 50px;
}

.brands-desc {
    margin-bottom: 40px;
}

/* Lightbox / Modal styles */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    padding: 20px;
}

.lightbox[aria-hidden="false"] {
    display: flex;
}

.lightbox-inner {
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
}

.lightbox-caption {
    color: #ddd;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
}

@media (max-width: 720px) {
    .lightbox-inner {
        border-radius: 6px;
    }

    .lightbox-media img,
    .lightbox-media video {
        max-height: 65vh;
    }
}

/* Make work items clickable cursor */
.work-item {
    cursor: pointer;
}

/* Thumbnail wrapper and loader */
.thumb-wrap {
    position: relative;
    display: block;
}

.thumb-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.thumb-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    display: none;
}

.thumb-loader.active {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Lightbox unmute button */
.lightbox-unmute {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}

.lightbox-unmute.visible {
    display: block;
}

/* Play button overlay on thumbnails */
.thumb-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.thumb-play::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 16px;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.thumb-wrap:hover .thumb-play {
    transform: translate(-50%, -50%) scale(1.05);
}