* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #2563eb;
    --bg-color: #fff;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Allow text selection for content */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    -webkit-user-select: text;
    user-select: text;
}

body.no-scroll {
    overflow: hidden;
}

/* Loader - Modern Gear Animation */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gears-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear {
    position: absolute;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.gear-large {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.gear-medium {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 10%;
    z-index: 2;
}

.gear-small {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 10%;
    z-index: 1;
}

/* Gear Rotation Animations */
@keyframes gearRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gearRotateReverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes gearRotateMedium {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gear-large .gear-rotate {
    transform-origin: 60px 60px;
    animation: gearRotate 3s linear infinite;
}

.gear-medium .gear-rotate-reverse {
    transform-origin: 40px 40px;
    animation: gearRotateReverse 2s linear infinite;
}

.gear-small .gear-rotate {
    transform-origin: 30px 30px;
    animation: gearRotateMedium 1.5s linear infinite;
}

/* Loader Text */
.loader-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 280px;
}

.loader-text {
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-align: center;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Progress Bar */
.loader-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 2px;
    animation: progressLoad 3.5s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo {
    display: none;
}

.navbar.scrolled .logo-text {
    font-size: 18px;
    padding: 6px 10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: none !important;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.logo-text:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.logo-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-link:hover::before {
    opacity: 1;
}

.logo-link:hover {
    opacity: 1;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 300px;
    min-width: 200px;
    object-fit: contain;
    object-position: left center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 1;
    animation: logoFadeIn 0.8s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-link:hover .logo {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 45px;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn.active:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--light-bg) 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 700px;
}

/* Services Section */
.services {
    padding: 120px 20px;
    background: var(--light-bg);
    position: relative;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    padding: 40px;
    background: var(--bg-color);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Work Section */
.work {
    padding: 120px 20px;
    background: var(--bg-color);
    position: relative;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.work-item {
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.work-item > * {
    position: relative;
    z-index: 1;
}

.work-item:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.work-item:hover::before {
    opacity: 1;
}

.work-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.work-item p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.work-item:hover h3,
.work-item:hover p {
    color: var(--bg-color);
    opacity: 1;
}

/* Customers Section */
.customers {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--bg-color) 100%);
    position: relative;
}

.customers-header {
    text-align: center;
    margin-bottom: 80px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.customer-card {
    background: var(--bg-color);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #FF6B35);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.customer-card:hover::before {
    transform: scaleX(1);
}

.customer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.customer-card:hover .customer-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 107, 53, 0.15));
}

.customer-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.customer-location {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.customer-location::before {
    content: '📍';
    font-size: 14px;
}

.customer-type {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* About Section */
.about {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    margin-bottom: 60px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 400;
}

.about-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--bg-color) 100%);
    text-align: center;
    position: relative;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--secondary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 30px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    background: var(--bg-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-email svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-email:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.contact-email:hover svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    padding: 50px 20px;
    background: var(--primary-color);
    color: var(--bg-color);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-logo {
    display: none;
}

@keyframes footerLogoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: scale(1) translateY(0);
    }
}

.footer-logo::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.2)) 
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover::before {
    opacity: 1;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
    
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Better touch targets for mobile */
.nav-link,
.lang-btn,
.contact-email,
.service-item,
.work-item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Prevent iOS Safari bounce/overscroll */
html, body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .language-switcher {
        margin-right: 10px;
        order: -1;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 40px;
    }

    .logo {
        display: none;
    }

    .logo-link {
        display: none !important;
    }

    .logo-text {
        font-size: 18px;
        padding: 6px 8px;
    }

    .footer-logo {
        height: 65px;
        max-width: 260px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .services-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .work,
    .customers,
    .about,
    .contact {
        padding: 60px 20px;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .customer-card {
        padding: 40px 30px;
    }

    .customer-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .hero {
        padding: max(100px, env(safe-area-inset-top)) 20px max(60px, env(safe-area-inset-bottom));
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    /* Better mobile touch targets */
    .nav-link {
        padding: 15px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lang-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fix iOS Safari address bar issue */
    @supports (-webkit-touch-callout: none) {
        .hero {
            min-height: 100vh;
            min-height: -webkit-fill-available;
        }
    }

    .logo {
        height: 40px;
        max-width: 200px;
        min-width: 150px;
    }

    .logo-link {
        padding: 6px 8px;
    }

    .footer-logo {
        height: 55px;
        max-width: 280px;
        min-width: 200px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-email {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.work-item {
    animation: fadeIn 0.6s ease-out;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
