* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush: #e3afba;
    --lime: #C7B65D;
    --yolk: #F3A732;
    --ceramic: #F3E7D8;
    --diner: #ba5c22;
    --off-white: #FAFAF8;
    --dark-text: #2a2a2a;
    --medium-text: #555;
    --blue: #8891c2;
    --sage: #98a674;
    --green: #6d8758;

    --env-front:#fff;
    --env-back:#d3d3d3;
    --txt:#fff;
    --bg1:#BB1881;
    --bg2:#F88B50;
}

/* Smooth scrolling for entire page */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif !important;
    background: var(--off-white);
    color: var(--dark-text);
    overflow-x: hidden;
}

a:hover {
    text-decoration: none;
}

/*header*/

.menu-toggle {
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    appearance: none;
    border: 0;
    background: none;
    overflow: visible;
    z-index: 999999;
    text-decoration: none;
    top: 50%;
    /*transform: translateY(-50%);*/
    /*right: 80px;*/
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle span {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--diner);
}

.menu-toggle span:nth-of-type(1) {
  transition: all 0.3s 0.3s, transform 0.3s 0s;
}

.menu-toggle span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
  left: 0;
  transition: all 0.3s 0.3s;
}

.menu-toggle span:nth-of-type(3) {
  bottom: 0;
  top: auto;
  left: 0;
  transition: all 0.3s 0.3s, transform 0.3s 0s;      
}

.menu-toggle.active {
    transform: translateY(-50%), rotate(135deg);
    transition: all 0.5s 0.3s;
}

.menu-toggle.active span:nth-of-type(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(90deg);
  transition: all 0.3s, transform 0.3s 0.3s;
}

.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
  transition: all 0.3s, opacity 0.3s 0s;      
}

.menu-toggle.active span:nth-of-type(3) {
  bottom: 50%;
  margin-bottom: -1px;
  transform: rotate(0deg);
  transition: all 0.3s, transform 0.3s 0.3s;      
}

.menu-hold ul.menu {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 99999;
    display: none;
    left: 0;
    top: 0;
    background: var(--sage);;
    text-align: center;
    padding-top: 100px;
    overflow-y: scroll;
    margin-left: 0;
    padding-left: 0;
}

.menu-hold ul.menu li {
    display: block !important;
    position: relative;
    float: none;
    height: unset;
    padding: 0;
}

.menu-hold ul.menu li a {
    padding: 22px;
    text-decoration: none;
    font-size: 22px;
    display: block;
    transition: 0.3s;
    border-left: none;
    width: 75%;
    margin: 0 auto;
    color: white;
    background: transparent;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-hold ul.menu li ul.dropdown {
    position: relative !important;
    left: 50%;
    top: 0;
    margin-left: 0;
    transition: all 0.4s ease;
    display: block !important;
    opacity: 0;
/*        background: white;*/
    text-align: center;
    height: auto;
    visibility: hidden;
    margin: 0;
    padding: 0;
    box-shadow: none;
    z-index: 9;
    transform: translate(-50%);
}

ul.double {
  columns: unset;
  -webkit-columns: unset;
  -moz-columns: unset;
}

.font2 {
    font-family: "bicyclette", sans-serif;
}

/* Animate on Scroll Classes */
.aos-animate {
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fade animations */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.fade-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
}

.fade-left.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
}

.fade-right.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
}

.fade-in.aos-animate {
    opacity: 1;
}

/* Scale animations */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
}

.scale-up.aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Flip animations */
.flip-up {
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: center bottom;
}

.flip-up.aos-animate {
    opacity: 1;
    transform: rotateX(0);
}

/* Slide animations */
.slide-up {
    opacity: 0;
    transform: translateY(100px);
}

.slide-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom animations */
.zoom-in {
    opacity: 0;
    transform: scale(0.6);
}

.zoom-in.aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for multiple elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Morphing Ring Elements - Global, following scroll */
.morphing-rings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    transition: all 0.1s ease;
    will-change: transform, border-radius;
    opacity: 0.4;
    pointer-events: auto; /* ADD THIS */
    cursor: pointer; /* ADD THIS */
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: var(--blush);
    top: 20%;
    left: 10%;
}

.ring-2 {
    width: 250px;
    height: 250px;
    border-color: var(--sage);
    top: 12%;
    right: 15%;
}

.ring-3 {
    width: 200px;
    height: 200px;
    border-color: var(--blue);
    bottom: 10%;
    left: 60%;
}

/* Scroll-triggered text morphing */
.text-morph {
    will-change: transform;
    transition: all 0.1s ease;
}

/* Parallax scroll elements */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease;
}

/* Liquid morphing background */
.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(45deg, var(--blush), var(--yolk), var(--lime));*/
    opacity: 0.1;
    will-change: clip-path;
    transition: clip-path 0.3s ease;
    clip-path: circle(0% at 50% 50%);
}
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.blob-holder {
    position: relative;
    height: 100%;
    width: 100%;
}

.blob {
    position: absolute;
    border-radius: 50% 40% 60% 30%;
    /*filter: blur(5px);*/
    opacity: 0.2;
    animation: morphBlob 8s ease-in-out infinite;
}

.blob:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--sage), var(--green));
    top: 19%;
    left: 5%;
    animation-delay: 0s;
}

.blob:nth-child(2) {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--sage), var(--yolk));
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.blob:nth-child(3) {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--diner), var(--blush));
    bottom: 20%;
    left: 15%;
    animation-delay: 0.6s;
}

.blob:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--blue), var(--blue));
    top: 31%;
    left: 23%;
    animation-delay: 0.8s;
}

