/*
Theme Name: CoWay Studio
Description: A modern, responsive WordPress theme for CoWay Studio - a digital product development company. Features a dark color scheme with animated elements and clean typography.
Version: 1.0.0
Author: CoWay Studio
Text Domain: coway-studio
*/

/* Header Background - Always Fixed */
#header-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 30 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* Tech Logos Animation */
@keyframes techFlow1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes techFlow2 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes techFlow3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-row-1 {
    animation: techFlow1 30s linear infinite;
}

.tech-row-2 {
    animation: techFlow2 35s linear infinite;
}

.tech-row-3 {
    animation: techFlow3 40s linear infinite;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #06141B;
    color: #CCDCDF;
    line-height: 1.6;
}

/* Color Variables */
:root {
    --primary-bg: #06141B;
    --secondary-bg: #11212D;
    --tertiary-bg: #253745;
    --accent-bg: #4A5C6A;
    --primary-text: #CCDCDF;
    --secondary-text: #9BA8AB;
    --accent-color: #CC694E;
    --border-color: #253745;
}

/* CoWay Brand Colors */
.text-coway-dark {
    color: #06141B;
}

.text-coway-accent {
    color: #4A5C6A;
}

.bg-coway-dark {
    background-color: #06141B;
}

.bg-coway-button {
    background-color: #4A5C6A;
}

.text-coway-button-text {
    color: #CCD0CF;
}

.hover\:bg-coway-button-hover:hover {
    background-color: #253745;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Animated Grid Background */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.8;
    background-image: 
        linear-gradient(rgba(37, 55, 69, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 55, 69, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridFloat 20s ease-in-out infinite;
}

/* Soft Moving Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        45deg,
        rgba(37, 55, 69, 0.03) 0%,
        rgba(17, 33, 45, 0.05) 25%,
        rgba(6, 20, 27, 0.02) 50%,
        rgba(37, 55, 69, 0.04) 75%,
        rgba(17, 33, 45, 0.03) 100%
    );
    background-size: 400% 400%;
    animation: gradientFlow 25s ease-in-out infinite;
}

/* Animated Light Shadows/Mist Blobs */
.hero-mist-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(155, 168, 171, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 92, 106, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(155, 168, 171, 0.04) 0%, transparent 70%);
    background-size: 300px 300px, 400px 400px, 250px 250px;
    animation: mistFloat 30s ease-in-out infinite;
}

.hero-grid-tiles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.grid-tile {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(37, 55, 69, 0.08);
    border: 1px solid rgba(37, 55, 69, 0.15);
    transition: all 8s ease-in-out;
    animation: tileBreath 12s ease-in-out infinite;
    will-change: opacity, transform, background-color;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Slow Pulsing Grid Cells */
.grid-tile.pulse-slow {
    animation: slowPulse 20s ease-in-out infinite;
}

.grid-tile.pulse-medium {
    animation: mediumPulse 15s ease-in-out infinite;
}

.grid-tile.pulse-fast {
    animation: fastPulse 10s ease-in-out infinite;
}

.grid-tile:nth-child(odd) {
    background: rgba(17, 33, 45, 0.12);
    animation-delay: -2s;
    animation-duration: 15s;
}

.grid-tile:nth-child(3n) {
    background: rgba(6, 20, 27, 0.1);
    animation-delay: -4s;
    animation-duration: 18s;
}

.grid-tile:nth-child(5n) {
    background: rgba(37, 55, 69, 0.18);
    animation-delay: -6s;
    animation-duration: 10s;
}

.grid-tile:nth-child(7n) {
    background: rgba(17, 33, 45, 0.15);
    animation-delay: -8s;
    animation-duration: 14s;
}

.grid-tile:nth-child(11n) {
    background: rgba(6, 20, 27, 0.12);
    animation-delay: -10s;
    animation-duration: 16s;
}

/* Grid Animation Keyframes */
@keyframes gridFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-10px) translateX(5px);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) translateX(-5px);
        opacity: 0.85;
    }
    75% { 
        transform: translateY(-5px) translateX(10px);
        opacity: 0.95;
    }
}

@keyframes gradientFlow {
    0%, 100% { 
        background-position: 0% 0%;
        opacity: 0.6;
    }
    25% { 
        background-position: 100% 50%;
        opacity: 0.8;
    }
    50% { 
        background-position: 50% 100%;
        opacity: 0.7;
    }
    75% { 
        background-position: 0% 50%;
        opacity: 0.9;
    }
}

@keyframes mistFloat {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 0.6;
    }
    33% { 
        background-position: 50% 25%, 0% 0%, 25% 75%;
        opacity: 0.8;
    }
    66% { 
        background-position: 100% 50%, 50% 50%, 75% 25%;
        opacity: 0.7;
    }
}

@keyframes slowPulse {
    0%, 100% { 
        opacity: 0.05;
        transform: scale(1);
        background-color: rgba(37, 55, 69, 0.05);
    }
    50% { 
        opacity: 0.15;
        transform: scale(1.02);
        background-color: rgba(37, 55, 69, 0.12);
    }
}

