     .hero-gradient {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .testimonial-card {
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: scale(1.02);
        }
        .contact-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px #ecc94b;
        }
        .journey-timeline {
            position: relative;
        }
        .journey-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 1rem;
            height: 100%;
            width: 4px;
            background: #ecc94b;
        }
        .journey-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2rem;
        }
        .journey-item::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            top: 0.25rem;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            background: #1a365d;
            border: 3px solid #ecc94b;
        }