body {
            box-sizing: border-box;
        }
        
        :root {
            --primary-blue: #0073e6;
            --secondary-blue: #005bb5;
            --light-grey: #f8f9fa;
            --dark-grey: #6c757d;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
            text-decoration: none;
        }
        
        /* Interactive Logo Styles */
        .logo-container {
            transition: all 0.3s ease;
        }
        
        .logo-container:hover {
            transform: scale(1.05);
        }
        
        .logo-svg {
            transition: all 0.3s ease;
        }
        
        .logo-circle {
            transition: all 0.3s ease;
        }
        
        .logo-container:hover .logo-circle {
            filter: drop-shadow(0 0 10px rgba(0, 115, 230, 0.5));
        }
        
        .gear-1 {
            transform-origin: 15px 15px;
            animation: rotateClockwise 4s linear infinite;
        }
        
        .gear-2 {
            transform-origin: 25px 25px;
            animation: rotateCounterClockwise 3s linear infinite;
        }
        
        .logo-container:hover .gear-1 {
            animation-duration: 1s;
        }
        
        .logo-container:hover .gear-2 {
            animation-duration: 0.8s;
        }
        
        .logo-text-main {
            transition: all 0.3s ease;
        }
        
        .logo-container:hover .logo-text-main {
            color: var(--secondary-blue) !important;
            text-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
        }
        
        @keyframes rotateClockwise {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes rotateCounterClockwise {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 100px 0;
        }
        
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .page-header {
            background-color: var(--light-grey);
            padding: 60px 0;
            margin-bottom: 50px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-container {
            height: 400px;
            background-color: var(--light-grey);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-grey);
        }
        
        footer {
            background-color: #343a40;
            color: white;
            padding: 40px 0 20px 0;
        }
        
        .hidden {
            display: none;
        }
        
        .alert {
            margin-top: 20px;
        }
        
        /* Floating animations */
        .hero-animation {
            position: relative;
            height: 300px;
        }
        
        .floating-icons {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .floating-icon {
            animation: float 3s ease-in-out infinite;
            color: rgba(255, 255, 255, 0.8);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Interactive service cards */
        .service-card {
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 115, 230, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        /* Blog card animations */
        .blog-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .blog-meta {
            font-size: 0.9rem;
            color: var(--dark-grey);
        }
        
        .blog-tag {
            background-color: var(--primary-blue);
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            text-decoration: none;
        }
        
        .blog-tag:hover {
            background-color: var(--secondary-blue);
            color: white;
        }
        
        /* Interactive buttons */
        .btn {
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        /* Pulse animation for CTA buttons */
        .pulse-btn {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 115, 230, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 115, 230, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 115, 230, 0); }
        }
        
        /* Icon hover effects */
        .icon-hover {
            transition: all 0.3s ease;
        }
        
        .icon-hover:hover {
            transform: scale(1.2) rotate(10deg);
            color: var(--primary-blue) !important;
        }

        /* Service page specific styles */
        .service-hero {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 80px 0;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .pricing-card {
            border: 2px solid #eee;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            border-color: var(--primary-blue);
            position: relative;
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-blue);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
        }