@keyframes mediumPulse {
    0%, 100% { 
        opacity: 0.08;
        transform: scale(1);
        background-color: rgba(17, 33, 45, 0.08);
    }
    50% { 
        opacity: 0.18;
        transform: scale(1.03);
        background-color: rgba(17, 33, 45, 0.15);
    }
}

@keyframes fastPulse {
    0%, 100% { 
        opacity: 0.06;
        transform: scale(1);
        background-color: rgba(6, 20, 27, 0.06);
    }
    50% { 
        opacity: 0.16;
        transform: scale(1.04);
        background-color: rgba(6, 20, 27, 0.12);
    }
}

@keyframes tileBreath {
    0%, 100% { 
        opacity: 0.08;
        transform: scale(1);
        background-color: rgba(37, 55, 69, 0.08);
    }
    25% { 
        opacity: 0.25;
        transform: scale(1.03);
        background-color: rgba(37, 55, 69, 0.18);
    }
    50% { 
        opacity: 0.12;
        transform: scale(0.97);
        background-color: rgba(17, 33, 45, 0.12);
    }
    75% { 
        opacity: 0.3;
        transform: scale(1.02);
        background-color: rgba(6, 20, 27, 0.15);
    }
}

/* Wave Pattern Animation */
.grid-tile.wave-pattern {
    animation: waveBreath 16s ease-in-out infinite;
}

.grid-tile.wave-pattern:nth-child(odd) {
    animation-delay: -1s;
}

.grid-tile.wave-pattern:nth-child(3n) {
    animation-delay: -2s;
}

.grid-tile.wave-pattern:nth-child(5n) {
    animation-delay: -3s;
}

@keyframes waveBreath {
    0%, 100% { 
        opacity: 0.06;
        transform: scale(1) translateY(0px);
        background-color: rgba(37, 55, 69, 0.06);
    }
    20% { 
        opacity: 0.22;
        transform: scale(1.04) translateY(-3px);
        background-color: rgba(17, 33, 45, 0.15);
    }
    40% { 
        opacity: 0.1;
        transform: scale(0.96) translateY(2px);
        background-color: rgba(6, 20, 27, 0.08);
    }
    60% { 
        opacity: 0.28;
        transform: scale(1.03) translateY(-2px);
        background-color: rgba(37, 55, 69, 0.18);
    }
    80% { 
        opacity: 0.12;
        transform: scale(0.98) translateY(3px);
        background-color: rgba(17, 33, 45, 0.1);
    }
}

