/* Custom Fonts */

/* Title Font */
@font-face {
    font-family: 'VL Allround Gothic';
    src: url('../assets/VL ALLROUND GOTHIC DEMI.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Compact Text';
    src: url('../assets/font_apple/SFCompactText-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --primary-blue: #1a73e8;
    --primary-green: #34a853;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
}

/* VinCode brand text styling */
.vincode-text {
    display: inline;
}

.vincode-text .vin {
    color: var(--primary-blue);
}

.vincode-text .code {
    color: var(--primary-green);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Compact Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

/* Header text white when not scrolled (on dark hero background) */
.header .logo-text {
    color: #fff;
    transition: color 0.3s ease;
}

.header .nav-list a {
    color: #fff;
    transition: color 0.3s ease;
}

.header .nav-list a:hover {
    color: var(--primary-blue);
}

.header .phone-link {
    color: #fff !important;
}

.header .phone-icon {
    color: #fff;
}

.header .logo-icon {
    /* Giữ nguyên màu logo gốc */
    filter: none;
    transition: filter 0.3s ease;
}

/* Header text dark when scrolled (on white background) */
.header.scrolled .logo-text {
    color: var(--primary-dark);
}

.header.scrolled .nav-list a {
    color: var(--text-dark);
}

.header.scrolled .nav-list a:hover {
    color: var(--primary-blue);
}

.header.scrolled .phone-link {
    color: var(--primary-dark) !important;
}

.header.scrolled .phone-icon {
    color: var(--primary-dark);
}

.header.scrolled .logo-icon {
    filter: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    max-width: 1800px;
    margin: 0 auto;
}

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

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

.logo-text {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-main,
.nav-secondary {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.nav-list a:hover {
    color: var(--primary-blue);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-dark);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* Dark Header for pages without hero video (projects, etc.) */
body.dark-header .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

body.dark-header .header .logo-text {
    color: var(--primary-dark);
}

body.dark-header .header .nav-list a {
    color: var(--text-dark);
}

body.dark-header .header .nav-list a:hover {
    color: var(--primary-blue);
}

body.dark-header .header .phone-link {
    color: var(--primary-dark) !important;
}

body.dark-header .header .phone-icon {
    color: var(--primary-dark);
}

body.dark-header .header .logo-icon {
    filter: none;
}

body.dark-header .header .mobile-menu-toggle span {
    background: var(--text-dark);
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
}

.mobile-menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(8px);
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0f172a 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.mobile-menu-logo .logo-text {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 30px;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-menu-nav li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-nav li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-nav li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-nav li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-nav li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu-nav li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: white;
    background: rgba(0, 200, 255, 0.15);
}

.mobile-menu-nav a.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #00c8ff 100%);
    color: white;
}

.mobile-menu-nav a svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.mobile-menu-nav a:hover svg,
.mobile-menu-nav a.active svg {
    opacity: 1;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 30px;
}

/* Mobile Menu Contact */
.mobile-menu-contact {
    padding: 0 30px 30px;
}

.mobile-menu-contact-title {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-phone:hover {
    background: rgba(0, 200, 255, 0.2);
    border-color: rgba(0, 200, 255, 0.5);
}

.mobile-menu-phone .phone-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #00c8ff 100%);
    border-radius: 12px;
}

.mobile-menu-phone .phone-icon-wrap svg {
    width: 20px;
    height: 20px;
    color: white;
}

.mobile-menu-phone-text span {
    display: block;
}

.mobile-menu-phone-text .label {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.mobile-menu-phone-text .number {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #00c8ff;
}

/* Mobile Menu CTA Button */
.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, #00c8ff 0%, white 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.3);
}

.mobile-menu-cta svg {
    width: 18px;
    height: 18px;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 60px;
    max-width: 900px;
}

.hero h1 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-line {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
}

/* Typing animation */
.hero-line-1 {
    animation: typing-1 1s steps(18, end) 0.3s forwards, blink-caret 0.7s step-end infinite 0.3s;
    max-width: 0;
}

.hero-line-2 {
    max-width: 0;
    animation: typing-2 1s steps(18, end) 1.5s forwards, blink-caret-green 0.7s step-end infinite 1.5s;
}

@keyframes typing-1 {
    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

@keyframes typing-2 {
    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-right-color: transparent;
    }

    50% {
        border-right-color: rgba(255, 255, 255, 0.8);
    }
}

@keyframes blink-caret-green {

    from,
    to {
        border-right-color: transparent;
    }

    50% {
        border-right-color: var(--primary-green);
    }
}

/* Gradient text - bright cyan/mint for visibility */
.gradient-text {
    background: linear-gradient(90deg, #00f5d4 0%, #9ef01a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.8s forwards;
}

/* Hero Responsive - Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .hero-title {
        gap: 6px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(24px, 6.5vw, 32px);
    }

    .hero-title {
        gap: 4px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-top: 12px;
    }
}

/* Section Styles */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.section-title {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

p {
    font-weight: 300;
}

.about-right p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-link {
    color: var(--primary-blue);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--primary-blue);
}

/* Projects Horizontal Scroll Carousel */
.projects-carousel-section {
    padding: 0 0 60px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.projects-scroll-container {
    width: 100%;
    overflow: hidden;
}

.projects-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 20px 40px 40px 40px;
    cursor: grab;
    scroll-snap-type: x proximity;
}

.projects-scroll-track::-webkit-scrollbar {
    display: none;
}

.projects-scroll-track:active,
.projects-scroll-track.dragging {
    cursor: grabbing;
}

.projects-scroll-track.dragging .project-scroll-card {
    pointer-events: none;
}

.project-scroll-card {
    flex: 0 0 380px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    scroll-snap-align: center;
}

.project-scroll-card:hover {
    transform: scale(1.02);
}

.project-scroll-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-scroll-card:hover .project-scroll-img {
    transform: scale(1.05);
}

.project-scroll-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.project-scroll-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-text-snaffle {
    font-size: 48px;
    font-weight: 700;
    color: #c026d3;
    font-style: italic;
}

.logo-text-white {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-img {
    max-width: 180px;
    height: auto;
}

.project-scroll-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-scroll-category {
    font-size: 11px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-scroll-link {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.project-scroll-link:hover {
    opacity: 1;
}

.project-scroll-link .arrow {
    font-size: 14px;
}

/* Text link underline */
.text-link.underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Old carousel styles - kept for backward compatibility */
.carousel-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #e8edf5;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.label-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.label-icon {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
}

.blue-square-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    margin-bottom: 24px;
}

.services-header-right p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card:hover .service-image {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.service-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-image svg {
    width: 60%;
    height: 60%;
}

.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Card Animations */
@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(5deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(-5deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(5deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {

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

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

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

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

/* Apply different animations to each service card */
.service-card:nth-child(1) .service-image svg {
    animation: rotate3d 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.service-card:nth-child(2) .service-image svg {
    animation: pulse 3s ease-in-out infinite;
}

.service-card:nth-child(3) .service-image svg {
    animation: float 4s ease-in-out infinite;
}

.service-card:nth-child(4) .service-image svg {
    animation: spin 15s linear infinite;
}

/* Pause animation on hover for better interaction */
.service-card:hover .service-image svg {
    animation-play-state: paused;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
}

.service-expand {
    font-size: 20px;
    font-weight: 400;
    color: #00c8ff;
    margin-left: 12px;
}

/* Insights Section */
.insights-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.insight-card.featured {
    grid-column: span 1;
}

.insight-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
}

.insight-graphic svg {
    width: 120px;
    height: 120px;
}

.insight-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.insight-date {
    font-size: 12px;
    color: var(--text-light);
}

.insight-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-gray);
}

.insight-content h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

/* New Insights Section - Blue Background */
.insights-section-new {
    padding: 80px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.insights-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-square {
    position: absolute;
    background: #00c8ff;
}

.deco-square.deco-1 {
    width: 60px;
    height: 60px;
    top: 40px;
    right: 80px;
}

.deco-square.deco-2 {
    width: 40px;
    height: 40px;
    top: 110px;
    right: 40px;
}

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

.section-label.white {
    color: white;
}

.section-title.white {
    color: white;
}

.label-icon.white {
    background: white;
}

.insights-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card-new {
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.insight-card-new:hover {
    transform: translateY(-8px);
}

.insight-image-new {
    height: 280px;
    overflow: hidden;
    background: #1e40af;
}

.insight-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card-new:hover .insight-image-new img {
    transform: scale(1.05);
}

.insight-content-new {
    padding: 20px 0;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.insight-tag-new {
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.insight-content-new h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.insight-arrow {
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

/* Partners Section */
/* Old partners section - kept for reference */
.partners-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.partner-logo {
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

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

/* New Partners Section */
.partners-section-new {
    padding: 80px 0 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.partners-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.partners-deco {
    position: absolute;
    background: var(--primary-blue);
}

.partners-deco.deco-top {
    width: 50px;
    height: 50px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.partners-deco.deco-right-1 {
    width: 60px;
    height: 60px;
    top: 80px;
    right: 80px;
    background: #00c8ff;
}

.partners-deco.deco-right-2 {
    width: 50px;
    height: 50px;
    top: 150px;
    right: 30px;
    background: #00c8ff;
}

.partners-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 60px;
    margin-top: 50px;
    max-width: 1100px;
}

.partner-logo-new {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    transition: var(--transition);
    opacity: 0.7;
}

.partner-logo-new:hover {
    opacity: 1;
}

.partner-logo-new svg {
    height: 45px;
    width: auto;
    max-width: 180px;
}

.partner-logo-new.aws-logo svg {
    height: 55px;
    max-width: 250px;
}

/* CTA Section */
/* Old CTA Section - kept for reference */
.cta-section {
    background: var(--bg-white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-card {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-cta {
    background: var(--primary-blue);
    color: white;
}

.careers-cta {
    background: var(--primary-dark);
    color: white;
}

.cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
}

.cta-card h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    background: white;
    color: var(--primary-blue);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.outline:hover {
    background: white;
    color: var(--primary-dark);
}

/* New CTA Section */
.cta-section-new {
    background: var(--bg-white);
}

.cta-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-card-new {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.contact-cta-new {
    background: var(--bg-light);
}

.careers-cta-new {
    background: var(--primary-dark);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-deco {
    position: absolute;
}

.cta-deco.deco-left {
    width: 60px;
    height: 60px;
    top: 40px;
    left: 60px;
    background: #00c8ff;
}

.cta-deco.deco-center-1 {
    width: 70px;
    height: 70px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
}

.cta-deco.deco-center-2 {
    width: 50px;
    height: 50px;
    top: 70px;
    left: calc(50% + 40px);
    background: var(--primary-dark);
}

.cta-deco.deco-right {
    width: 40px;
    height: 40px;
    top: 30px;
    right: 0;
    background: #00c8ff;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 120px 80px 80px;
}

.cta-card-new h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 40px;
}

.contact-cta-new h2 {
    color: var(--primary-dark);
}

.careers-cta-new h2 {
    color: white;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid;
    background: transparent;
    transition: var(--transition);
}

.cta-btn-new.dark {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.cta-btn-new.dark:hover {
    background: var(--primary-dark);
    color: white;
}

.cta-btn-new.light {
    border-color: white;
    color: white;
}

.cta-btn-new.light:hover {
    background: white;
    color: var(--primary-dark);
}

.cta-btn-new span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-btn-new:hover span {
    transform: translate(3px, -3px);
}

/* Footer New - Professional Design */
.footer-new {
    background: #FEFDFD;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 40px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
}

.footer-logo-text {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.footer-social .social-link svg {
    width: 18px;
    height: 18px;
}

/* Links Columns */
.footer-links-col {
    padding-top: 5px;
}

.footer-col-title {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
}

/* Contact Column */
.footer-contact-col {
    padding-top: 5px;
}

.footer-contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-blue), #0099cc);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 168, 83, 0.3);
}

.footer-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Footer Offices Bar */
.footer-offices {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.offices-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-flag {
    font-size: 18px;
    line-height: 1;
}

.office-city {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.office-badge {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

/* Footer Bottom */
.footer-bottom-new {
    padding: 24px 0;
}

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

.footer-bottom-new .copyright {
    font-size: 13px;
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: #888;
    transition: color 0.3s ease;
}

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

.footer-certifications {
    display: flex;
    gap: 12px;
}

.cert-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand-col {
        padding-right: 0;
    }

    .insights-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .partners-grid-new {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 40px;
    }
}

@media (max-width: 992px) {

    .about-grid,
    .services-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .insight-image-new {
        height: 220px;
    }

    .insight-content-new h3 {
        font-size: 12px;
    }

    .insight-tag-new {
        font-size: 9px;
        padding: 4px 8px;
    }

    .deco-square.deco-1 {
        width: 50px;
        height: 50px;
        top: 30px;
        right: 60px;
    }

    .deco-square.deco-2 {
        width: 35px;
        height: 35px;
        top: 90px;
        right: 25px;
    }

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

    .cta-grid-new {
        grid-template-columns: 1fr;
    }

    .cta-card-new {
        min-height: 350px;
    }

    .cta-content {
        padding: 100px 60px 60px;
    }

    .cta-deco.deco-left {
        width: 50px;
        height: 50px;
        top: 30px;
        left: 40px;
    }

    .cta-deco.deco-center-1 {
        width: 60px;
        height: 60px;
    }

    .cta-deco.deco-center-2 {
        width: 40px;
        height: 40px;
    }

    .footer-locations {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 35px;
    }

    .partners-deco.deco-top {
        width: 40px;
        height: 40px;
    }

    .partners-deco.deco-right-1 {
        width: 50px;
        height: 50px;
        right: 50px;
    }

    .partners-deco.deco-right-2 {
        width: 40px;
        height: 40px;
        right: 15px;
    }
}

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

    .header-container {
        padding: 12px 20px;
    }

    .nav-main,
    .nav-secondary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 20px;
    }

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

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

    .insights-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .insight-image-new {
        height: 250px;
    }

    .insight-content-new h3 {
        font-size: 13px;
    }

    .insight-tag-new {
        font-size: 9px;
        padding: 5px 10px;
    }

    .deco-square.deco-1,
    .deco-square.deco-2 {
        display: none;
    }

    .carousel-slide {
        flex: 0 0 280px;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .cta-card-new {
        min-height: 320px;
    }

    .cta-content {
        padding: 80px 40px 50px;
    }

    .cta-card-new h2 {
        font-size: 28px;
    }

    .cta-deco.deco-left {
        width: 45px;
        height: 45px;
        top: 25px;
        left: 30px;
    }

    .cta-deco.deco-center-1 {
        width: 50px;
        height: 50px;
        top: 15px;
    }

    .cta-deco.deco-center-2 {
        width: 35px;
        height: 35px;
        top: 55px;
        left: calc(50% + 30px);
    }

    .projects-scroll-track {
        padding: 10px 20px 30px 20px;
        gap: 15px;
        scroll-snap-type: x mandatory;
    }

    .project-scroll-card {
        flex: 0 0 280px;
        height: 380px;
        border-radius: 16px;
    }

    .logo-text-white {
        font-size: 22px;
    }

    .project-scroll-info {
        padding: 16px;
    }


    .cta-deco.deco-right {
        width: 30px;
        height: 30px;
        top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-col {
        padding-right: 0;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col-title {
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-cta-btn {
        margin: 0 auto;
    }

    .offices-list {
        gap: 20px;
    }

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

    .footer-certifications {
        justify-content: center;
    }

    /* Partners responsive */
    .partners-section-new {
        padding: 60px 0 80px;
    }

    .partners-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }

    .partner-logo-new svg {
        height: 35px;
        max-width: 140px;
    }

    .partner-logo-new.aws-logo svg {
        height: 45px;
        max-width: 200px;
    }

    .partners-deco.deco-top {
        width: 35px;
        height: 35px;
        top: 20px;
    }

    .partners-deco.deco-right-1,
    .partners-deco.deco-right-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .insights-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .insight-image-new {
        height: 200px;
    }

    .insight-content-new {
        padding: 15px 0;
    }

    .insight-content-new h3 {
        font-size: 12px;
    }

    .insight-tags {
        gap: 6px;
        margin-bottom: 12px;
    }

    .insight-tag-new {
        font-size: 8px;
        padding: 4px 8px;
    }

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

    .partner-logo-new svg {
        height: 30px;
        max-width: 120px;
    }

    .partner-logo-new.aws-logo svg {
        height: 40px;
        max-width: 180px;
    }

    .partners-deco.deco-top {
        display: none;
    }

    .cta-card-new {
        min-height: 280px;
    }

    .cta-content {
        padding: 70px 25px 40px;
    }

    .cta-card-new h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .cta-btn-new {
        padding: 12px 22px;
        font-size: 12px;
    }

    .cta-decoration .cta-deco {
        display: none;
    }

    .cta-deco.deco-left {
        display: block;
        width: 35px;
        height: 35px;
        top: 20px;
        left: 20px;
    }

    .cta-deco.deco-right {
        display: block;
        width: 25px;
        height: 25px;
        top: 15px;
    }
}

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

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

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

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

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

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