.blob:nth-child(5) {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--diner), var(--blush));
    top: 22%;
    right: 27%;
    animation-delay: 0.2s;
}

.morph-logo {
    position: relative;
}

.logo-container {
    position: relative;
    transition: all 0.8s cubic-bezier(0.15, 0.8, 0.25, 1);
    z-index: 100;
}

.logo-container.scrolled {
    /*top: 100px;*/
    /*transform: translate(-50%, 0);*/
}

.logo-svg {
    width: 120px;
    height: auto;
}

/* IoT Curved logo - initially visible */
.iot-logo {
    position: relative;
    z-index: 2;
    transition: all 1.2s cubic-bezier(0.15, 0.8, 0.25, 1);
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Froot logo - initially hidden */
.froot-logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 1.2s cubic-bezier(0.15, 0.8, 0.25, 1);
    opacity: 0;
    transform: scale(0.8) rotate(45deg);
}

/* Hover effects - smooth crossfade */
.logo-container.transformed .iot-logo {
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
    z-index: 1;
}

.logo-container.transformed .froot-logo {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

/* Container hover effect */
.logo-container.transformed {
    /*transform: translate(-50%, 0) scale(1.05);*/
    transform: scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(204, 85, 0, 0.3));
}

.logo-container.scrolled.transformed {
    transform: scale(1.05);
}

/* Curved shapes morphing animation */
.morph-curve-1, .morph-curve-2 { 
    transition: all 1.4s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center center;
}

.logo-container.transformed .morph-curve-1 { 
    transform: rotate(-180deg) scale(0.3) translate(-400px, 200px);
    opacity: 0.3;
}

.logo-container.transformed .morph-curve-2 { 
    transform: rotate(180deg) scale(0.3) translate(400px, -200px);
    opacity: 0.3;
}

/* Individual froot logo elements animation */
.froot-logo .froot-f {
    transition: all 1.3s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(-300px, -200px) rotate(-90deg) scale(0.5);
    opacity: 0;
}

.froot-logo .froot-r1 {
    transition: all 1.4s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(300px, -150px) rotate(90deg) scale(0.5);
    opacity: 0;
}

.froot-logo .froot-o1 {
    transition: all 1.5s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(-250px, 250px) rotate(-180deg) scale(0.5);
    opacity: 0;
}

.froot-logo .froot-o2 {
    transition: all 1.6s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(250px, 200px) rotate(180deg) scale(0.5);
    opacity: 0;
}

.froot-logo .froot-t {
    transition: all 1.7s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(0px, -300px) rotate(270deg) scale(0.5);
    opacity: 0;
}

.froot-logo .froot-flourish {
    transition: all 1.8s cubic-bezier(0.15, 0.8, 0.25, 1);
    transform-origin: center;
    transform: translate(-150px, 300px) rotate(-270deg) scale(0.3);
    opacity: 0;
}

/* Hover state - elements flow into place */
.logo-container.transformed .froot-logo .froot-f {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.logo-container.transformed .froot-logo .froot-r1 {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

.logo-container.transformed .froot-logo .froot-o1 {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.3s;
}

.logo-container.transformed .froot-logo .froot-o2 {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.4s;
}

.logo-container.transformed .froot-logo .froot-t {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.5s;
}

.logo-container.transformed .froot-logo .froot-flourish {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    transition-delay: 0.6s;
}

/* Header */

/*.ScrollSmoother-wrapper {
    z-index: 999999;
}*/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    /*backdrop-filter: blur(20px);*/
    z-index: 9999999;
    padding: 10px 0;
    /*border-bottom: 1px solid rgba(42, 42, 42, 0.1);*/
    transition: all .5s ease;
}

.header.stuck .logo img {
    max-height: 80px;
}

.header.stuck {
    /*background: rgba(255, 255, 255, 0.8);*/
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

/*.logo {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-text);
    text-decoration: none;
    position: relative;
    letter-spacing: -1px;
}

.logo .o-letter {
    color: var(--diner);
    transform: rotate(-10deg);
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}*/

.logo img {
    max-height: 110px;
    transition: all .5s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--medium-text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--diner);
    transform: translateY(-2px);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--diner), var(--yolk));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::before {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--diner);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */

.newhero .overlay {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.newhero .overlay .main h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -4px;
    color: var(--diner);
    line-height: 0.9;
}

.newhero .overlay .sub {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
}

.newhero .overlay p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--medium-text);
}

.newhero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newhero .logo-svg {
    max-height: 700px;
}

.newhero .hlogo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.newhero .hlogo img {
    max-width: 700px;
}

.newhero .hlogo .uppertext {
    position: absolute;
    text-transform: uppercase;
    color: var(--blue);
    top: 7%;
    right: 25%;
    font-size: 22px;
    font-weight: 500;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLeft 1s ease 0.3s forwards;
    letter-spacing: -3px;
    color: var(--blush);;
}

.hero h1 .creative {
    background: linear-gradient(45deg, var(--green), var(--sage), var(--diner));
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    transform: skew(-5deg);
    display: inline-block;
    text-transform: uppercase;
}

.company-text {
    color: var(--blue);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.company-text::after {
    content: '●';
    color: var(--diner);
    margin-left: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 3rem;
    max-width: 520px;
    opacity: 0;
    animation: slideInLeft 1s ease 0.6s forwards;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, var(--diner) 0%, var(--blush) 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideInLeft 1s ease 0.9s forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(237, 88, 63, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(237, 88, 63, 0.5);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

.funky-shape {
    position: relative;
    width: 350px;
    height: 350px;
}

.shape-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--blush), var(--sage), var(--green));
    background-size: 300% 300%;
    border-radius: 50% 20% 80% 30%;
    animation: morphShape 6s ease-in-out infinite, gradientMove 4s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.shape-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--diner);
    border-radius: 30% 70% 70% 30%;
    animation: float 4s ease-in-out infinite;
    opacity: 0.9;
}