/* Performance Optimizations */
.grid-tile {
    will-change: opacity, transform, background-color;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .hero-grid-overlay {
        background-size: 28px 28px;
    }
    
    .hero-gradient-overlay {
        background-size: 300% 300%;
    }
    
    .hero-mist-overlay {
        background-size: 200px 200px, 300px 300px, 150px 150px;
    }
    
    .grid-tile {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-grid-overlay {
        background-size: 20px 20px;
    }
    
    .hero-gradient-overlay {
        background-size: 250% 250%;
    }
    
    .hero-mist-overlay {
        background-size: 150px 150px, 200px 200px, 100px 100px;
    }
    
    .grid-tile {
        width: 15px;
        height: 15px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .grid-tile,
    .hero-grid-overlay,
    .hero-gradient-overlay,
    .hero-mist-overlay {
        animation: none;
    }
    
    .grid-tile {
        opacity: 0.08;
        transform: none;
    }
    
    .hero-gradient-overlay {
        opacity: 0.4;
    }
    
    .hero-mist-overlay {
        opacity: 0.3;
    }
}


/* Philosophy Section */
.philosophy-section {
    position: relative;
    background: linear-gradient(to bottom, #0B1A23 0%, #1F2937 100%);
    padding: 40px 0 20px 0;
    min-height: auto;
}

.philosophy-sidebar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 140px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.philosophy-sidebar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    transform: rotate(-90deg);
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.philosophy-content {
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    text-align: center;
}

.philosophy-heading {
    font-size: 4.5rem;
    font-weight: bold;
    color: #CCDCDF;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    width: 100%;
    text-align: left;
}

.philosophy-highlight {
    background: rgba(155, 168, 171, 0.2);
    color: #CCDCDF;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.philosophy-highlight:hover {
    background: rgba(155, 168, 171, 0.3);
}

.philosophy-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.philosophy-description {
    font-size: 1rem;
    color: #9BA8AB;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
    opacity: 0.8;
    text-align: left;
}

.philosophy-button-container {
    position: absolute;
    bottom: 0;
    right: 0;
}

.philosophy-button {
    background: #CCD0CF;
    color: #06141B;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.philosophy-button:hover {
    background: #B8C2C5;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .philosophy-sidebar {
        display: none;
    }
    
    .philosophy-content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .philosophy-description {
        max-width: 100%;
    }
    
    .philosophy-button-container {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 30px 0 15px 0;
    }
    
    .philosophy-heading {
        font-size: 3rem;
    }
    
    .philosophy-description {
        font-size: 0.9rem;
    }
    
    .philosophy-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.section {
    padding: 96px 0;
}

/* Services Section */
.services-section {
    position: relative;
    background: linear-gradient(to bottom, #06141B 0%, #06141B 40%, #11212D 60%, #253745 75%, #4A5C6A 90%, #9BA8AB 100%);
    padding: 80px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-sidebar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 140px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.services-sidebar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    transform: rotate(-90deg);
    white-space: nowrap;
    text-transform: uppercase;
}

.services-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    width: 100%;
}

.services-left {
    display: flex;
    flex-direction: column;
}

.services-heading {
    font-size: 4rem;
    font-weight: bold;
    color: #CCD0CF;
    line-height: 1.1;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.services-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover,
.service-item.active {
    background: rgba(164, 166, 198, 0.1);
    border: 1px solid rgba(164, 166, 198, 0.2);
}

.service-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9BA8AB;
    min-width: 40px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #CCD0CF;
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.service-description {
    font-size: 1rem;
    color: #9BA8AB;
    line-height: 1.6;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-description {
    font-size: 1.125rem;
    color: #9BA8AB;
    line-height: 1.6;
}

.services-cta {
    display: flex;
    justify-content: flex-start;
}

.services-button {
    background: transparent;
    color: #CCD0CF;
    padding: 12px 24px;
    border: 1px solid #CCD0CF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-button:hover {
    background: #CCD0CF;
    color: #06141B;
    transform: translateY(-2px);
}

/* Services Image */
.services-image {
    margin-top: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 533px; /* 3:4 ratio for 400px width */
    contain: layout style paint;
}

.service-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-photo.active {
    opacity: 1;
    z-index: 2;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: blur(0);
    transition: filter 0.1s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-sidebar {
        display: none;
    }
    
    .services-content {
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-right {
        order: -1;
    }
    
    .services-cta {
        justify-content: center;
    }
    
    .image-container {
        max-width: 400px;
        margin: 0 auto;
        height: 250px;
    }
    
    .services-list {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-content {
        gap: 40px;
    }
    
    .services-heading {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 15px;
        gap: 15px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .image-container {
        height: 400px; /* 3:4 ratio for 300px width */
        max-width: 300px;
    }
    
    .cta-circle {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .services-list {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-heading {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 12px;
        gap: 12px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .image-container {
        height: 300px; /* 3:4 ratio for 225px width */
        max-width: 225px;
    }
}

/* Technology Stack Section */
.tech-stack-section {
    position: relative;
    background: linear-gradient(to bottom, #9BA8AB 0%, #A6B1B3 25%, #B8C5C7 50%, #CDD0CF 75%, #CDD0CF 100%);
    padding: 20px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-sidebar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 140px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tech-sidebar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    transform: rotate(-90deg);
    white-space: nowrap;
    text-transform: uppercase;
}

.tech-content {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.tech-header {
    margin-bottom: 60px;
}

.tech-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #06141B;
    margin-bottom: 24px;
    line-height: 1.2;
}

.tech-subtitle {
    font-size: 1.25rem;
    color: #253745;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-grid-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    animation: diagonalSlide 45s linear infinite;
    will-change: transform;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #11212D;
    border: 1px solid #253745;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
    justify-content: center;
}

.tech-item:hover {
    background: #253745;
    border-color: #9BA8AB;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 168, 171, 0.2);
}

.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.tech-logo svg {
    width: 40px;
    height: 40px;
}

.tech-name {
    font-size: 1rem;
    font-weight: 700;
    color: #CCDCDF;
    text-align: center;
}

@keyframes diagonalSlide {
    0% {
        transform: translateX(-100px) translateY(100px);
    }
    100% {
        transform: translateX(100px) translateY(-100px);
    }
}

/* Process Section */
.process-section {
    position: relative;
    background: linear-gradient(to bottom, #1F2937 0%, #06141B 100%);
    padding: 80px 0 40px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-sidebar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 140px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.process-sidebar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    transform: rotate(-90deg);
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.process-content {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.process-text {
    flex: 1;
    text-align: left;
}

.process-heading {
    font-size: 4rem;
    font-weight: bold;
    color: #CCD0CF;
    line-height: 1.1;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: 1.125rem;
    color: #9BA8AB;
    line-height: 1.6;
    max-width: 500px;
}

.process-nav-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    margin-top: -10px;
    margin-right: -20px;
}

.process-nav-controls .process-nav-btn {
    background: rgba(17, 33, 45, 0.8);
    color: #CCD0CF;
    border: 1px solid rgba(155, 168, 171, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-nav-controls .process-nav-btn:hover {
    background: rgba(17, 33, 45, 1);
    border-color: #A4A6C6;
    transform: scale(1.1);
}

.process-scroll-container {
    position: relative;
    padding: 0 0 30px 0;
    overflow: visible;
    margin-top: -30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
    overflow-y: visible;
}

.process-steps::-webkit-scrollbar {
    display: none;
}

.process-step {
    min-width: auto;
    background: rgba(37, 55, 69, 0.3);
    border: 1px solid rgba(155, 168, 171, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transform: scale(0.9);
    min-height: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

.process-step.active,
.process-step:hover {
    background: rgba(164, 166, 198, 0.1);
    border-color: #A4A6C6;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 25px 50px rgba(164, 166, 198, 0.3), 0 0 0 1px rgba(164, 166, 198, 0.1);
    min-height: 480px;
    height: auto;
    overflow: visible;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #A4A6C6;
    color: #06141B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
}

.process-step.active .step-number,
.process-step:hover .step-number {
    background: #CCD0CF;
    color: #06141B;
    transform: scale(1.2);
}

.step-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    overflow: visible;
}

.step-icon {
    color: #9BA8AB;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon svg {
    width: 64px;
    height: 64px;
}

.process-step.active .step-icon,
.process-step:hover .step-icon {
    color: #A4A6C6;
    transform: scale(1.1);
}

.process-step.active .step-icon svg,
.process-step:hover .step-icon svg {
    width: 72px;
    height: 72px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #CCD0CF;
    margin-bottom: 16px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.process-step.active .step-title,
.process-step:hover .step-title {
    color: #CCD0CF;
    font-size: 1.75rem;
}

.step-description.short {
    font-size: 1rem;
    color: #9BA8AB;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-description.extended {
    font-size: 1rem;
    color: #9BA8AB;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step.active .step-description.short,
.process-step:hover .step-description.short {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
}

.process-step.active .step-description.extended,
.process-step:hover .step-description.extended {
    opacity: 1;
    max-height: none;
    margin-bottom: 24px;
}

.step-cta {
    background: #A4A6C6;
    color: #06141B;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    margin-top: auto;
}

.process-step.active .step-cta,
.process-step:hover .step-cta {
    opacity: 1;
    transform: translateY(0);
}

.step-cta:hover {
    background: #CCD0CF;
    transform: translateY(-2px);
}

.step-cta:focus {
    outline: 2px solid #A4A6C6;
    outline-offset: 2px;
}

/* Process Indicators */
.process-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.process-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 168, 171, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-indicator.active {
    background: #A4A6C6;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-sidebar {
        display: none;
    }
    
    .tech-content {
        margin: 0 auto;
    }
    
    .process-sidebar {
        display: none;
    }
    
    .tech-heading {
        font-size: 2.5rem;
    }
    
    .tech-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tech-item {
        min-height: 100px;
        padding: 15px;
    }
    
    .tech-logo svg {
        width: 35px;
        height: 35px;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .tech-stack-section {
        padding: 60px 0;
    }
    
    .tech-header {
        margin-bottom: 40px;
    }
    
    .tech-heading {
        font-size: 2rem;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-item {
        min-height: 90px;
        padding: 12px;
    }
    
    .tech-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .tech-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tech-stack-section {
        padding: 40px 0;
    }
    
    .tech-heading {
        font-size: 1.75rem;
    }
    
    .tech-subtitle {
        font-size: 0.9rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tech-item {
        min-height: 80px;
        padding: 10px;
    }
    
    .tech-logo svg {
        width: 25px;
        height: 25px;
    }
    
    .tech-name {
        font-size: 0.75rem;
    }
}

/* Medium screens - 2 columns for better spacing */
@media (max-width: 1200px) and (min-width: 769px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        padding: 35px 25px;
        min-height: 360px;
    }
    
    .process-step.active,
    .process-step:hover {
        min-height: 420px;
    }
    
    .step-title {
        font-size: 1.35rem;
    }
    
    .process-step.active .step-title,
    .process-step:hover .step-title {
        font-size: 1.6rem;
    }
    
    .step-description.short,
    .step-description.extended {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0 30px 0;
    }
    
    .process-heading {
        font-size: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 25px 15px;
        min-height: 320px;
        height: auto;
        overflow: visible;
    }
    
    .process-step.active,
    .process-step:hover {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .process-step.active .step-title,
    .process-step:hover .step-title {
        font-size: 1.5rem;
    }
    
    .step-description.short,
    .step-description.extended {
        font-size: 0.9rem;
    }
    
    .process-step.active .step-description.extended,
    .process-step:hover .step-description.extended {
        max-height: none;
    }
    
    .process-nav-controls .process-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 0 20px 0;
    }
    
    .process-heading {
        font-size: 2rem;
    }
    
    .process-step {
        padding: 20px 12px;
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .process-step.active,
    .process-step:hover {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .process-step.active .step-title,
    .process-step:hover .step-title {
        font-size: 1.25rem;
    }
    
    .step-description.short,
    .step-description.extended {
        font-size: 0.875rem;
    }
    
    .process-step.active .step-description.extended,
    .process-step:hover .step-description.extended {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
}



/* Hero Section - Cloud9 Inspired */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom,
        rgba(204, 208, 207, 1) 0%,
        rgba(204, 208, 207, 0.95) 10%,
        rgba(184, 197, 199, 0.9) 20%,
        rgba(155, 168, 171, 0.8) 30%,
        rgba(122, 139, 142, 0.7) 40%,
        rgba(90, 107, 110, 0.6) 50%,
        rgba(58, 75, 78, 0.5) 60%,
        rgba(26, 43, 46, 0.4) 70%,
        rgba(6, 20, 27, 0.3) 80%,
        rgba(6, 20, 27, 0.6) 90%,
        rgba(6, 20, 27, 0.8) 95%,
        rgba(6, 20, 27, 0.95) 98%,
        rgba(6, 20, 27, 1) 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom,
            rgba(204, 208, 207, 1) 0%,
            rgba(204, 208, 207, 0.95) 10%,
            rgba(184, 197, 199, 0.9) 20%,
            rgba(155, 168, 171, 0.8) 30%,
            rgba(122, 139, 142, 0.7) 40%,
            rgba(90, 107, 110, 0.6) 50%,
            rgba(58, 75, 78, 0.5) 60%,
            rgba(26, 43, 46, 0.4) 70%,
            rgba(6, 20, 27, 0.3) 80%,
            rgba(6, 20, 27, 0.6) 90%,
            rgba(6, 20, 27, 0.8) 95%,
            rgba(6, 20, 27, 0.95) 98%,
            rgba(6, 20, 27, 1) 100%);
    background-blend-mode: overlay, overlay, normal;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: 
        radial-gradient(ellipse 200% 150% at center bottom, transparent 0%, rgba(6, 20, 27, 0.1) 20%, rgba(6, 20, 27, 0.3) 40%, rgba(6, 20, 27, 0.5) 60%, rgba(6, 20, 27, 0.7) 80%, rgba(6, 20, 27, 0.9) 95%, rgba(6, 20, 27, 1) 100%),
        repeating-linear-gradient(90deg, transparent 0px, rgba(255, 255, 255, 0.02) 1px, transparent 2px),
        repeating-linear-gradient(0deg, transparent 0px, rgba(255, 255, 255, 0.01) 1px, transparent 2px);
    background-blend-mode: normal, overlay, overlay;
    pointer-events: none;
    z-index: 2;
}

.hero-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    animation: waveFlow 12s ease-in-out infinite;
}

.wave-layer-1 {
    animation: waveOscillate1 8s ease-in-out infinite;
}

.wave-layer-2 {
    animation: waveOscillate2 10s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-dot {
    animation: floatUp 6s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
    animation-duration: 8s;
}

.dot-2 {
    animation-delay: -1.5s;
    animation-duration: 7s;
}

.dot-3 {
    animation-delay: -3s;
    animation-duration: 9s;
}

.dot-4 {
    animation-delay: -4.5s;
    animation-duration: 6.5s;
}

.dot-5 {
    animation-delay: -6s;
    animation-duration: 8.5s;
}

.geometric-shapes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: geometricFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: #253745;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: #A5C6A2;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: #9BA8AB;
    top: 40%;
    left: 70%;
    animation-delay: -10s;
}

.hero-fade-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(17, 33, 45, 0.3) 50%, #11212D 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 700;
    color: #06141B;
    line-height: 1.1;
    margin: 0;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(6, 20, 27, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #253745;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    opacity: 0.8;
}

.hero-cta {
    background: #06141B;
    color: #CCD0CF;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 20, 27, 0.2);
}

.hero-cta:hover {
    background: #253745;
    color: #CCD0CF;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 55, 69, 0.3);
}

.hero-cta:active {
    transform: translateY(0);
}

/* Animations */
@keyframes waveFlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes waveOscillate1 {
    0%, 100% {
        d: path("M0,200 Q300,150 600,200 T1200,200 L1200,400 L0,400 Z");
    }
    50% {
        d: path("M0,220 Q300,170 600,220 T1200,220 L1200,400 L0,400 Z");
    }
}

@keyframes waveOscillate2 {
    0%, 100% {
        d: path("M0,250 Q400,200 800,250 T1200,250 L1200,400 L0,400 Z");
    }
    50% {
        d: path("M0,270 Q400,220 800,270 T1200,270 L1200,400 L0,400 Z");
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1.125rem;
    }
    
    .hero-waves {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
    
    .hero-waves {
        height: 250px;
    }
    
    .hero-fade-transition {
        height: 150px;
    }
    
    .shape-1 {
        width: 80px;
        height: 80px;
    }
    
    .shape-2 {
        width: 60px;
        height: 60px;
    }
    
    .shape-3 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-waves {
        height: 200px;
    }
    
    .hero-fade-transition {
        height: 100px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-waves,
    .wave-layer-1,
    .wave-layer-2,
    .floating-dot,
    .shape {
        animation: none;
    }
}

/* Cards */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-1 {
    grid-template-columns: 1fr;
}

.card-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1024px) {
    .card-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--tertiary-bg);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    background: #2d4252;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-bg);
}

.card-icon {
    color: var(--accent-bg);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.card:hover .card-icon {
    color: var(--primary-text);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.card-description {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Steps */
.process-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.process-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--accent-bg);
    transform: scale(1.05);
}

.process-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-bg);
    opacity: 0.5;
    margin-bottom: 16px;
}

.process-icon {
    color: var(--secondary-text);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.process-step:hover .process-icon {
    color: var(--primary-text);
}

.process-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.process-description {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 14px;
}

/* Tech Stack */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 4px 12px;
    background: var(--secondary-bg);
    color: var(--secondary-text);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: var(--primary-bg);
    color: var(--primary-text);
}

/* About Section */
.about-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

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

.about-content {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 24px;
}

.about-visual {
    position: relative;
}

.about-visual-bg {
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tertiary-bg) 0%, var(--secondary-bg) 50%, var(--accent-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.about-visual-bg::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: var(--primary-text);
    border-radius: 50%;
    filter: blur(80px);
}

.about-visual-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 32px;
}

.about-visual-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about-visual-text {
        font-size: 36px;
    }
}

.about-visual-text-secondary {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-text);
}

@media (min-width: 768px) {
    .about-visual-text-secondary {
        font-size: 36px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--tertiary-bg) 0%, var(--secondary-bg) 50%, var(--primary-bg) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 48px;
    }
}

.cta-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 40px;
    background: var(--primary-text);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    background: var(--secondary-text);
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #CDD0CF;
    padding: 16px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #253745;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
    max-width: none;
}

.footer-brand {
    font-size: 24px;
    font-weight: bold;
    color: #06141B;
    margin-bottom: 12px;
}

.footer-tagline {
    color: #253745;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
    align-items: center;
}

.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-list li a {
    color: #253745;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.2;
}

.footer-menu-list li a:hover {
    color: #06141B;
    background-color: rgba(37, 55, 69, 0.1);
    transform: translateY(-1px);
}

/* Slot Machine Spinning Animation */
@keyframes slotMachineSpin {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(90deg); }
    50% { transform: rotateY(180deg); }
    75% { transform: rotateY(270deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes slotMachineSpinReverse {
    0% { transform: rotateY(360deg); }
    25% { transform: rotateY(270deg); }
    50% { transform: rotateY(180deg); }
    75% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

.navbar-button-spin {
    animation: slotMachineSpin 0.6s ease-in-out !important;
    transform-style: preserve-3d !important;
}

.navbar-button-spin-reverse {
    animation: slotMachineSpinReverse 0.6s ease-in-out !important;
    transform-style: preserve-3d !important;
}

/* Ensure buttons can be animated */
#primary-menu button,
#primary-menu a,
.flex-grow button,
.flex-grow a {
    transform-style: preserve-3d !important;
    transition: transform 0.6s ease-in-out !important;
    display: inline-block !important;
}

/* Main Navigation Menu Items - Enhanced for better visibility */
#primary-menu li a,
.primary-menu li a,
nav ul li a,
.navbar ul li a,
.menu li a,
.menu-item a,
.current-menu-item a,
.menu-item-has-children a {
    color: #253745 !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

#primary-menu li a:hover,
.primary-menu li a:hover,
nav ul li a:hover,
.navbar ul li a:hover,
.menu li a:hover,
.menu-item a:hover,
.current-menu-item a:hover,
.menu-item-has-children a:hover {
    color: #06141B !important;
    background-color: rgba(37, 55, 69, 0.1) !important;
    transform: translateY(-1px) !important;
}

/* Specific menu item styling to ensure consistency */
.menu-item-about a,
.menu-item-process a,
.menu-item-services a,
.menu-item-tech-stack a,
.menu-item-expertise a,
.menu-item-stack a {
    color: #253745 !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

.menu-item-about a:hover,
.menu-item-process a:hover,
.menu-item-services a:hover,
.menu-item-tech-stack a:hover,
.menu-item-expertise a:hover,
.menu-item-stack a:hover {
    color: #06141B !important;
    background-color: rgba(37, 55, 69, 0.1) !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 767px) {
    .footer-links {
        justify-content: center;
    }
    
    .footer-menu-list {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-menu-list li a {
        font-size: 14px;
        padding: 4px 8px;
    }
}

.footer-link {
    color: #253745;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.2;
}

.footer-link:hover {
    color: #06141B;
    background-color: rgba(37, 55, 69, 0.1);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .footer-social {
        justify-content: flex-start;
    }
}

.footer-social a {
    color: #253745;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #06141B;
}

.footer-bottom {
    padding-top: 0px;
    text-align: center;
    font-size: 14px;
    color: #253745;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 8px;
}

.footer::after {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 640px) {
    /* Container adjustments */
    .container {
        padding: 0 12px;
    }
    
    /* Philosophy Section Mobile */
    .philosophy-section {
        padding: 30px 0 15px 0;
    }
    
    .philosophy-heading {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .philosophy-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .philosophy-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
    }
    
    .services-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .services-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-item {
        padding: 12px;
        gap: 12px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .image-container {
        height: 250px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 40px 0 20px 0;
    }
    
    .process-heading {
        font-size: 1.75rem;
    }
    
    .process-subtitle {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 20px 12px;
        height: 280px;
    }
    
    .process-step.active,
    .process-step:hover {
        height: 350px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .process-step.active .step-title,
    .process-step:hover .step-title {
        font-size: 1.125rem;
    }
    
    .step-description.short,
    .step-description.extended {
        font-size: 0.8rem;
    }
    
    .step-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .process-step.active .step-icon svg,
    .process-step:hover .step-icon svg {
        width: 56px;
        height: 56px;
    }
    
    /* Tech Stack Section Mobile */
    .tech-stack-section {
        padding: 30px 0;
    }
    
    .tech-heading {
        font-size: 1.5rem;
    }
    
    .tech-subtitle {
        font-size: 0.85rem;
    }
    
    .tech-item {
        min-height: 70px;
        padding: 8px;
    }
    
    .tech-logo svg {
        width: 20px;
        height: 20px;
    }
    
    .tech-name {
        font-size: 0.7rem;
    }
    
    /* Tech logos mobile optimization */
    .tech-row-1,
    .tech-row-2,
    .tech-row-3 {
        gap: 1rem;
    }
    
    .tech-row-1 img,
    .tech-row-2 img,
    .tech-row-3 img {
        height: 4rem;
        width: 4rem;
    }
    
    /* Contact Section Mobile */
    .py-24 {
        padding: 3rem 0;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
    
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-lg {
        font-size: 0.9rem;
    }
    
    .text-xl {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .container {
        padding: 0 8px;
    }
    
    .philosophy-heading {
        font-size: 1.75rem;
    }
    
    .services-heading {
        font-size: 1.5rem;
    }
    
    .process-heading {
        font-size: 1.5rem;
    }
    
    .tech-heading {
        font-size: 1.25rem;
    }
    
    .image-container {
        height: 200px;
        max-width: 180px;
    }
    
    .process-step {
        height: 260px;
    }
    
    .process-step.active,
    .process-step:hover {
        height: 320px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Additional Mobile Typography Improvements */
@media (max-width: 640px) {
    /* Improve text readability on mobile */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 2rem 0;
    }
    
    /* Mobile-specific button improvements */
    .philosophy-button,
    .services-button,
    .step-cta {
        min-height: 44px; /* iOS touch target minimum */
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile navigation improvements */
    .navbar {
        padding: 0.5rem;
    }
    
    /* Better mobile form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 0;
    }
    
    /* Mobile-specific spacing adjustments */
    .mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .mb-12 {
        margin-bottom: 2rem;
    }
    
    .py-24 {
        padding: 2rem 0;
    }
    
    /* Mobile tech stack improvements */
    .tech-header {
        margin-bottom: 2rem;
    }
    
    /* Mobile process improvements */
    .process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .process-nav-controls {
        align-self: flex-end;
    }
    
    /* Mobile services improvements */
    .services-content {
        gap: 2rem;
    }
    
    .services-right {
        order: -1;
    }
    
    /* Mobile contact section improvements */
    .text-5xl {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .text-6xl {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 375px) {
    .container {
        padding: 0 6px;
    }
    
    .philosophy-heading {
        font-size: 1.5rem;
    }
    
    .services-heading {
        font-size: 1.25rem;
    }
    
    .process-heading {
        font-size: 1.25rem;
    }
    
    .tech-heading {
        font-size: 1rem;
    }
    
    .text-5xl {
        font-size: 1.5rem;
    }
    
    .text-6xl {
        font-size: 1.75rem;
    }
    
    /* Smaller buttons for very small screens */
    .philosophy-button,
    .services-button,
    .step-cta {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* WordPress specific styles */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--secondary-text);
    text-align: center;
    margin-top: 8px;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Search form styles */
.search-form {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.search-field {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--secondary-bg);
    color: var(--primary-text);
    font-size: 14px;
}

.search-field:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-submit {
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.search-submit:hover {
    background: #B55A42;
}

/* Content area styles */
.content-area {
    padding: 40px 0;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.entry-meta {
    color: var(--secondary-text);
    font-size: 14px;
}

.entry-meta span {
    margin-right: 16px;
}

.entry-content {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--primary-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.entry-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-text);
    font-size: 14px;
}

.entry-footer span {
    margin-right: 16px;
}

/* Page links */
.page-links {
    margin: 20px 0;
}

.page-links a {
    display: inline-block;
    padding: 4px 8px;
    margin: 0 4px;
    background: var(--tertiary-bg);
    color: var(--primary-text);
    text-decoration: none;
    border-radius: 4px;
}

.page-links a:hover {
    background: var(--accent-bg);
}

/* Search results */
.search-result-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item .entry-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.search-result-item .entry-title a {
    color: var(--primary-text);
    text-decoration: none;
}

.search-result-item .entry-title a:hover {
    color: var(--accent-color);
}

.search-result-item .entry-summary {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* 404 page */
.error-404 .page-title {
    font-size: 48px;
    color: var(--primary-text);
    margin-bottom: 20px;
}

.error-404 .page-content {
    color: var(--secondary-text);
    line-height: 1.6;
}

.error-404 .widget {
    margin: 30px 0;
    padding: 20px;
    background: var(--tertiary-bg);
    border-radius: 8px;
}

.error-404 .widget-title {
    font-size: 20px;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.error-404 .widget ul {
    list-style: none;
    padding: 0;
}

.error-404 .widget li {
    margin-bottom: 8px;
}

.error-404 .widget a {
    color: var(--secondary-text);
    text-decoration: none;
}

.error-404 .widget a:hover {
    color: var(--primary-text);
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--secondary-text);
}

.no-results p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Posts navigation */
.posts-navigation {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posts-navigation a {
    padding: 8px 16px;
    background: var(--tertiary-bg);
    color: var(--primary-text);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.posts-navigation a:hover {
    background: var(--accent-bg);
}

/* Comments */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 24px;
    color: var(--primary-text);
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--tertiary-bg);
    border-radius: 8px;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-text);
}

.comment-meta {
    color: var(--secondary-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-content {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Comment form */
.comment-form {
    margin-top: 30px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-text);
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--secondary-bg);
    color: var(--primary-text);
    font-size: 14px;
    margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.comment-form .submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.comment-form .submit:hover {
    background: #B55A42;
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Section Animations */
@keyframes float-slow {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
    }
    50% { 
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes float-reverse {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
    }
    50% { 
        transform: translateY(15px) translateX(-10px);
    }
}

@keyframes slide-right {
    0% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    100% { 
        transform: translateX(0px) rotate(12deg);
        opacity: 0.3;
    }
}

@keyframes slide-right-delayed {
    0% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    20% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    100% { 
        transform: translateX(0px) rotate(12deg);
        opacity: 0.3;
    }
}

@keyframes slide-right-delayed-2 {
    0% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    40% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    100% { 
        transform: translateX(0px) rotate(12deg);
        opacity: 0.3;
    }
}

@keyframes slide-right-delayed-3 {
    0% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    60% { 
        transform: translateX(100px) rotate(12deg);
        opacity: 0;
    }
    100% { 
        transform: translateX(0px) rotate(12deg);
        opacity: 0.3;
    }
}

@keyframes particle-float-1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-30px) translateX(20px);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-25px) translateX(15px);
        opacity: 0.5;
    }
}

@keyframes particle-float-2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-20px) translateX(-15px);
        opacity: 0.5;
    }
    66% { 
        transform: translateY(-35px) translateX(25px);
        opacity: 0.2;
    }
}

@keyframes particle-float-3 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.35;
    }
    20% { 
        transform: translateY(-25px) translateX(30px);
        opacity: 0.55;
    }
    40% { 
        transform: translateY(-10px) translateX(-20px);
        opacity: 0.25;
    }
    60% { 
        transform: translateY(-30px) translateX(10px);
        opacity: 0.45;
    }
    80% { 
        transform: translateY(-5px) translateX(-25px);
        opacity: 0.3;
    }
}

@keyframes particle-float-4 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-40px) translateX(-30px);
        opacity: 0.4;
    }
}

@keyframes fade-in-up {
    0% { 
        opacity: 0;
        transform: translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-in-up-delayed {
    0% { 
        opacity: 0;
        transform: translateY(50px);
    }
    30% { 
        opacity: 0;
        transform: translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-in-up-delayed-2 {
    0% { 
        opacity: 0;
        transform: translateY(50px);
    }
    50% { 
        opacity: 0;
        transform: translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-in-up-delayed-3 {
    0% { 
        opacity: 0;
        transform: translateY(50px);
    }
    70% { 
        opacity: 0;
        transform: translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Animation Classes */
.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.animate-float-reverse {
    animation: float-reverse 10s ease-in-out infinite;
}

.animate-slide-right {
    animation: slide-right 2s ease-out forwards;
}

.animate-slide-right-delayed {
    animation: slide-right-delayed 2.5s ease-out forwards;
}

.animate-slide-right-delayed-2 {
    animation: slide-right-delayed-2 3s ease-out forwards;
}

.animate-slide-right-delayed-3 {
    animation: slide-right-delayed-3 3.5s ease-out forwards;
}

.animate-particle-float-1 {
    animation: particle-float-1 12s ease-in-out infinite;
}

.animate-particle-float-2 {
    animation: particle-float-2 15s ease-in-out infinite;
}

.animate-particle-float-3 {
    animation: particle-float-3 18s ease-in-out infinite;
}

.animate-particle-float-4 {
    animation: particle-float-4 20s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

.animate-fade-in-up-delayed {
    animation: fade-in-up-delayed 1.2s ease-out forwards;
}

.animate-fade-in-up-delayed-2 {
    animation: fade-in-up-delayed-2 1.4s ease-out forwards;
}

.animate-fade-in-up-delayed-3 {
    animation: fade-in-up-delayed-3 1.6s ease-out forwards;
}

/* Confirmation Modal Animations */
.animate-fade-in-delayed {
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* Checkmark Animation */
.checkmark-svg {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4A5C6A;
    fill: none;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #4A5C6A;
}

.checkmark-svg.checkmark-animate .checkmark-circle {
    animation: checkmark-circle-draw 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-svg.checkmark-animate .checkmark-check {
    animation: checkmark-check-draw 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkmark-circle-draw {
    0% {
        stroke-dashoffset: 166;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-check-draw {
    0% {
        stroke-dashoffset: 48;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Responsive checkmark sizes */
@media (min-width: 640px) {
    .checkmark-svg {
        width: 96px;
        height: 96px;
    }
}
