@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');
        
        :root {
            --deep-blue: #0a2540;
            --blue-mid: #1a4d7a;
            --green: #00d084;
            --green-dark: #00a86b;
            --white: #ffffff;
            --off-white: #f8f9fb;
            --gray: #5a6c7d;
            --gray-light: #e1e8ed;
            --accent-cyan: #0ff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--deep-blue);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 37, 64, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0, 208, 132, 0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        
        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.7; }
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover {
            color: var(--green);
        }
        
        .nav-links a:hover::before {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--green);
            color: var(--deep-blue);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 208, 132, 0.3);
        }
        
        .nav-cta::before {
            display: none;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-mid) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }
        
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 208, 132, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 208, 132, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text {
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(0, 208, 132, 0.15);
            color: var(--green);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 208, 132, 0.3);
        }
        
        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--white);
            letter-spacing: -2px;
        }
        
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--green) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 400;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'DM Sans', sans-serif;
        }
        
        .btn-primary {
            background: var(--green);
            color: var(--deep-blue);
            box-shadow: 0 4px 20px rgba(0, 208, 132, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 208, 132, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            border-color: var(--green);
            background: rgba(0, 208, 132, 0.1);
        }
        
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .visual-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .visual-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 208, 132, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(0, 208, 132, 0.2);
        }
        
        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            display: inline-block;
            background: var(--off-white);
            color: var(--green);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            letter-spacing: -1px;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        #about {
            background: var(--off-white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-mid) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .image-placeholder::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 208, 132, 0.1) 50%, transparent 70%);
            animation: shine 3s ease-in-out infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%); }
            100% { transform: translateX(100%) translateY(100%); }
        }
        
        .about-text h3 {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--deep-blue);
            font-weight: 700;
            letter-spacing: -1px;
        }
        
        .about-text p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--green) 0%, var(--accent-cyan) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--deep-blue);
        }
        
        .feature-text p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }
        
        /* Services Section */
        #services {
            background: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background: var(--white);
            border: 2px solid var(--gray-light);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--green) 0%, var(--accent-cyan) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            border-color: var(--green);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 208, 132, 0.15);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-mid) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .service-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .service-card p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .service-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .service-card li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .service-card li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .learn-more-link {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .learn-more-link:hover {
            gap: 1rem;
        }
        
        /* Portfolio Section */
        #portfolio {
            background: var(--deep-blue);
            color: var(--white);
        }
        
        #portfolio .section-tag {
            background: rgba(0, 208, 132, 0.15);
            color: var(--green);
        }
        
        #portfolio .section-header h2,
        #portfolio .section-header p {
            color: var(--white);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .portfolio-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 208, 132, 0.2);
            border-color: var(--green);
        }
        
        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--blue-mid) 0%, var(--green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        }
        
        .portfolio-content {
            padding: 2rem;
        }
        
        .portfolio-tag {
            display: inline-block;
            background: rgba(0, 208, 132, 0.2);
            color: var(--green);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .portfolio-content h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .portfolio-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        /* Blog Section */
        #blog {
            background: var(--off-white);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--green);
        }
        
        .blog-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--gray);
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .blog-content h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .blog-content p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .read-more {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .read-more:hover {
            gap: 1rem;
        }
        
        /* Contact Section */
        #contact {
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: var(--off-white);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--green) 0%, var(--accent-cyan) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .contact-details p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .map-container {
            margin-top: 2rem;
            background: var(--off-white);
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gray-light);
        }
        
        .map-placeholder {
            text-align: center;
            color: var(--gray);
        }
        
        .map-placeholder-icon {
            font-size: 4rem;
            color: var(--green);
            margin-bottom: 1rem;
        }
        
        .contact-form {
            background: var(--off-white);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid var(--gray-light);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--deep-blue);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--green) 0%, var(--accent-cyan) 100%);
            color: var(--deep-blue);
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--deep-blue);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-about h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 208, 132, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-icon:hover {
            background: var(--green);
            color: var(--deep-blue);
            transform: translateY(-3px);
        }
        
        .footer-section h4 {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--green);
        }
        
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--green);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-visual {
                order: -1;
            }
            
            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 75px);
                background: var(--deep-blue);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 2rem;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .services-grid,
            .portfolio-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 4rem 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .visual-stats {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