.stats-card {
    position: absolute;
    bottom: -60px;
    left: -60px;
    background: white;
    border: 4px solid var(--blue);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: levitate 5s ease-in-out infinite;
    transform: rotate(-5deg);
}

.stats-card h3 {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--diner), var(--yolk));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stats-card p {
    color: var(--medium-text);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section with liquid morphing */
.services-section {
    padding: 10rem 0;
    /*background: #0a0a0a;*/
    background: white;
    position: relative;
    overflow: hidden;
}

.services-section h2,
.horizontal-section.about-section {
    color: var(--diner);
}

.services-section .liquid-bg {
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s ease;
}

.services-section.morphed .liquid-bg {
    clip-path: circle(100% at 50% 50%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.services-header {
    margin-bottom: 6rem;
}

.services-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #c7b65d;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.service-item {
    /*background: #1a1a1a;*/
    /*border: 1px solid #333;*/
    /*border-radius: 20px;*/
    padding: 3rem 2rem;
    text-align: left;
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    will-change: transform, border-radius;
    transform-origin: center center;
    transition: all .5s ease;
    transition-delay: 0s !important;
    border-radius: 30px;
}

.service-item.stagger-1 {
    background: var(--blush);
}

.service-item.stagger-1:hover {
    background: var(--green);
}

.service-item.stagger-2 {
    background: var(--blue);
}

.service-item.stagger-2:hover {
    background: var(--diner);
}

.service-item.stagger-3 {
    background: var(--sage);
}

.service-item.stagger-3:hover {
    background: var(--blush);
}

.service-item.stagger-4 {
    background: var(--diner);
}

.service-item.stagger-4:hover {
    background: var(--blue);
}

.service-item:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-20px) scale(1.05) rotate(2deg);
    transition: all .5s ease;
    box-shadow: 0 20px 40px rgba(237, 88, 63, 0.3);
}

.service-item:hover .service-icon {
    color: white;
}

.service-item:hover h3 {
    color: white;
}

.service-item:hover p {
    /*color: rgba(255, 255, 255, 0.9);*/
}

.service-item:hover .read-more {
    background: white;
    color: var(--diner);
    border-color: white;
}

.service-item:hover .read-more::after {
    background: var(--diner);
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
    transition: all 0.3s ease;
}

.service-item p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.read-more {
    background: #333;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.read-more::after {
    content: '↗';
    width: 28px;
    height: 28px;
    background: white;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Portfolio/Work Section */
.work-section {
    padding: 8rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.work-content {
    position: relative;
}

.work-tag {
    background: rgba(42, 42, 42, 0.1);
    color: var(--dark-text);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(42, 42, 42, 0.2);
}

.work-description {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

.work-number {
    color: #ddd;
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.work-title {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.work-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.see-details-btn {
    background: var(--dark-text);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-details-btn:hover {
    background: var(--diner);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 88, 63, 0.3);
}

/* Work Slider */
.work-slider {
    position: relative;
    height: 450px;
    background: var(--ceramic);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%; /* Show only one slide at a time */
}

.slide {
    width: 100%; /* Each slide takes full width */
    height: 450px;
    position: relative;
    flex-shrink: 0;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--lime), var(--yolk), var(--blush), var(--diner));
    background-size: 400% 400%;
    animation: gradientMove 8s ease-in-out infinite;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100" height="100" filter="url(%23noiseFilter)" opacity="0.1"/></svg>');
    mix-blend-mode: overlay;
}

.slide-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* Different slide backgrounds with flowing patterns */
.slide:nth-child(1) .slide-content {
    background: linear-gradient(45deg, var(--diner), var(--yolk));
    background-size: 400% 400%;
    animation: gradientMove 8s ease-in-out infinite;
}

.slide:nth-child(2) .slide-content {
    background: linear-gradient(135deg, #2a1810 0%, #1a1410 50%, #0f0a08 100%);
    position: relative;
}

.slide:nth-child(2) .slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
    radial-gradient(ellipse at 80% 30%, rgba(255, 140, 60, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 100, 40, 0.3) 0%, transparent 60%),
    linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 120, 50, 0.1) 20%, 
        rgba(255, 140, 60, 0.2) 40%, 
        rgba(255, 100, 40, 0.15) 60%, 
        transparent 80%
    );
    background-size: 200% 200%, 150% 150%, 100% 100%;
    animation: flowingLines 12s ease-in-out infinite;
}

.slide:nth-child(2) .slide-content::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 50%;
    height: 80%;
    background: 
    repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 140, 60, 0.1) 2px,
        rgba(255, 140, 60, 0.1) 4px
    ),
    repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(255, 100, 40, 0.08) 3px,
        rgba(255, 100, 40, 0.08) 6px
    );
    border-radius: 50% 30% 70% 40%;
    animation: morphShape 10s ease-in-out infinite;
}

.slide:nth-child(3) .slide-content {
    background: linear-gradient(45deg, var(--lime), var(--ceramic));
    background-size: 400% 400%;
    animation: gradientMove 6s ease-in-out infinite;
}

