        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
        body { 
            font-family: 'Poppins', sans-serif; 
            background: linear-gradient(135deg, #fafafa 0%, #f8fafc 100%);
        }
        .heading-font { font-family: 'Playfair Display', serif; }
        .body-font { font-family: 'Inter', sans-serif; }
        
        /* Light Purple Theme */
        .gradient-bg { background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%); }
        .purple-light { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%); }
        .purple-accent { color: #a855f7; }
        .purple-btn { background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%); }
        
        /* Page Transitions */
        .page {
            display: none;
            animation: fadeInUp 0.6s ease-out;
        }
        .page.active {
            display: block;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Animations */
        .product-card { 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
        }
        .product-card:hover { 
            transform: translateY(-12px) scale(1.02); 
            box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15); 
        }
        
        .fade-in-up {
            animation: fadeInUp 1s ease-out;
        }
        
        .slide-in-left {
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .bounce-in {
            animation: bounceIn 1s ease-out;
        }
        
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Navigation */
        .nav-link {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link.active {
            color: #a855f7;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: #a855f7;
            transition: all 0.3s ease;
        }
        
        .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        
        /* Content Sections */
        .content-section {
            min-height: 60vh;
            padding: 2rem 0;
        }
        
        /* Timeline Styles */
        .timeline {
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #a855f7, #c084fc);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 1rem;
            width: 12px;
            height: 12px;
            background: #a855f7;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        /* Service Cards */
        .service-card {
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
        }
        
        /* Team Cards */
        .team-card {
            transition: all 0.4s ease;
        }
        
        .team-card:hover {
            transform: scale(1.05);
        }
        
        /* Blog Cards */
        .blog-card {
            transition: all 0.4s ease;
            overflow: hidden;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Contact Form */
        .contact-form {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
        }
        
        .form-input {
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
        }
        
        .form-input:focus {
            border-color: #a855f7;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
        }
        
        /* FAQ Accordion */
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.open {
            max-height: 200px;
        }
        
        /* Testimonial Slider */
        .testimonial-slider {
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 0 1rem;
        }
        
        /* Stats Counter */
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #a855f7;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #a855f7;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline::before {
                left: 1rem;
            }
            
            .timeline-item::before {
                left: 1rem;
            }
            
            .timeline-content {
                margin-left: 3rem;
            }
        }