@keyframes flowingLines {
    0%, 100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.8;
    }
    25% { 
        background-position: 100% 50%, 50% 100%, 25% 25%;
        opacity: 1;
    }
    50% { 
        background-position: 50% 100%, 100% 0%, 50% 50%;
        opacity: 0.9;
    }
    75% { 
        background-position: 0% 50%, 25% 75%, 75% 25%;
        opacity: 1;
    }
}

/* Navigation arrows */
.work-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(42, 42, 42, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
    z-index: 10;
}

.work-nav:hover {
    background: var(--diner);
    transform: translateY(-50%) scale(1.1);
}

.work-nav.prev {
    left: 15px;
}

.work-nav.next {
    right: 15px;
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Flowing abstract elements */
.flow-element {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--lime), var(--yolk));
    border-radius: 50% 30% 70% 40%;
    opacity: 0.08;
    animation: float 15s ease-in-out infinite;
    filter: blur(20px);
}

.flow-element:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.flow-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
    background: linear-gradient(45deg, var(--blush), var(--diner));
}
.about-section {
    padding: 8rem 0;
    background: var(--off-white);
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loop-art {
    position: relative;
    width: 400px;
    height: 400px;
}

.loop-art .loop {
    position: absolute;
    border-radius: 50%;
    border: 12px solid;
    animation: float 10s ease-in-out infinite;
}

.loop-art .loop:nth-child(1) {
    width: 200px;
    height: 200px;
    border-color: var(--diner);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loop-art .loop:nth-child(2) {
    width: 120px;
    height: 120px;
    border-color: var(--blush);
    top: 20%;
    left: 60%;
    animation-delay: 1s;
}

.loop-art .loop:nth-child(3) {
    width: 80px;
    height: 80px;
    border-color: var(--sage);
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.loop-art .loop:nth-child(4) {
    width: 60px;
    height: 60px;
    border-color: var(--blue);
    top: 10%;
    left: 20%;
    animation-delay: 3s;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content .number {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px var(--blush);
    line-height: 0.8;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--medium-text);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* About Section */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes morphBlob {
    0%, 100% { 
        border-radius: 50% 40% 60% 30%;
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        border-radius: 60% 30% 40% 50%;
        transform: translateY(-20px) rotate(90deg);
    }
    50% { 
        border-radius: 30% 60% 50% 40%;
        transform: translateY(-10px) rotate(180deg);
    }
    75% { 
        border-radius: 40% 50% 30% 60%;
        transform: translateY(-15px) rotate(270deg);
    }
}

@keyframes morphShape {
    0%, 100% { border-radius: 50% 20% 80% 30%; }
    25% { border-radius: 30% 60% 40% 70%; }
    50% { border-radius: 70% 30% 50% 80%; }
    75% { border-radius: 20% 80% 60% 40%; }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes levitate {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-10deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(-15deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .work-visual {
        order: -1;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .services-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .bg-elements .blob {
        /*display: none;*/
    }

    .blob:nth-child(1) {
        height: 40px;
        width: 40px;
    }

    .blob:nth-child(2) {
        height: 70px;
        width: 70px;
    }

    .blob:nth-child(3) {
        height: 70px;
        width: 70px;
    }

    .blob:nth-child(4) {
        height: 40px;
        width: 40px;
    }

    .blob:nth-child(5) {
        height: 70px;
        width: 70px;
    }

    .blob:nth-child(6) {
        height: 70px;
        width: 70px;
    }

    .hero-container {
        padding: 0 1.5rem;
    }
}

/* Horizontal Scroll Container */
        .horizontal-scroll-wrapper {
            height: 500vh;
            position: relative;
            z-index: 9;
        }

        .horizontal-scroll-container {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .horizontal-sections {
            display: flex;
            width: 400vw;
            height: 100vh;
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        .horizontal-section {
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            padding: 0 5%;
        }

        /* Section 1 - About */
        .horizontal-section.about-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .about-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .loop-art {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }

        .loop {
            position: absolute;
            border-radius: 50%;
            border: 6px solid;
            animation: float 6s ease-in-out infinite;
        }

        .loop:nth-child(1) {
            width: 60px;
            height: 60px;
            border-color: var(--yolk);
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .loop:nth-child(2) {
            width: 90px;
            height: 90px;
            border-color: var(--blush);
            top: 15%;
            right: 20%;
            animation-delay: 1s;
        }

        .loop:nth-child(3) {
            width: 75px;
            height: 75px;
            border-color: var(--diner);
            bottom: 30%;
            left: 20%;
            animation-delay: 2s;
        }

        .loop:nth-child(4) {
            width: 140px;
            height: 140px;
            border-color: var(--lime);
            bottom: 20%;
            right: 15%;
            animation-delay: 0.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-15px) scale(1.05); }
        }

        .about-content h2 {
            font-size: 3.5em;
            font-weight: 900;
            /*color: var(--dark-text);*/
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .about-content p {
            font-size: 1.1em;
            line-height: 1.7;
            color: var(--medium-text);
            margin-bottom: 25px;
        }

        /* Section 2 - Process */
        .horizontal-section.process-section {
            background: linear-gradient(135deg, var(--sage) 0%, var(--green) 100%);
            color: white;
        }

        .process-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        .process-container h2 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .process-step {
            background: rgba(255,255,255,0.1);
            padding: 30px 20px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .step-number {
            font-size: 2em;
            font-weight: 900;
            color: var(--ceramic);
            margin-bottom: 15px;
        }

        .step-title {
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        /* Section 3 - Difference */
        .horizontal-section.difference-section {
            background: var(--blush);
        }

        .difference-container {
            max-width: 1200px;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

        .difference-container .bigtext {
            position: relative;
            font-size: 85px;
            line-height: 85px;
            font-weight: 900;
            text-transform: uppercase;
            text-align: center;
            color: white;
        }

        .difference-container .bigtext span {
            font-weight: 500;
        }

        .difference-content h2 {
            font-size: 3.5em;
            font-weight: 900;
            color: var(--dark-text);
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255,255,255,0.7);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--sage), var(--yolk));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: white;
        }

        .creative-graphic {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, var(--blue), var(--blue), var(--blush));
            border-radius: 50% 30% 50% 30%;
            animation: morphing 8s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: white;
            margin: 0 auto;
        }

        @keyframes morphing {
            0%, 100% { border-radius: 50% 30% 50% 30%; transform: rotate(0deg); }
            25% { border-radius: 30% 50% 30% 50%; transform: rotate(90deg); }
            50% { border-radius: 50% 30% 50% 30%; transform: rotate(180deg); }
            75% { border-radius: 30% 50% 30% 50%; transform: rotate(270deg); }
        }

        /* Section 4 - Final */
        .horizontal-section.final-section {
            background: var(--blue);
            color: white;
        }

        .final-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        .final-container h2 {
            font-size: 4em;
            margin-bottom: 30px;
            font-weight: 900;
        }

        .final-container p {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .final-cta {
            background: white;
            color: var(--diner);
            border: none;
            padding: 20px 40px;
            font-size: 1.2em;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .final-cta:hover {
            transform: translateY(-5px);
        }

        /* Post-scroll content */
        .post-content {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--off-white);
        }

        .post-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: var(--dark-text);
        }

        /* Progress indicator */
        .progress-indicator {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--diner);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            z-index: 1000;
            font-size: 0.9em;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .horizontal-scroll-wrapper {
                height: 400vh;
            }
            
            .about-container,
            .difference-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content h2,
            .difference-content h2 {
                font-size: 2.5em;
            }

            .final-container h2 {
                font-size: 2.8em;
            }

            .loop-art {
                width: 250px;
                height: 250px;
            }

            .creative-graphic {
                width: 200px;
                height: 200px;
                font-size: 2.5em;
            }
        }

/*Footer*/

 

.footer {
            background: var(--green);
            color: #ffffff;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100vh;
            z-index: 99;
        }

        .footer-links {
            height: 144px;
            width: 100%;
            transform: translateY(-96px);
            justify-content: space-between;
            padding-top: 224px;
            padding-bottom: 8px;
            display: flex;
            z-index: 10;
            position: relative;
        }

        .footer-links-left {
            position: absolute;
            margin-left: 24px;
        }

        .footer-links-right {
            position: absolute;
            margin-left: 51%;
        }

        @media (min-width: 1024px) {
            .footer-links-left {
                margin-left: 40px;
            }
            .footer-links-right {
                margin-left: calc(51% - 40px);
            }
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 4px;
            list-style: none;
            font-size: 18px;
        }

        .footer-links li {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-links li:nth-child(1) { animation-delay: 0s; }
        .footer-links li:nth-child(2) { animation-delay: 0.1s; }
        .footer-links li:nth-child(3) { animation-delay: 0.2s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            transform: translateY(-2px);
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .letswork-wrapper {
            position: relative;
            margin: 0 4px;
            display: flex;
            flex: 1;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
        }

        @media (min-width: 1024px) {
            .letswork-wrapper {
                /*margin: 0 40px;*/
                padding: 80px;
            }
        }

        .letswork-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            background: var(--green);
        }

        .letswork-text {
            display: flex;
            justify-content: center;
            font-size: clamp(8rem, 11.5vw, 16rem);
            font-weight: 900;
            color: white;
            letter-spacing: 2px;
            line-height: 0.8;
            user-select: none;
            white-space: nowrap;
        }

        /* Create multiple layers for parallax effect - Desktop (25 layers) */
        @media (min-width: 1024px) {
            .letswork-layer:nth-child(1) { transform: translateY(0px); }
            .letswork-layer:nth-child(2) { transform: translateY(0.24px); }
            .letswork-layer:nth-child(3) { transform: translateY(1.64px); }
            .letswork-layer:nth-child(4) { transform: translateY(5.11px); }
            .letswork-layer:nth-child(5) { transform: translateY(11.44px); }
            .letswork-layer:nth-child(6) { transform: translateY(21.38px); }
            .letswork-layer:nth-child(7) { transform: translateY(35.62px); }
            .letswork-layer:nth-child(8) { transform: translateY(54.84px); }
            .letswork-layer:nth-child(9) { transform: translateY(79.70px); }
            .letswork-layer:nth-child(10) { transform: translateY(110.84px); }
            .letswork-layer:nth-child(11) { transform: translateY(148.88px); }
            .letswork-layer:nth-child(12) { transform: translateY(194.42px); }
            .letswork-layer:nth-child(13) { transform: translateY(248.05px); }
            .letswork-layer:nth-child(14) { transform: translateY(310.37px); }
            .letswork-layer:nth-child(15) { transform: translateY(381.94px); }
            .letswork-layer:nth-child(16) { transform: translateY(463.19px); }
            .letswork-layer:nth-child(17) { transform: translateY(554.75px); }
            .letswork-layer:nth-child(18) { transform: translateY(657.26px); }
            .letswork-layer:nth-child(19) { transform: translateY(771.35px); }
            .letswork-layer:nth-child(20) { transform: translateY(897.67px); }
            .letswork-layer:nth-child(21) { transform: translateY(1036.86px); }
            .letswork-layer:nth-child(22) { transform: translateY(1189.58px); }
            .letswork-layer:nth-child(23) { transform: translateY(1356.49px); }
            .letswork-layer:nth-child(24) { transform: translateY(1538.24px); }
            .letswork-layer:nth-child(25) { transform: translateY(1735.52px); }
        }

        /* Mobile layers (25 layers with compressed spacing) */
        @media (max-width: 1023px) {
            .letswork-layer:nth-child(1) { transform: translateY(0px); }
            .letswork-layer:nth-child(2) { transform: translateY(0.1px); }
            .letswork-layer:nth-child(3) { transform: translateY(0.4px); }
            .letswork-layer:nth-child(4) { transform: translateY(0.9px); }
            .letswork-layer:nth-child(5) { transform: translateY(1.6px); }
            .letswork-layer:nth-child(6) { transform: translateY(2.5px); }
            .letswork-layer:nth-child(7) { transform: translateY(3.6px); }
            .letswork-layer:nth-child(8) { transform: translateY(4.9px); }
            .letswork-layer:nth-child(9) { transform: translateY(6.4px); }
            .letswork-layer:nth-child(10) { transform: translateY(8.1px); }
            .letswork-layer:nth-child(11) { transform: translateY(10px); }
            .letswork-layer:nth-child(12) { transform: translateY(12.1px); }
            .letswork-layer:nth-child(13) { transform: translateY(14.4px); }
            .letswork-layer:nth-child(14) { transform: translateY(16.9px); }
            .letswork-layer:nth-child(15) { transform: translateY(19.6px); }
            .letswork-layer:nth-child(16) { transform: translateY(22.5px); }
            .letswork-layer:nth-child(17) { transform: translateY(25.6px); }
            .letswork-layer:nth-child(18) { transform: translateY(28.9px); }
            .letswork-layer:nth-child(19) { transform: translateY(32.4px); }
            .letswork-layer:nth-child(20) { transform: translateY(36.1px); }
            .letswork-layer:nth-child(21) { transform: translateY(40px); }
            .letswork-layer:nth-child(22) { transform: translateY(44.1px); }
            .letswork-layer:nth-child(23) { transform: translateY(48.4px); }
            .letswork-layer:nth-child(24) { transform: translateY(52.9px); }
            .letswork-layer:nth-child(25) { transform: translateY(57.6px); }
        }

        /* Subtle animation on load */
        .letswork-layer {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .letswork-layer:nth-child(1) { animation-delay: 0.02s; }
        .letswork-layer:nth-child(2) { animation-delay: 0.04s; }
        .letswork-layer:nth-child(3) { animation-delay: 0.06s; }
        .letswork-layer:nth-child(4) { animation-delay: 0.08s; }
        .letswork-layer:nth-child(5) { animation-delay: 0.1s; }
        .letswork-layer:nth-child(6) { animation-delay: 0.12s; }
        .letswork-layer:nth-child(7) { animation-delay: 0.14s; }
        .letswork-layer:nth-child(8) { animation-delay: 0.16s; }
        .letswork-layer:nth-child(9) { animation-delay: 0.18s; }
        .letswork-layer:nth-child(10) { animation-delay: 0.2s; }
        .letswork-layer:nth-child(11) { animation-delay: 0.22s; }
        .letswork-layer:nth-child(12) { animation-delay: 0.24s; }
        .letswork-layer:nth-child(13) { animation-delay: 0.26s; }
        .letswork-layer:nth-child(14) { animation-delay: 0.28s; }
        .letswork-layer:nth-child(15) { animation-delay: 0.3s; }
        .letswork-layer:nth-child(16) { animation-delay: 0.32s; }
        .letswork-layer:nth-child(17) { animation-delay: 0.34s; }
        .letswork-layer:nth-child(18) { animation-delay: 0.36s; }
        .letswork-layer:nth-child(19) { animation-delay: 0.38s; }
        .letswork-layer:nth-child(20) { animation-delay: 0.4s; }
        .letswork-layer:nth-child(21) { animation-delay: 0.42s; }
        .letswork-layer:nth-child(22) { animation-delay: 0.44s; }
        .letswork-layer:nth-child(23) { animation-delay: 0.46s; }
        .letswork-layer:nth-child(24) { animation-delay: 0.48s; }
        .letswork-layer:nth-child(25) { animation-delay: 0.5s; }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Scroll-based parallax effect */
        @media (prefers-reduced-motion: no-preference) {
            .footer {
                transform-style: preserve-3d;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-links {
                padding-top: 180px;
            }
            
            .footer-links-right {
                margin-left: 55%;
            }
            
            .letswork-text {
                font-size: clamp(6rem, 15vw, 12rem);
            }
        }



/*reveal bits*/
/*Reveal Page*/

/*.reveal-block {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: scroll;
    background: white;
    z-index: 999999;
}*/

.difference-container {
    position: relative;
}

.slide-bar {
    position: absolute;
    top: 50%;
    left: 95px;
    transform: translateY(-50%) rotateZ(11deg);
    width: 10px;
    height: 600px;
    z-index: 10;
}

.bar {
    position: relative;
    width: 100%;
    height: 295px;
    border-radius: 100px;
    background-color: #ff6b47;
    top: -10%;
}

@media (max-width: 768px) {
    .slide-bar,
    .logo-shadow {
        display: none;
    }

    .deco {
        opacity: 0.1 !important;
    }
    .deco-holder {
        position: fixed;
        height: 100vh;
        width: 100%;
    }
}

/* Floating Icons */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            animation: floatIcon 20s linear infinite;
        }

        .icon-globe { top: 10%; left: 10%; color: #9BB5E8; animation-delay: 0s; }
        .icon-lightbulb { top: 15%; right: 20%; color: #FFB5BA; animation-delay: 3s; }
        .icon-laptop { top: 25%; left: 15%; color: #9BB5E8; animation-delay: 6s; }
        .icon-camera { top: 30%; right: 15%; color: #ff6b47; animation-delay: 9s; }
        .icon-cloud { top: 20%; right: 30%; color: #9BB5E8; animation-delay: 12s; }
        .icon-glasses { bottom: 40%; left: 20%; color: #ff6b47; animation-delay: 15s; }
        .icon-music { bottom: 50%; left: 10%; color: #FFB5BA; animation-delay: 18s; }
        .icon-coffee { bottom: 30%; right: 25%; color: #ff6b47; animation-delay: 2s; }
        .icon-car { bottom: 25%; left: 25%; color: #8BC34A; animation-delay: 5s; }
        .icon-plant { bottom: 35%; right: 35%; color: #8BC34A; animation-delay: 8s; }
        .icon-sparkles { top: 35%; left: 30%; color: #9BB5E8; animation-delay: 11s; }
        .icon-postit { top: 40%; right: 40%; color: #FFB5BA; animation-delay: 14s; }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(-10px) rotate(-3deg);
            }
            75% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 3rem;
            }
            
            .container {
                padding: 1rem;
            }
            
            .floating-icon {
                font-size: 1.5rem;
            }

            .btn-primary {
                display: block;
                width: 100%;
            }
        }

/* Floating decorative elements */

.deco-holder {
    position: absolute;
    height: 100%;
    width: 100%;
}

.deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    font-size: 4.5rem;
    z-index: 9;
}

.deco:nth-child(2n) { animation-delay: -2s; }
.deco:nth-child(3n) { animation-delay: -4s; }
.deco:nth-child(4n) { animation-delay: -1s; }
.deco:nth-child(5n) { animation-delay: -3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.deco-globe {
    top: 8%;
    left: 8%;
    color: #3b82f6;
}

.deco-lightbulb {
    top: 15%;
    right: 15%;
    color: white;
}

.deco-camera {
    top: 25%;
    right: 25%;
    color: #ea580c;
}

.deco-cloud {
    top: 35%;
    right: 8%;
    color: #8b5cf6;
}

.deco-note {
    bottom: 30%;
    left: 10%;
    color: #ec4899;
}

.deco-coffee {
    bottom: 20%;
    right: 20%;
    color: #ea580c;
}

.deco-rocket {
    top: 45%;
    left: 5%;
    color: #10b981;
}

.deco-heart {
    bottom: 35%;
    right: 35%;
    color: #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

.deco-star {
    top: 55%;
    right: 12%;
    color: white;
}

.deco-magic {
    bottom: 45%;
    left: 25%;
    color: #8b5cf6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/*Services*/

/* Hero Section */
.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroll-text {
    display: inline-block;
    font-size: clamp(6rem, 15vw, 20rem);
    font-weight: 900;
    animation: scroll-infinite 25s linear infinite;
}

@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-icon {
    display: inline-block;
    width: clamp(4rem, 10vw, 12rem);
    height: clamp(4rem, 10vw, 12rem);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 1.5rem;
    animation: rotate 15s linear infinite;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    right: 25%;
    bottom: 25%;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 6s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%; }
    75% { border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%; }
}

/*---------- Stacking services ---------- */
.stack-section{padding:40px 0}
.stack{
  position:relative;
  /* Controls */
  --stackTop: 140px;  /* where the first card pins */
  --peek: 110px;      /* how much of each previous card remains visible ("heading poke") */
  /*padding-bottom: calc(var(--peek) * 2 + 200px); */
}
/* fixed mode for the last card */
.stack-card.is-fixed {
  position: fixed !important;
  top: var(--stackTop, 88px);
  left: 50%;
  transform: translateX(-50%);         /* keep same center as normal */
  width: var(--lastWidth, auto);        /* set from JS to avoid jump */
  z-index: 999;                         /* above page content */
}

/* placeholder to keep layout from jumping when we fix the last card */
.stack-last-spacer { height: var(--lastHeight, 0px); }

/* Each subsequent card pins lower by --peek and sits ABOVE the prior one */
.stack-card{
  position: sticky;
  top: calc(var(--stackTop) + (var(--i) * var(--peek)));
  z-index: calc(100 + var(--i));
  transform-origin: top center;
}

/* make the holder fill the card regardless of content height */
.video-bg{
  position: absolute;
  inset: 0;          /* top/right/bottom/left: 0 */
  z-index: 0;        /* NOT negative */
}
.video-bg video{
  width: 100%; height: 100%;
  object-fit: cover; display:block;
  pointer-events: none;
}
/* put text above video */
.stack-inner > *:not(.video-bg){ position: relative; z-index: 1; }

.stack-inner{
    position: relative;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  background:var(--card);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:22px 22px 24px;
  box-shadow: var(--ring);
  /* add a slight top accent so the "peek" reads like a tab */
  background-clip: padding-box;
  margin: 20px;
  min-height: 500px;
  color: white;
  overflow: hidden;
  /*box-shadow: 0 20px 40px rgba(237, 88, 63, 0.3);*/
}

.stack-inner a {
    float: right;
    display: inline-block;
}
/*.stack-inner.stack1 {
    background: var(--blush);;
}
.stack-inner.stack2 {
    background: var(--blue);
}
.stack-inner.stack3 {
    background: var(--sage);
}
.stack-inner.stack4 {
    background: var(--diner);
}*/
.stack-icon{font-size:28px;display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:#0c1220;border:1px solid rgba(255,255,255,0.08)}
.stack-content h3{margin:0 0 6px;display: inline-block;}
.stack-content p{margin:0 0 8px;color:var(--muted)}
.stack-content ul{margin:0;padding-left:18px}
.stack-content li{margin:4px 0;color:#c4cde0}

.stack-section .about-visual {
    position: static;
    height: 100%;
}

@media (max-width:900px){
  .stack{ --stackTop: 72px; --peek: 48px; }
  .stack-inner{grid-template-columns:1fr}
}
  .stack-inner{grid-template-columns:1fr}
  .stack-header{top: 10px}
}.stack-inner{grid-template-columns:1fr}}

/*Page Bits*/

/* Main Content */
.main-content {
    background: var(--off-white);
    color: var(--dark-text);
}

.content-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--ceramic);
    background: #ffffffc2;
}

.content-section.blue {
    background: var(--blue);
}

.content-section.blue .text-content p,
.content-section.blue p,
.content-section.blue .feature-list li,
.content-section.blue .section-title,
.content-section.blue .highlight-text
 {
    color: white;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--diner);
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 25px;
    color: var(--medium-text);
}

.highlight-text {
    color: var(--diner);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    position: relative;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid var(--ceramic);
    transition: all 0.3s ease;
    color: var(--medium-text);
}

.feature-list li:hover {
    padding-left: 50px;
    color: var(--diner);
}

.feature-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--yolk);
    font-size: 1.5rem;
}

.section-image {
    position: relative;
    height: 70%;
    min-height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(237, 88, 63, 0.4);
    top: 50%;
    transform: translateY(-50%);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.column-image {
    position: relative;
    height: 70%;
    min-height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(237, 88, 63, 0.4);
}

.content-section.blue .column-image {
    box-shadow: none;
    border: 10px solid white;
}

.image-hold {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Quote Section */
.quote-section {
    background: var(--ceramic);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.quote-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}

.quote-author {
    color: var(--diner);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--sage);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--yolk);
    box-shadow: 0 20px 40px rgba(186, 92, 34, 0.15);
}

.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yolk);
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.process-description {
    line-height: 1.6;
    color: var(--medium-text);
}

.process-card .staff-pic {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    position: relative;
    border: 10px solid white;
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
}

.process-card.staff .process-title {
    text-align: center;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    /*background: linear-gradient(135deg, var(--blue) 0%, var(--sage) 100%);*/
    background: var(--blush);
    padding: 100px 0;
    text-align: center;
    color: var(--off-white);
}

.cta-section a {
    color: white;
    font-weight: bold;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--off-white);
    color: var(--diner);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    background: var(--blue);
    color: var(--off-white);
}

/* Process section styling */
.process-section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--medium-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-content,
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .content-section {
        padding: 60px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-image,
    .section-image,
    .column-image {
        height: 200px;
    }
}

/*contact*/


/*responsive*/

@media (max-width: 700px) {
    .newhero .hlogo img {
        max-width: 90%;
        text-align: center;
    }

    .morphing-rings {
        display: none;
    }

    .newhero .hlogo {
        display: block;
        text-align: center;
    }

    .newhero .hlogo .uppertext {
        position: relative;
        top: unset;
        right: unset;
        text-align: center;
        margin-bottom: 20px;
    }

    .services-section {
        padding: 2em 0;
    }

    .about-container, .difference-container {

    }

    .stack-content {
        text-align: center;
    }

    .stack-content h3 {
        font-size: 22px;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .stack-inner a {
        float: unset;
        top: 20px;
    }

    .stack-inner {
        min-height: 300px;
    }

    .nav-container {
        padding: 0 1em;
    }

    .newhero {
        min-height: 80vh;
    }

    .header {
        background: white;
    }

    .service-item {
        height: auto;
    }

    .newhero {
        padding-top: 120px;
    }
}

@media (max-width: 900px){
  .aos-animate, [data-aos]{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .footer {
    height: 40vh;
  }

  .letswork-text {
        font-size: clamp(1rem, 15vw, 12rem);
    }
}


/* Mobile: disable horizontal scroll and stack sections */
@media (max-width: 900px){
  .horizontal-scroll-wrapper{
    height: auto !important;      /* stop the 500vh/400vh trick */
  }
  .horizontal-scroll-container{
    position: static;             /* un-stick */
    height: auto;
    overflow: visible;
    align-items: stretch;
  }
  .horizontal-sections{
    display: block;               /* stop the flex row */
    width: auto;                  /* no 400vw */
    height: auto;
    transform: none !important;   /* kill translateX from JS/inline */
  }
  .horizontal-section{
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    padding: 48px 24px;           /* comfy spacing */
  }

  .difference-container .bigtext {
    font-size: 45px;
    line-height: 45px;
  }

  .about-visual {
    display: none;
  }

  .about-container {
    padding: 0;
  }

  .horizontal-section.difference-section {
    padding: 120px 0;
  }
}


/*contact*/

#contact-section {
    position: relative;
    padding: 120px 0;
}

#contact-section .form-holder {
    position: relative;
    padding: 80px 20px;
    background: white;
        border-radius: 25px;
    box-shadow: 0 15px 35px rgba(237, 88, 63, 0.4);
        width: 100%;
    z-index: 99;
    padding-bottom: 30px;
}

#contact-section .form-holder .see-details-btn {
    display: block;
    width: 100%;
}

.form-control {
    border-radius: 15px;
}

textarea.form-control {
    height: 140px;
}